From cddaf8ab8a3c95cdbc4a4565459fa96aa3bedc27 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 17:20:44 -0800 Subject: [PATCH 01/11] chore: updated typescript (#195) --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c62da75..83ffe67 100644 --- a/package-lock.json +++ b/package-lock.json @@ -63,7 +63,7 @@ "next-mdx-remote": "^4.2.0", "prettier": "^2.8.3", "prettier-plugin-organize-imports": "^3.2.2", - "typescript": "^5.5.4" + "typescript": "^5.7.2" }, "engines": { "node": "20.10.0" @@ -16077,9 +16077,9 @@ } }, "node_modules/typescript": { - "version": "5.5.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", - "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz", + "integrity": "sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==", "dev": true, "bin": { "tsc": "bin/tsc", diff --git a/package.json b/package.json index 28ee298..545176b 100644 --- a/package.json +++ b/package.json @@ -69,7 +69,7 @@ "next-mdx-remote": "^4.2.0", "prettier": "^2.8.3", "prettier-plugin-organize-imports": "^3.2.2", - "typescript": "^5.5.4" + "typescript": "^5.7.2" }, "engines": { "node": "20.10.0" From 3e25b4dfd7b5bec78f71dd3e4470b6768c4d182d Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 17:50:48 -0800 Subject: [PATCH 02/11] chore: updated linting plugins (#195) --- .eslintrc.json | 3 +- app/utils/seedDatabase.ts | 2 +- package-lock.json | 249 ++++++++++++++++++++++---------------- package.json | 8 +- 4 files changed, 150 insertions(+), 112 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 375f919..2d35949 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -57,7 +57,8 @@ "jsdoc/require-returns-description": "error", "jsdoc/check-alignment": "error", "jsdoc/check-param-names": "error", - "react-hooks/exhaustive-deps": "error" + "react-hooks/exhaustive-deps": "error", + "@typescript-eslint/no-empty-object-type": "warn" }, "overrides": [ { diff --git a/app/utils/seedDatabase.ts b/app/utils/seedDatabase.ts index 29c739e..a2d7174 100644 --- a/app/utils/seedDatabase.ts +++ b/app/utils/seedDatabase.ts @@ -22,7 +22,7 @@ export const seedDatabase = async function seedDatabase( let jsonText; try { jsonText = await fsp.readFile(staticLoadFile, "utf8"); - } catch (e) { + } catch { throw new Error(`File ${staticLoadFile} not found for entity ${label}`); } diff --git a/package-lock.json b/package-lock.json index 83ffe67..4adde61 100644 --- a/package-lock.json +++ b/package-lock.json @@ -42,19 +42,19 @@ "@types/react-dom": "^18.3.0", "@types/react-table": "^7.7.12", "@types/uuid": "8.3.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^8.2.5", "csv-parse": "^5.5.6", "eslint": "^8.33.0", - "eslint-config-next": "^14.2.13", + "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^8.6.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^48.1.0", "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-sonarjs": "^0.18.0", "eslint-plugin-sort-destructure-keys": "^1.4.0", - "eslint-plugin-typescript-sort-keys": "^3.2.0", + "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", "husky": "^9.1.5", @@ -4355,36 +4355,32 @@ "dev": true }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz", - "integrity": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.18.0.tgz", + "integrity": "sha512-NR2yS7qUqCL7AIxdJUQf2MKKNDVNaig/dEB0GBLU7D+ZdHgK1NoH/3wsgO3OnPVipn51tG3MAwaODEGil70WEw==", "dev": true, "dependencies": { "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "7.18.0", - "@typescript-eslint/type-utils": "7.18.0", - "@typescript-eslint/utils": "7.18.0", - "@typescript-eslint/visitor-keys": "7.18.0", + "@typescript-eslint/scope-manager": "8.18.0", + "@typescript-eslint/type-utils": "8.18.0", + "@typescript-eslint/utils": "8.18.0", + "@typescript-eslint/visitor-keys": "8.18.0", "graphemer": "^1.4.0", "ignore": "^5.3.1", "natural-compare": "^1.4.0", "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^7.0.0", - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/experimental-utils": { @@ -4519,44 +4515,40 @@ } }, "node_modules/@typescript-eslint/parser": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.18.0.tgz", - "integrity": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.18.0.tgz", + "integrity": "sha512-hgUZ3kTEpVzKaK3uNibExUYm6SKKOmTU2BOxBSvOYwtJEPdVQ70kZJpPjstlnhCHcuc2WGfSbpKlb/69ttyN5Q==", "dev": true, "dependencies": { - "@typescript-eslint/scope-manager": "7.18.0", - "@typescript-eslint/types": "7.18.0", - "@typescript-eslint/typescript-estree": "7.18.0", - "@typescript-eslint/visitor-keys": "7.18.0", + "@typescript-eslint/scope-manager": "8.18.0", + "@typescript-eslint/types": "8.18.0", + "@typescript-eslint/typescript-estree": "8.18.0", + "@typescript-eslint/visitor-keys": "8.18.0", "debug": "^4.3.4" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz", - "integrity": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.18.0.tgz", + "integrity": "sha512-PNGcHop0jkK2WVYGotk/hxj+UFLhXtGPiGtiaWgVBVP1jhMoMCHlTyJA+hEj4rszoSdLTK3fN4oOatrL0Cp+Xw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.18.0", - "@typescript-eslint/visitor-keys": "7.18.0" + "@typescript-eslint/types": "8.18.0", + "@typescript-eslint/visitor-keys": "8.18.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", @@ -4564,39 +4556,35 @@ } }, "node_modules/@typescript-eslint/type-utils": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz", - "integrity": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.18.0.tgz", + "integrity": "sha512-er224jRepVAVLnMF2Q7MZJCq5CsdH2oqjP4dT7K6ij09Kyd+R21r7UVJrF0buMVdZS5QRhDzpvzAxHxabQadow==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.18.0", - "@typescript-eslint/utils": "7.18.0", + "@typescript-eslint/typescript-estree": "8.18.0", + "@typescript-eslint/utils": "8.18.0", "debug": "^4.3.4", "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/types": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz", - "integrity": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.18.0.tgz", + "integrity": "sha512-FNYxgyTCAnFwTrzpBGq+zrnoTO4x0c1CKYY5MuUTzpScqmY5fmsh2o3+57lqdI3NZucBDCzDgdEbIaNfAjAHQA==", "dev": true, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", @@ -4604,31 +4592,29 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz", - "integrity": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.0.tgz", + "integrity": "sha512-rqQgFRu6yPkauz+ms3nQpohwejS8bvgbPyIDq13cgEDbkXt4LH4OkDMT0/fN1RUtzG8e8AKJyDBoocuQh8qNeg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.18.0", - "@typescript-eslint/visitor-keys": "7.18.0", + "@typescript-eslint/types": "8.18.0", + "@typescript-eslint/visitor-keys": "8.18.0", "debug": "^4.3.4", - "globby": "^11.1.0", + "fast-glob": "^3.3.2", "is-glob": "^4.0.3", "minimatch": "^9.0.4", "semver": "^7.6.0", "ts-api-utils": "^1.3.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "peerDependencies": { + "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { @@ -4668,44 +4654,57 @@ } }, "node_modules/@typescript-eslint/utils": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz", - "integrity": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.18.0.tgz", + "integrity": "sha512-p6GLdY383i7h5b0Qrfbix3Vc3+J2k6QWw6UMUeY5JGfm3C5LbZ4QIZzJNoNOfgyRe0uuYKjvVOsO/jD4SJO+xg==", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "7.18.0", - "@typescript-eslint/types": "7.18.0", - "@typescript-eslint/typescript-estree": "7.18.0" + "@typescript-eslint/scope-manager": "8.18.0", + "@typescript-eslint/types": "8.18.0", + "@typescript-eslint/typescript-estree": "8.18.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "eslint": "^8.56.0" + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.8.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.18.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz", - "integrity": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==", + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.0.tgz", + "integrity": "sha512-pCh/qEA8Lb1wVIqNvBke8UaRjJ6wrAWkJO5yyIbs8Yx6TNGYyfNjOo61tLv+WwLvoLPp4BQ8B7AHKijl8NGUfw==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.18.0", - "eslint-visitor-keys": "^3.4.3" + "@typescript-eslint/types": "8.18.0", + "eslint-visitor-keys": "^4.2.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/typescript-eslint" } }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, "node_modules/@ungap/structured-clone": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", @@ -7005,24 +7004,24 @@ } }, "node_modules/eslint-config-next": { - "version": "14.2.13", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.13.tgz", - "integrity": "sha512-aro1EKAoyYchnO/3Tlo91hnNBO7QO7qnv/79MAFC+4Jq8TdUVKQlht5d2F+YjrePjdpOvfL+mV9JPfyYNwkk1g==", + "version": "15.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-15.0.4.tgz", + "integrity": "sha512-97mLaAhbJKVQYXUBBrenRtEUAA6bNDPxWfaFEd6mEhKfpajP4wJrW4l7BUlHuYWxR8oQa9W014qBJpumpJQwWA==", "dev": true, "dependencies": { - "@next/eslint-plugin-next": "14.2.13", - "@rushstack/eslint-patch": "^1.3.3", + "@next/eslint-plugin-next": "15.0.4", + "@rushstack/eslint-patch": "^1.10.3", "@typescript-eslint/eslint-plugin": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || ^7.0.0 || ^8.0.0", "eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-typescript": "^3.5.2", - "eslint-plugin-import": "^2.28.1", - "eslint-plugin-jsx-a11y": "^6.7.1", - "eslint-plugin-react": "^7.33.2", - "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" + "eslint-plugin-import": "^2.31.0", + "eslint-plugin-jsx-a11y": "^6.10.0", + "eslint-plugin-react": "^7.35.0", + "eslint-plugin-react-hooks": "^5.0.0" }, "peerDependencies": { - "eslint": "^7.23.0 || ^8.0.0", + "eslint": "^7.23.0 || ^8.0.0 || ^9.0.0", "typescript": ">=3.3.1" }, "peerDependenciesMeta": { @@ -7031,6 +7030,43 @@ } } }, + "node_modules/eslint-config-next/node_modules/@next/eslint-plugin-next": { + "version": "15.0.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.0.4.tgz", + "integrity": "sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==", + "dev": true, + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/eslint-config-next/node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/eslint-config-next/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/eslint-config-prettier": { "version": "8.10.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", @@ -7122,9 +7158,9 @@ "dev": true }, "node_modules/eslint-module-utils": { - "version": "2.11.1", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.11.1.tgz", - "integrity": "sha512-EwcbfLOhwVMAfatfqLecR2yv3dE5+kQ8kx+Rrt0DvDXEVwW86KQ/xbMDQhtp5l42VXukD5SOF8mQQHbaNtO0CQ==", + "version": "2.12.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", + "integrity": "sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==", "dev": true, "dependencies": { "debug": "^3.2.7" @@ -7176,9 +7212,9 @@ } }, "node_modules/eslint-plugin-import": { - "version": "2.30.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.30.0.tgz", - "integrity": "sha512-/mHNE9jINJfiD2EKkg1BKyPyUk4zdnT54YgbOgfjSakWT5oyX/qQLVNTkehyfpcMxZXMy1zyonZ2v7hZTX43Yw==", + "version": "2.31.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.31.0.tgz", + "integrity": "sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==", "dev": true, "dependencies": { "@rtsao/scc": "^1.1.0", @@ -7189,7 +7225,7 @@ "debug": "^3.2.7", "doctrine": "^2.1.0", "eslint-import-resolver-node": "^0.3.9", - "eslint-module-utils": "^2.9.0", + "eslint-module-utils": "^2.12.0", "hasown": "^2.0.2", "is-core-module": "^2.15.1", "is-glob": "^4.0.3", @@ -7198,13 +7234,14 @@ "object.groupby": "^1.0.3", "object.values": "^1.2.0", "semver": "^6.3.1", + "string.prototype.trimend": "^1.0.8", "tsconfig-paths": "^3.15.0" }, "engines": { "node": ">=4" }, "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9" } }, "node_modules/eslint-plugin-import/node_modules/debug": { @@ -7377,15 +7414,15 @@ } }, "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz", + "integrity": "sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==", "dev": true, "engines": { "node": ">=10" }, "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" } }, "node_modules/eslint-plugin-react/node_modules/doctrine": { @@ -7445,9 +7482,9 @@ } }, "node_modules/eslint-plugin-typescript-sort-keys": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-typescript-sort-keys/-/eslint-plugin-typescript-sort-keys-3.2.0.tgz", - "integrity": "sha512-GutszvriaVtwmn7pQjuj9/9o0iXhD7XZs0/424+zsozdRr/fdg5e8206t478Vnqnqi1GjuxcAolj1kf74KnhPA==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-typescript-sort-keys/-/eslint-plugin-typescript-sort-keys-3.3.0.tgz", + "integrity": "sha512-bRW3Rc/VNdrSP9OoY5wgjjaXCOOkZKpzvl/Mk6l8Sg8CMehVIcg9K4y33l+ZcZiknpl0aR6rKusxuCJNGZWmVw==", "dev": true, "dependencies": { "@typescript-eslint/experimental-utils": "^5.0.0", @@ -7458,7 +7495,7 @@ "node": ">= 16" }, "peerDependencies": { - "@typescript-eslint/parser": "^6 || ^7", + "@typescript-eslint/parser": ">=6", "eslint": "^7 || ^8", "typescript": "^3 || ^4 || ^5" } diff --git a/package.json b/package.json index 545176b..43a9ed6 100644 --- a/package.json +++ b/package.json @@ -48,19 +48,19 @@ "@types/react-dom": "^18.3.0", "@types/react-table": "^7.7.12", "@types/uuid": "8.3.4", - "@typescript-eslint/eslint-plugin": "^7.18.0", + "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^8.2.5", "csv-parse": "^5.5.6", "eslint": "^8.33.0", - "eslint-config-next": "^14.2.13", + "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^8.6.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^48.1.0", "eslint-plugin-prettier": "^4.2.1", - "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-sonarjs": "^0.18.0", "eslint-plugin-sort-destructure-keys": "^1.4.0", - "eslint-plugin-typescript-sort-keys": "^3.2.0", + "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", "husky": "^9.1.5", From 18e995167fa4bd2ca06df481204b8ddaefcb0867 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:01:51 -0800 Subject: [PATCH 03/11] chore: updated linters (#195) --- .eslintrc.json | 5 +- package-lock.json | 2429 ++++++++++++++++++++++++++++++++++++--------- package.json | 8 +- 3 files changed, 1976 insertions(+), 466 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 2d35949..bc39777 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -14,7 +14,7 @@ "prettier", "plugin:prettier/recommended", "next", - "plugin:sonarjs/recommended", + "plugin:sonarjs/recommended-legacy", "plugin:eslint-comments/recommended" ], "rules": { @@ -58,7 +58,8 @@ "jsdoc/check-alignment": "error", "jsdoc/check-param-names": "error", "react-hooks/exhaustive-deps": "error", - "@typescript-eslint/no-empty-object-type": "warn" + "@typescript-eslint/no-empty-object-type": "warn", + "sonarjs/redundant-type-aliases": "warn" }, "overrides": [ { diff --git a/package-lock.json b/package-lock.json index 4adde61..33822af 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,15 +45,15 @@ "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^8.2.5", "csv-parse": "^5.5.6", - "eslint": "^8.33.0", + "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^8.6.0", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^48.1.0", + "eslint-plugin-jsdoc": "^50.6.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react-hooks": "^5.1.0", - "eslint-plugin-sonarjs": "^0.18.0", - "eslint-plugin-sort-destructure-keys": "^1.4.0", + "eslint-plugin-sonarjs": "^3.0.1", + "eslint-plugin-sort-destructure-keys": "^2.0.0", "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", @@ -98,42 +98,43 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", - "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "dependencies": { - "@babel/highlight": "^7.23.4", - "chalk": "^2.4.2" + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", - "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", + "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.9.tgz", - "integrity": "sha512-5q0175NOjddqpvvzU+kDiSOAk4PfdO6FvwCWoQ6RO7rTzEe8vlo+4HVfcnAREhD4npMs0e9uZypjTwzZPCf/cw==", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", + "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.23.9", - "@babel/parser": "^7.23.9", - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9", + "@babel/code-frame": "^7.26.0", + "@babel/generator": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.0", + "@babel/parser": "^7.26.0", + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.26.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -148,30 +149,69 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/eslint-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.25.9.tgz", + "integrity": "sha512-5UXfgpK0j0Xr/xIdgdLEhOFxaDZ0bRPWJJchRpqOSur/3rZoPbqqki5mm0p4NE2cs28krBEiSM2MB7//afRSQQ==", + "dev": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, "node_modules/@babel/generator": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", - "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", + "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", + "dependencies": { + "@babel/parser": "^7.26.3", + "@babel/types": "^7.26.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "dependencies": { - "@babel/types": "^7.23.6", - "@jridgewell/gen-mapping": "^0.3.2", - "@jridgewell/trace-mapping": "^0.3.17", - "jsesc": "^2.5.1" + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", + "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -179,234 +219,1394 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", + "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", + "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", + "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", + "dev": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.9.tgz", + "integrity": "sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.25.9.tgz", + "integrity": "sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==", + "dev": true, + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", + "dev": true, + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", + "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", + "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", + "dependencies": { + "@babel/types": "^7.26.3" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.25.9.tgz", + "integrity": "sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-decorators": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.25.9.tgz", + "integrity": "sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-flow": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.26.0.tgz", + "integrity": "sha512-B+O2DnPc0iG+YXFqOxv2WNuNU97ToWjOomUQ78DouOENWUaM5sVrmet9mcomUGQFwpJd//gvUagXBSdzO1fRKg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", + "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.25.9.tgz", + "integrity": "sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", + "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.25.9.tgz", + "integrity": "sha512-/VVukELzPDdci7UUsWQaSkhgnjIWXnIyRpM02ldxaVoFK96c41So8JcKT3m0gYjyv7j5FNPGS5vfELrWalkbDA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-flow": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", + "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", + "dev": true, + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.25.9.tgz", + "integrity": "sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dev": true, "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-module-imports": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", - "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", + "dev": true, "dependencies": { - "@babel/types": "^7.22.15" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", - "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.22.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", - "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "dev": true, "dependencies": { - "@babel/types": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-string-parser": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", - "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", - "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" + }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.25.9" + }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/helpers": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.9.tgz", - "integrity": "sha512-87ICKgU5t5SzOT7sBMfCOZQ2rHjRU+Pcb9BoILMYz600W6DkVRLFBPwQ18gwUVvggqXivaUakpnxWQGbpywbBQ==", + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", "dev": true, "dependencies": { - "@babel/template": "^7.23.9", - "@babel/traverse": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/highlight": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", - "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", + "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", + "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0" + "@babel/helper-plugin-utils": "^7.25.9", + "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/parser": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", - "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", "dev": true, - "bin": { - "parser": "bin/babel-parser.js" + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=6.0.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", + "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", + "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -415,100 +1615,195 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "node_modules/@babel/preset-env": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", + "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.26.0", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.25.9", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.25.9", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.25.9", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.25.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.25.9", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.25.9", + "@babel/plugin-transform-typeof-symbol": "^7.25.9", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.6", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.38.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "node_modules/@babel/preset-flow": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.25.9.tgz", + "integrity": "sha512-EASHsAhE+SSlEzJ4bzfusnXSHiU+JfAYzj+jbw2vgQKgq5HrUr8qs+vgtiEL5dOH6sEweI+PNt2D7AqrDSHyqQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-flow-strip-types": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", - "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "node_modules/@babel/preset-react": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -529,33 +1824,28 @@ } }, "node_modules/@babel/template": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.23.9.tgz", - "integrity": "sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==", - "dev": true, + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", + "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9" + "@babel/code-frame": "^7.25.9", + "@babel/parser": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", - "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.9", - "@babel/types": "^7.23.9", + "version": "7.26.4", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", + "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.3", + "@babel/parser": "^7.26.3", + "@babel/template": "^7.25.9", + "@babel/types": "^7.26.3", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -564,13 +1854,12 @@ } }, "node_modules/@babel/types": { - "version": "7.23.9", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", - "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", + "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" }, "engines": { "node": ">=6.9.0" @@ -1555,14 +2844,14 @@ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==" }, "node_modules/@es-joy/jsdoccomment": { - "version": "0.42.0", - "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.42.0.tgz", - "integrity": "sha512-R1w57YlVA6+YE01wch3GPYn6bCsrOV3YW/5oGGE2tmX6JcL9Nr+b5IikrjMPF+v9CV3ay+obImEdsDhovhJrzw==", + "version": "0.49.0", + "resolved": "https://registry.npmjs.org/@es-joy/jsdoccomment/-/jsdoccomment-0.49.0.tgz", + "integrity": "sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==", "dev": true, "dependencies": { "comment-parser": "1.4.1", - "esquery": "^1.5.0", - "jsdoc-type-pratt-parser": "~4.0.0" + "esquery": "^1.6.0", + "jsdoc-type-pratt-parser": "~4.1.0" }, "engines": { "node": ">=16" @@ -1936,9 +3225,9 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", - "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -2035,21 +3324,22 @@ } }, "node_modules/@eslint/js": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", - "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", + "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.11.14", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", - "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", + "deprecated": "Use @eslint/config-array instead", "dev": true, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", + "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, @@ -2071,9 +3361,10 @@ } }, "node_modules/@humanwhocodes/object-schema": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", - "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, "node_modules/@isaacs/cliui": { @@ -2873,13 +4164,13 @@ } }, "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.4", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.4.tgz", - "integrity": "sha512-Oud2QPM5dHviZNn4y/WhhYKSXksv+1xLEIsNrAbGcFzUN3ubqWRFT5gwPchNc5NuzILOU4tPBDTZ4VwhL8Y7cw==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" @@ -2894,9 +4185,9 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "engines": { "node": ">=6.0.0" } @@ -2917,9 +4208,9 @@ "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.23", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.23.tgz", - "integrity": "sha512-9/4foRoUKp8s96tSkh8DlAAc5A0Ty8vLXld+l9gjKKY6ckwI8G15f0hskGmuLZu78ZlGa1vtsfOa+lnB4vG6Jg==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" @@ -3406,6 +4697,15 @@ "node": ">= 10" } }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -3460,6 +4760,18 @@ "node": ">=14" } }, + "node_modules/@pkgr/core": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", + "integrity": "sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, "node_modules/@playwright/test": { "version": "1.46.0", "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.46.0.tgz", @@ -4875,9 +6187,9 @@ "deprecated": "Use your platform's native atob() and btoa() methods instead" }, "node_modules/acorn": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", - "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", + "version": "8.14.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", + "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "bin": { "acorn": "bin/acorn" }, @@ -4982,30 +6294,6 @@ "node": ">=8" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ansi-styles/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/ansi-styles/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", @@ -5495,6 +6783,45 @@ "node": ">=10" } }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.12", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", + "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.3", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.6", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", + "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.2", + "core-js-compat": "^3.38.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", + "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", + "dev": true, + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/babel-preset-current-node-syntax": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", @@ -5593,9 +6920,9 @@ } }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", "funding": [ { "type": "opencollective", @@ -5611,10 +6938,10 @@ } ], "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" @@ -5660,6 +6987,15 @@ "node": ">=10.16.0" } }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/call-bind": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", @@ -5697,9 +7033,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001589", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001589.tgz", - "integrity": "sha512-vNQWS6kI+q6sBlHbh71IIeC+sRwK2N3EDySc/updIGhIee2x5z00J4c1242/5/d6EpEMdOnk/m+6tuk4/tcsqg==", + "version": "1.0.30001687", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001687.tgz", + "integrity": "sha512-0S/FDhf4ZiqrTUiQ39dKeUjYRjkv7lOZU1Dgif2rIqrTzX/1wV2hfKu9TOm1IHkdSijfLswxTFzl/cvir+SLSQ==", "funding": [ { "type": "opencollective", @@ -5718,31 +7054,10 @@ "node_modules/ccount": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz", - "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chalk/node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" } }, "node_modules/char-regex": { @@ -6085,6 +7400,19 @@ "toggle-selection": "^1.0.6" } }, + "node_modules/core-js-compat": { + "version": "3.39.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.39.0.tgz", + "integrity": "sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==", + "dev": true, + "dependencies": { + "browserslist": "^4.24.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, "node_modules/cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", @@ -6362,11 +7690,11 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -6608,9 +7936,9 @@ "dev": true }, "node_modules/electron-to-chromium": { - "version": "1.4.682", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.682.tgz", - "integrity": "sha512-oCglfs8yYKs9RQjJFOHonSnhikPK3y+0SvSYc/YpYJV//6rqc0/hbwd0c7vgK4vrl6y2gJAwjkhkSGWK+z4KRA==" + "version": "1.5.72", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz", + "integrity": "sha512-ZpSAUOZ2Izby7qnZluSrAlGgGQzucmFbN0n64dYzocYxnxV5ufurpj3VgEe4cUp7ir9LmeLxNYo8bVnlM8bQHw==" }, "node_modules/emittery": { "version": "0.13.1", @@ -6806,10 +8134,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.4.1.tgz", - "integrity": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==", - "peer": true + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", + "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==" }, "node_modules/es-object-atoms": { "version": "1.0.0", @@ -6901,9 +8228,9 @@ } }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "engines": { "node": ">=6" } @@ -6949,16 +8276,17 @@ } }, "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "version": "8.57.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", + "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", + "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", + "@eslint/js": "8.57.1", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", @@ -7134,29 +8462,6 @@ } } }, - "node_modules/eslint-import-resolver-typescript/node_modules/debug": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", - "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/eslint-import-resolver-typescript/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true - }, "node_modules/eslint-module-utils": { "version": "2.12.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.0.tgz", @@ -7266,20 +8571,22 @@ } }, "node_modules/eslint-plugin-jsdoc": { - "version": "48.2.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-48.2.0.tgz", - "integrity": "sha512-O2B1XLBJnUCRkggFzUQ+PBYJDit8iAgXdlu8ucolqGrbmOWPvttZQZX8d1sC0MbqDMSLs8SHSQxaNPRY1RQREg==", + "version": "50.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-50.6.0.tgz", + "integrity": "sha512-tCNp4fR79Le3dYTPB0dKEv7yFyvGkUCa+Z3yuTrrNGGOxBlXo9Pn0PEgroOZikUQOGjxoGMVKNjrOHcYEdfszg==", "dev": true, "dependencies": { - "@es-joy/jsdoccomment": "~0.42.0", + "@es-joy/jsdoccomment": "~0.49.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", - "debug": "^4.3.4", + "debug": "^4.3.6", "escape-string-regexp": "^4.0.0", - "esquery": "^1.5.0", - "is-builtin-module": "^3.2.1", - "semver": "^7.6.0", - "spdx-expression-parse": "^4.0.0" + "espree": "^10.1.0", + "esquery": "^1.6.0", + "parse-imports": "^2.1.1", + "semver": "^7.6.3", + "spdx-expression-parse": "^4.0.0", + "synckit": "^0.9.1" }, "engines": { "node": ">=18" @@ -7288,26 +8595,40 @@ "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/eslint-plugin-jsdoc/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-plugin-jsdoc/node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" }, "engines": { - "node": ">=10" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-plugin-jsdoc/node_modules/semver": { - "version": "7.6.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", - "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -7315,12 +8636,6 @@ "node": ">=10" } }, - "node_modules/eslint-plugin-jsdoc/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/eslint-plugin-jsx-a11y": { "version": "6.10.0", "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.0.tgz", @@ -7455,30 +8770,80 @@ } }, "node_modules/eslint-plugin-sonarjs": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-0.18.0.tgz", - "integrity": "sha512-DJ3osLnt6KFdT5e9ZuIDOjT5A6wUGSLeiJJT03lPgpdD+7CVWlYAw9Goe3bt7SmbFO3Xh89NOCZAuB9XA7bAUQ==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-sonarjs/-/eslint-plugin-sonarjs-3.0.1.tgz", + "integrity": "sha512-RT6VgdPqizbMLmTryIc3fB169hRjvDFlqieSZEEswGtApPb4Dn9BndmN9qyfBV/By0hbseIX8zQWKBz5E7lyiQ==", + "dev": true, + "dependencies": { + "@babel/core": "7.26.0", + "@babel/eslint-parser": "7.25.9", + "@babel/plugin-proposal-decorators": "7.25.9", + "@babel/preset-env": "7.26.0", + "@babel/preset-flow": "7.25.9", + "@babel/preset-react": "7.26.3", + "@eslint-community/regexpp": "4.12.1", + "builtin-modules": "3.3.0", + "bytes": "3.1.2", + "functional-red-black-tree": "1.0.1", + "jsx-ast-utils": "3.3.5", + "minimatch": "9.0.5", + "scslre": "0.3.0", + "semver": "7.6.3", + "typescript": "^5" + }, + "peerDependencies": { + "eslint": "^8.0.0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-sonarjs/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/eslint-plugin-sonarjs/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=14" + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/eslint-plugin-sonarjs/node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" } }, "node_modules/eslint-plugin-sort-destructure-keys": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-sort-destructure-keys/-/eslint-plugin-sort-destructure-keys-1.5.0.tgz", - "integrity": "sha512-xGLyqHtbFXZNXQSvAiQ4ISBYokrbUywEhmaA50fKtSKgceCv5y3zjoNuZwcnajdM6q29Nxj+oXC9KcqfMsAPrg==", + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-sort-destructure-keys/-/eslint-plugin-sort-destructure-keys-2.0.0.tgz", + "integrity": "sha512-4w1UQCa3o/YdfWaLr9jY8LfGowwjwjmwClyFLxIsToiyIdZMq3x9Ti44nDn34DtTPP7PWg96tUONKVmATKhYGQ==", "dev": true, "dependencies": { "natural-compare-lite": "^1.4.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=12" }, "peerDependencies": { - "eslint": "3 - 8" + "eslint": "5 - 9" } }, "node_modules/eslint-plugin-typescript-sort-keys": { @@ -7697,9 +9062,9 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" @@ -8233,6 +9598,12 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -8429,7 +9800,6 @@ "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, "engines": { "node": ">=4" } @@ -8517,14 +9887,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, "node_modules/has-property-descriptors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", @@ -9068,21 +10430,6 @@ "node": ">=4" } }, - "node_modules/is-builtin-module": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", - "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", - "dev": true, - "dependencies": { - "builtin-modules": "^3.3.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/is-bun-module": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/is-bun-module/-/is-bun-module-1.2.1.tgz", @@ -11378,9 +12725,9 @@ } }, "node_modules/jsdoc-type-pratt-parser": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.0.0.tgz", - "integrity": "sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jsdoc-type-pratt-parser/-/jsdoc-type-pratt-parser-4.1.0.tgz", + "integrity": "sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==", "dev": true, "engines": { "node": ">=12.0.0" @@ -11431,15 +12778,14 @@ } }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-buffer": { @@ -11642,6 +12988,12 @@ "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "dev": true }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", @@ -12622,9 +13974,9 @@ } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" }, "node_modules/nanoid": { "version": "3.3.7", @@ -13925,9 +15277,9 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" }, "node_modules/normalize-path": { "version": "3.0.0", @@ -14196,6 +15548,19 @@ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==" }, + "node_modules/parse-imports": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/parse-imports/-/parse-imports-2.2.1.tgz", + "integrity": "sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==", + "dev": true, + "dependencies": { + "es-module-lexer": "^1.5.3", + "slashes": "^3.0.12" + }, + "engines": { + "node": ">= 18" + } + }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", @@ -14300,9 +15665,9 @@ } }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" }, "node_modules/picomatch": { "version": "2.3.1", @@ -14698,6 +16063,18 @@ "node": ">=8" } }, + "node_modules/refa": { + "version": "0.12.1", + "resolved": "https://registry.npmjs.org/refa/-/refa-0.12.1.tgz", + "integrity": "sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.8.0" + }, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, "node_modules/reflect.getprototypeof": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz", @@ -14719,11 +16096,51 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, "node_modules/regenerator-runtime": { "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexp-ast-analysis": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/regexp-ast-analysis/-/regexp-ast-analysis-0.7.1.tgz", + "integrity": "sha512-sZuz1dYW/ZsfG17WSAG7eS85r5a0dDsvg+7BiiYR5o6lKCAtUrEwdmRmaGF6rwVj3LcmAeYkOWKEPlbPzN3Y3A==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.8.0", + "refa": "^0.12.1" + }, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, "node_modules/regexp.prototype.flags": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", @@ -14742,6 +16159,41 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", + "dev": true, + "dependencies": { + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", + "dev": true + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "dev": true, + "dependencies": { + "jsesc": "~3.0.2" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, "node_modules/remark-mdx": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.0.1.tgz", @@ -15072,6 +16524,20 @@ "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "peer": true }, + "node_modules/scslre": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/scslre/-/scslre-0.3.0.tgz", + "integrity": "sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.8.0", + "refa": "^0.12.0", + "regexp-ast-analysis": "^0.7.0" + }, + "engines": { + "node": "^14.0.0 || >=16.0.0" + } + }, "node_modules/section-matter": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", @@ -15195,6 +16661,12 @@ "node": ">=8" } }, + "node_modules/slashes": { + "version": "3.0.12", + "resolved": "https://registry.npmjs.org/slashes/-/slashes-3.0.12.tgz", + "integrity": "sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==", + "dev": true + }, "node_modules/source-map": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", @@ -15602,17 +17074,6 @@ "resolved": "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz", "integrity": "sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==" }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", @@ -15629,6 +17090,22 @@ "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" }, + "node_modules/synckit": { + "version": "0.9.2", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.9.2.tgz", + "integrity": "sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==", + "dev": true, + "dependencies": { + "@pkgr/core": "^0.1.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts" + } + }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", @@ -15816,14 +17293,6 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", @@ -16146,6 +17615,46 @@ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "engines": { + "node": ">=4" + } + }, "node_modules/unicorn-magic": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", @@ -16319,9 +17828,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "funding": [ { "type": "opencollective", @@ -16337,8 +17846,8 @@ } ], "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" diff --git a/package.json b/package.json index 43a9ed6..91a1303 100644 --- a/package.json +++ b/package.json @@ -51,15 +51,15 @@ "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^8.2.5", "csv-parse": "^5.5.6", - "eslint": "^8.33.0", + "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^8.6.0", "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-jsdoc": "^48.1.0", + "eslint-plugin-jsdoc": "^50.6.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react-hooks": "^5.1.0", - "eslint-plugin-sonarjs": "^0.18.0", - "eslint-plugin-sort-destructure-keys": "^1.4.0", + "eslint-plugin-sonarjs": "^3.0.1", + "eslint-plugin-sort-destructure-keys": "^2.0.0", "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", From c3e7d7f72631ce5689e190b75218302152fc90a2 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:07:08 -0800 Subject: [PATCH 04/11] chore: updated prettier (#195) --- .prettierrc.json | 4 +- .../Carousel/components/Arrow/arrow.styles.ts | 4 +- .../Carousel/components/Cards/cards.styles.ts | 4 +- package-lock.json | 63 ++++++++++--------- package.json | 8 +-- pages/data/[entityListType]/[...params].tsx | 5 +- 6 files changed, 49 insertions(+), 39 deletions(-) diff --git a/.prettierrc.json b/.prettierrc.json index 0967ef4..757fd64 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1 +1,3 @@ -{} +{ + "trailingComma": "es5" +} diff --git a/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Arrow/arrow.styles.ts b/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Arrow/arrow.styles.ts index 54cb7a6..aae683d 100644 --- a/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Arrow/arrow.styles.ts +++ b/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Arrow/arrow.styles.ts @@ -26,7 +26,9 @@ export const IconButton = styled(MIconButton, { & { background-color: ${white}; border-radius: 50%; - box-shadow: inset 0 0 0 1px ${smokeDark}, 0 1px 0 0 ${black08}; + box-shadow: + inset 0 0 0 1px ${smokeDark}, + 0 1px 0 0 ${black08}; color: ${inkMain}; position: absolute; top: 50%; diff --git a/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles.ts b/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles.ts index 8175a27..aae027d 100644 --- a/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles.ts +++ b/app/components/Home/components/Section/components/SectionHero/components/Carousel/components/Cards/cards.styles.ts @@ -47,7 +47,9 @@ export const CardPositioner = styled("div")` export const Card = styled(MCard)` border: none; - box-shadow: ${elevation01}, inset 0 0 0 1px ${smokeMain}; + box-shadow: + ${elevation01}, + inset 0 0 0 1px ${smokeMain}; display: flex; height: 100%; width: 100%; diff --git a/package-lock.json b/package-lock.json index 33822af..02354d0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -47,10 +47,10 @@ "csv-parse": "^5.5.6", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", - "eslint-config-prettier": "^8.6.0", + "eslint-config-prettier": "^9.1.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^50.6.0", - "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-sonarjs": "^3.0.1", "eslint-plugin-sort-destructure-keys": "^2.0.0", @@ -61,8 +61,8 @@ "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", "next-mdx-remote": "^4.2.0", - "prettier": "^2.8.3", - "prettier-plugin-organize-imports": "^3.2.2", + "prettier": "^3.4.2", + "prettier-plugin-organize-imports": "^4.1.0", "typescript": "^5.7.2" }, "engines": { @@ -8396,9 +8396,9 @@ } }, "node_modules/eslint-config-prettier": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.10.0.tgz", - "integrity": "sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==", + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", + "integrity": "sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==", "dev": true, "bin": { "eslint-config-prettier": "bin/cli.js" @@ -8676,21 +8676,30 @@ } }, "node_modules/eslint-plugin-prettier": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz", - "integrity": "sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.1.tgz", + "integrity": "sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==", "dev": true, "dependencies": { - "prettier-linter-helpers": "^1.0.0" + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.9.1" }, "engines": { - "node": ">=12.0.0" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" }, "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": "*", + "prettier": ">=3.0.0" }, "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, "eslint-config-prettier": { "optional": true } @@ -15753,15 +15762,15 @@ } }, "node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.4.2.tgz", + "integrity": "sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==", "dev": true, "bin": { - "prettier": "bin-prettier.js" + "prettier": "bin/prettier.cjs" }, "engines": { - "node": ">=10.13.0" + "node": ">=14" }, "funding": { "url": "https://github.com/prettier/prettier?sponsor=1" @@ -15780,21 +15789,17 @@ } }, "node_modules/prettier-plugin-organize-imports": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-3.2.4.tgz", - "integrity": "sha512-6m8WBhIp0dfwu0SkgfOxJqh+HpdyfqSSLfKKRZSFbDuEQXDDndb8fTpRWkUrX/uBenkex3MgnVk0J3b3Y5byog==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-4.1.0.tgz", + "integrity": "sha512-5aWRdCgv645xaa58X8lOxzZoiHAldAPChljr/MT0crXVOWTZ+Svl4hIWlz+niYSlO6ikE5UXkN1JrRvIP2ut0A==", "dev": true, "peerDependencies": { - "@volar/vue-language-plugin-pug": "^1.0.4", - "@volar/vue-typescript": "^1.0.4", "prettier": ">=2.0", - "typescript": ">=2.9" + "typescript": ">=2.9", + "vue-tsc": "^2.1.0" }, "peerDependenciesMeta": { - "@volar/vue-language-plugin-pug": { - "optional": true - }, - "@volar/vue-typescript": { + "vue-tsc": { "optional": true } } diff --git a/package.json b/package.json index 91a1303..6670ba8 100644 --- a/package.json +++ b/package.json @@ -53,10 +53,10 @@ "csv-parse": "^5.5.6", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", - "eslint-config-prettier": "^8.6.0", + "eslint-config-prettier": "^9.1.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-jsdoc": "^50.6.0", - "eslint-plugin-prettier": "^4.2.1", + "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-sonarjs": "^3.0.1", "eslint-plugin-sort-destructure-keys": "^2.0.0", @@ -67,8 +67,8 @@ "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", "next-mdx-remote": "^4.2.0", - "prettier": "^2.8.3", - "prettier-plugin-organize-imports": "^3.2.2", + "prettier": "^3.4.2", + "prettier-plugin-organize-imports": "^4.1.0", "typescript": "^5.7.2" }, "engines": { diff --git a/pages/data/[entityListType]/[...params].tsx b/pages/data/[entityListType]/[...params].tsx index ee844d5..a1e6d23 100644 --- a/pages/data/[entityListType]/[...params].tsx +++ b/pages/data/[entityListType]/[...params].tsx @@ -61,9 +61,8 @@ export const getStaticPaths: GetStaticPaths = async () => { // Client-side fetch, client-side filtering. if (exploreMode === EXPLORE_MODE.CS_FETCH_CS_FILTERING) { await seedDatabase(entityListType, entityConfig); - const entitiesResponse: EntitiesResponse = await getEntities( - entityConfig - ); + const entitiesResponse: EntitiesResponse = + await getEntities(entityConfig); processEntityPaths(entityConfig, entitiesResponse, paths); } } From a8b4c8b26745f5a9bef500db34e42d3f9c5e12b0 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:16:16 -0800 Subject: [PATCH 05/11] chore: updated commitlint (#195) --- package-lock.json | 643 ++++++++-------------------------------------- package.json | 4 +- 2 files changed, 113 insertions(+), 534 deletions(-) diff --git a/package-lock.json b/package-lock.json index 02354d0..12fdaeb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -29,8 +29,8 @@ }, "devDependencies": { "@babel/core": "^7.17.10", - "@commitlint/cli": "^19.4.1", - "@commitlint/config-conventional": "^19.4.1", + "@commitlint/cli": "^19.6.0", + "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", "@next/eslint-plugin-next": "^14.1.0", "@playwright/test": "^1.37.1", @@ -1872,17 +1872,17 @@ "dev": true }, "node_modules/@commitlint/cli": { - "version": "19.4.1", - "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.4.1.tgz", - "integrity": "sha512-EerFVII3ZcnhXsDT9VePyIdCJoh3jEzygN1L37MjQXgPfGS6fJTWL/KHClVMod1d8w94lFC3l4Vh/y5ysVAz2A==", + "version": "19.6.0", + "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-19.6.0.tgz", + "integrity": "sha512-v17BgGD9w5KnthaKxXnEg6KLq6DYiAxyiN44TpiRtqyW8NSq+Kx99mkEG8Qo6uu6cI5eMzMojW2muJxjmPnF8w==", "dev": true, "dependencies": { - "@commitlint/format": "^19.3.0", - "@commitlint/lint": "^19.4.1", - "@commitlint/load": "^19.4.0", - "@commitlint/read": "^19.4.0", - "@commitlint/types": "^19.0.3", - "execa": "^8.0.1", + "@commitlint/format": "^19.5.0", + "@commitlint/lint": "^19.6.0", + "@commitlint/load": "^19.5.0", + "@commitlint/read": "^19.5.0", + "@commitlint/types": "^19.5.0", + "tinyexec": "^0.3.0", "yargs": "^17.0.0" }, "bin": { @@ -1892,147 +1892,13 @@ "node": ">=v18" } }, - "node_modules/@commitlint/cli/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@commitlint/cli/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/@commitlint/cli/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/cli/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@commitlint/cli/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@commitlint/config-conventional": { - "version": "19.4.1", - "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.4.1.tgz", - "integrity": "sha512-D5S5T7ilI5roybWGc8X35OBlRXLAwuTseH1ro0XgqkOWrhZU8yOwBOslrNmSDlTXhXLq8cnfhQyC42qaUCzlXA==", + "version": "19.6.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-19.6.0.tgz", + "integrity": "sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "conventional-changelog-conventionalcommits": "^7.0.2" }, "engines": { @@ -2040,12 +1906,12 @@ } }, "node_modules/@commitlint/config-validator": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.0.3.tgz", - "integrity": "sha512-2D3r4PKjoo59zBc2auodrSCaUnCSALCx54yveOFwwP/i2kfEAQrygwOleFWswLqK0UL/F9r07MFi5ev2ohyM4Q==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.5.0.tgz", + "integrity": "sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "ajv": "^8.11.0" }, "engines": { @@ -2053,12 +1919,12 @@ } }, "node_modules/@commitlint/ensure": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.0.3.tgz", - "integrity": "sha512-SZEpa/VvBLoT+EFZVb91YWbmaZ/9rPH3ESrINOl0HD2kMYsjvl0tF7nMHh0EpTcv4+gTtZBAe1y/SS6/OhfZzQ==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-19.5.0.tgz", + "integrity": "sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "lodash.camelcase": "^4.3.0", "lodash.kebabcase": "^4.1.1", "lodash.snakecase": "^4.1.1", @@ -2070,46 +1936,34 @@ } }, "node_modules/@commitlint/execute-rule": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.0.0.tgz", - "integrity": "sha512-mtsdpY1qyWgAO/iOK0L6gSGeR7GFcdW7tIjcNFxcWkfLDF5qVbPHKuGATFqRMsxcO8OUKNj0+3WOHB7EHm4Jdw==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.5.0.tgz", + "integrity": "sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/format": { - "version": "19.3.0", - "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.3.0.tgz", - "integrity": "sha512-luguk5/aF68HiF4H23ACAfk8qS8AHxl4LLN5oxPc24H+2+JRPsNr1OS3Gaea0CrH7PKhArBMKBz5RX9sA5NtTg==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-19.5.0.tgz", + "integrity": "sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "chalk": "^5.3.0" }, "engines": { "node": ">=v18" } }, - "node_modules/@commitlint/format/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/@commitlint/is-ignored": { - "version": "19.2.2", - "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.2.2.tgz", - "integrity": "sha512-eNX54oXMVxncORywF4ZPFtJoBm3Tvp111tg1xf4zWXGfhBPKpfKG6R+G3G4v5CPlRROXpAOpQ3HMhA9n1Tck1g==", + "version": "19.6.0", + "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-19.6.0.tgz", + "integrity": "sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "semver": "^7.6.0" }, "engines": { @@ -2129,30 +1983,30 @@ } }, "node_modules/@commitlint/lint": { - "version": "19.4.1", - "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.4.1.tgz", - "integrity": "sha512-Ws4YVAZ0jACTv6VThumITC1I5AG0UyXMGua3qcf55JmXIXm/ejfaVKykrqx7RyZOACKVAs8uDRIsEsi87JZ3+Q==", + "version": "19.6.0", + "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-19.6.0.tgz", + "integrity": "sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==", "dev": true, "dependencies": { - "@commitlint/is-ignored": "^19.2.2", - "@commitlint/parse": "^19.0.3", - "@commitlint/rules": "^19.4.1", - "@commitlint/types": "^19.0.3" + "@commitlint/is-ignored": "^19.6.0", + "@commitlint/parse": "^19.5.0", + "@commitlint/rules": "^19.6.0", + "@commitlint/types": "^19.5.0" }, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/load": { - "version": "19.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.4.0.tgz", - "integrity": "sha512-I4lCWaEZYQJ1y+Y+gdvbGAx9pYPavqZAZ3/7/8BpWh+QjscAn8AjsUpLV2PycBsEx7gupq5gM4BViV9xwTIJuw==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.5.0.tgz", + "integrity": "sha512-INOUhkL/qaKqwcTUvCE8iIUf5XHsEPCLY9looJ/ipzi7jtGhgmtH7OOFiNvwYgH7mA8osUWOUDV8t4E2HAi4xA==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^19.0.3", - "@commitlint/execute-rule": "^19.0.0", - "@commitlint/resolve-extends": "^19.1.0", - "@commitlint/types": "^19.0.3", + "@commitlint/config-validator": "^19.5.0", + "@commitlint/execute-rule": "^19.5.0", + "@commitlint/resolve-extends": "^19.5.0", + "@commitlint/types": "^19.5.0", "chalk": "^5.3.0", "cosmiconfig": "^9.0.0", "cosmiconfig-typescript-loader": "^5.0.0", @@ -2164,34 +2018,22 @@ "node": ">=v18" } }, - "node_modules/@commitlint/load/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/@commitlint/message": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.0.0.tgz", - "integrity": "sha512-c9czf6lU+9oF9gVVa2lmKaOARJvt4soRsVmbR7Njwp9FpbBgste5i7l/2l5o8MmbwGh4yE1snfnsy2qyA2r/Fw==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-19.5.0.tgz", + "integrity": "sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/parse": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.0.3.tgz", - "integrity": "sha512-Il+tNyOb8VDxN3P6XoBBwWJtKKGzHlitEuXA5BP6ir/3loWlsSqDr5aecl6hZcC/spjq4pHqNh0qPlfeWu38QA==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-19.5.0.tgz", + "integrity": "sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==", "dev": true, "dependencies": { - "@commitlint/types": "^19.0.3", + "@commitlint/types": "^19.5.0", "conventional-changelog-angular": "^7.0.0", "conventional-commits-parser": "^5.0.0" }, @@ -2200,163 +2042,29 @@ } }, "node_modules/@commitlint/read": { - "version": "19.4.0", - "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.4.0.tgz", - "integrity": "sha512-r95jLOEZzKDakXtnQub+zR3xjdnrl2XzerPwm7ch1/cc5JGq04tyaNpa6ty0CRCWdVrk4CZHhqHozb8yZwy2+g==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-19.5.0.tgz", + "integrity": "sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==", "dev": true, "dependencies": { - "@commitlint/top-level": "^19.0.0", - "@commitlint/types": "^19.0.3", - "execa": "^8.0.1", + "@commitlint/top-level": "^19.5.0", + "@commitlint/types": "^19.5.0", "git-raw-commits": "^4.0.0", - "minimist": "^1.2.8" + "minimist": "^1.2.8", + "tinyexec": "^0.3.0" }, "engines": { "node": ">=v18" } }, - "node_modules/@commitlint/read/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@commitlint/read/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/@commitlint/read/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/read/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@commitlint/read/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@commitlint/resolve-extends": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.1.0.tgz", - "integrity": "sha512-z2riI+8G3CET5CPgXJPlzftH+RiWYLMYv4C9tSLdLXdr6pBNimSKukYP9MS27ejmscqCTVA4almdLh0ODD2KYg==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.5.0.tgz", + "integrity": "sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==", "dev": true, "dependencies": { - "@commitlint/config-validator": "^19.0.3", - "@commitlint/types": "^19.0.3", + "@commitlint/config-validator": "^19.5.0", + "@commitlint/types": "^19.5.0", "global-directory": "^4.0.1", "import-meta-resolve": "^4.0.0", "lodash.mergewith": "^4.6.2", @@ -2367,168 +2075,33 @@ } }, "node_modules/@commitlint/rules": { - "version": "19.4.1", - "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.4.1.tgz", - "integrity": "sha512-AgctfzAONoVxmxOXRyxXIq7xEPrd7lK/60h2egp9bgGUMZK9v0+YqLOA+TH+KqCa63ZoCr8owP2YxoSSu7IgnQ==", + "version": "19.6.0", + "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-19.6.0.tgz", + "integrity": "sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==", "dev": true, "dependencies": { - "@commitlint/ensure": "^19.0.3", - "@commitlint/message": "^19.0.0", - "@commitlint/to-lines": "^19.0.0", - "@commitlint/types": "^19.0.3", - "execa": "^8.0.1" + "@commitlint/ensure": "^19.5.0", + "@commitlint/message": "^19.5.0", + "@commitlint/to-lines": "^19.5.0", + "@commitlint/types": "^19.5.0" }, "engines": { "node": ">=v18" } }, - "node_modules/@commitlint/rules/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@commitlint/rules/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/@commitlint/rules/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@commitlint/rules/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@commitlint/rules/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/@commitlint/to-lines": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.0.0.tgz", - "integrity": "sha512-vkxWo+VQU5wFhiP9Ub9Sre0FYe019JxFikrALVoD5UGa8/t3yOJEpEhxC5xKiENKKhUkTpEItMTRAjHw2SCpZw==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-19.5.0.tgz", + "integrity": "sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==", "dev": true, "engines": { "node": ">=v18" } }, "node_modules/@commitlint/top-level": { - "version": "19.0.0", - "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.0.0.tgz", - "integrity": "sha512-KKjShd6u1aMGNkCkaX4aG1jOGdn7f8ZI8TR1VEuNqUOjWTOdcDSsmglinglJ18JTjuBX5I1PtjrhQCRcixRVFQ==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-19.5.0.tgz", + "integrity": "sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==", "dev": true, "dependencies": { "find-up": "^7.0.0" @@ -2621,9 +2194,9 @@ } }, "node_modules/@commitlint/types": { - "version": "19.0.3", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.0.3.tgz", - "integrity": "sha512-tpyc+7i6bPG9mvaBbtKUeghfyZSDgWquIDfMgqYtTbmZ9Y9VzEm2je9EYcQ0aoz5o7NvGS+rcDec93yO08MHYA==", + "version": "19.5.0", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.5.0.tgz", + "integrity": "sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==", "dev": true, "dependencies": { "@types/conventional-commits-parser": "^5.0.0", @@ -2633,18 +2206,6 @@ "node": ">=v18" } }, - "node_modules/@commitlint/types/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", - "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", @@ -5393,9 +4954,9 @@ } }, "node_modules/@types/conventional-commits-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.0.tgz", - "integrity": "sha512-loB369iXNmAZglwWATL+WRe+CRMmmBPtpolYzIebFaX4YA3x+BEfLqhUAV9WanycKI3TG1IMr5bMJDajDKLlUQ==", + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz", + "integrity": "sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==", "dev": true, "dependencies": { "@types/node": "*" @@ -7060,6 +6621,18 @@ "url": "https://github.com/sponsors/wooorm" } }, + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -7440,12 +7013,12 @@ } }, "node_modules/cosmiconfig-typescript-loader": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.0.0.tgz", - "integrity": "sha512-+8cK7jRAReYkMwMiG+bxhcNKiHJDM6bR9FD/nGBXOWdMLuYawjF5cGrtLilJ+LGd3ZjCXnJjR5DkfWPoIVlqJA==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-5.1.0.tgz", + "integrity": "sha512-7PtBB+6FdsOvZyJtlF3hEPpACq7RQX6BVGsgC7/lfVXnKMvNCu/XY3ykreqG5w/rBNdu2z8LCIKoF3kpHHdHlA==", "dev": true, "dependencies": { - "jiti": "^1.19.1" + "jiti": "^1.21.6" }, "engines": { "node": ">=v16" @@ -9330,9 +8903,9 @@ "dev": true }, "node_modules/fast-uri": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.1.tgz", - "integrity": "sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.3.tgz", + "integrity": "sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==", "dev": true }, "node_modules/fastq": { @@ -17292,6 +16865,12 @@ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true }, + "node_modules/tinyexec": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/tinyexec/-/tinyexec-0.3.1.tgz", + "integrity": "sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==", + "dev": true + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", diff --git a/package.json b/package.json index 6670ba8..4762edb 100644 --- a/package.json +++ b/package.json @@ -35,8 +35,8 @@ }, "devDependencies": { "@babel/core": "^7.17.10", - "@commitlint/cli": "^19.4.1", - "@commitlint/config-conventional": "^19.4.1", + "@commitlint/cli": "^19.6.0", + "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", "@next/eslint-plugin-next": "^14.1.0", "@playwright/test": "^1.37.1", From 353705bcb450d1bd83bc7a3b50f0adad65a7ccf5 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:25:59 -0800 Subject: [PATCH 06/11] chore: updated eslint-plugin-next (#195) --- package-lock.json | 448 ++++------------------------------------------ package.json | 2 +- 2 files changed, 34 insertions(+), 416 deletions(-) diff --git a/package-lock.json b/package-lock.json index 12fdaeb..a5a87dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "@commitlint/cli": "^19.6.0", "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", - "@next/eslint-plugin-next": "^14.1.0", + "@next/eslint-plugin-next": "^15.0.4", "@playwright/test": "^1.37.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^16.0.1", @@ -2928,50 +2928,6 @@ "deprecated": "Use @eslint/object-schema instead", "dev": true }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -4087,12 +4043,40 @@ "integrity": "sha512-s3lh6K8cbW1h5Nga7NNeXrbe0+2jIIYK9YaA9T7IufDWnZpozdFUp6Hf0d5rNWUKu4fEuSX2rCKlGjCrtylfDw==" }, "node_modules/@next/eslint-plugin-next": { - "version": "14.2.13", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.13.tgz", - "integrity": "sha512-z8Mk0VljxhIzsSiZUSdt3wp+t2lKd+jk5a9Jsvh3zDGkItgDMfjv/ZbET6HsxEl/fSihVoHGsXV6VLyDH0lfTQ==", + "version": "15.0.4", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.0.4.tgz", + "integrity": "sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==", + "dev": true, + "dependencies": { + "fast-glob": "3.3.1" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "glob": "10.3.10" + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, "node_modules/@next/mdx": { @@ -4311,16 +4295,6 @@ "node": ">=12.4.0" } }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, "node_modules/@pkgr/core": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.1.1.tgz", @@ -7502,12 +7476,6 @@ "node": ">=8" } }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, "node_modules/electron-to-chromium": { "version": "1.5.72", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.72.tgz", @@ -7931,43 +7899,6 @@ } } }, - "node_modules/eslint-config-next/node_modules/@next/eslint-plugin-next": { - "version": "15.0.4", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-15.0.4.tgz", - "integrity": "sha512-rbsF17XGzHtR7SDWzWpavSfum3/UdnF8bAaisnKwP//si3KWPTedVUsflAdjyK1zW3rweBjbALfKcavFneLGvg==", - "dev": true, - "dependencies": { - "fast-glob": "3.3.1" - } - }, - "node_modules/eslint-config-next/node_modules/fast-glob": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", - "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/eslint-config-next/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, "node_modules/eslint-config-prettier": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.1.0.tgz", @@ -9093,34 +9024,6 @@ "is-callable": "^1.1.3" } }, - "node_modules/foreground-child": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", - "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/form-data": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", @@ -9299,28 +9202,6 @@ "node": ">=16" } }, - "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", @@ -9339,30 +9220,6 @@ "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "peer": true }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/global-directory": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", @@ -10593,24 +10450,6 @@ "set-function-name": "^2.0.1" } }, - "node_modules/jackspeak": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", - "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, "node_modules/jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", @@ -13537,15 +13376,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/minipass": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", - "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, "node_modules/mri": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", @@ -15203,31 +15033,6 @@ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" }, - "node_modules/path-scurry": { - "version": "1.10.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", - "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", - "dev": true, - "dependencies": { - "lru-cache": "^9.1.1 || ^10.0.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", - "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", @@ -16380,71 +16185,6 @@ "node": ">=10" } }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/string-width/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/string.prototype.includes": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.0.tgz", @@ -16565,19 +16305,6 @@ "node": ">=8" } }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -17820,115 +17547,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/package.json b/package.json index 4762edb..3ca87b6 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "@commitlint/cli": "^19.6.0", "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", - "@next/eslint-plugin-next": "^14.1.0", + "@next/eslint-plugin-next": "^15.0.4", "@playwright/test": "^1.37.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^16.0.1", From f472698c51d86d08322bb1cdcda59c09b2b3f3cc Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:29:23 -0800 Subject: [PATCH 07/11] chore: updated playwright (#195) --- package-lock.json | 24 ++++++++++++------------ package.json | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/package-lock.json b/package-lock.json index a5a87dc..63e586e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -33,7 +33,7 @@ "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", "@next/eslint-plugin-next": "^15.0.4", - "@playwright/test": "^1.37.1", + "@playwright/test": "^1.49.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^16.0.1", "@types/mdx": "^2.0.11", @@ -4308,12 +4308,12 @@ } }, "node_modules/@playwright/test": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.46.0.tgz", - "integrity": "sha512-/QYft5VArOrGRP5pgkrfKksqsKA6CEFyGQ/gjNe6q0y4tZ1aaPfq4gIjudr1s3D+pXyrPRdsy4opKDrjBabE5w==", + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.49.1.tgz", + "integrity": "sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==", "devOptional": true, "dependencies": { - "playwright": "1.46.0" + "playwright": "1.49.1" }, "bin": { "playwright": "cli.js" @@ -15078,12 +15078,12 @@ } }, "node_modules/playwright": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.46.0.tgz", - "integrity": "sha512-XYJ5WvfefWONh1uPAUAi0H2xXV5S3vrtcnXe6uAOgdGi3aSpqOSXX08IAjXW34xitfuOJsvXU5anXZxPSEQiJw==", + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.49.1.tgz", + "integrity": "sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==", "devOptional": true, "dependencies": { - "playwright-core": "1.46.0" + "playwright-core": "1.49.1" }, "bin": { "playwright": "cli.js" @@ -15096,9 +15096,9 @@ } }, "node_modules/playwright-core": { - "version": "1.46.0", - "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.46.0.tgz", - "integrity": "sha512-9Y/d5UIwuJk8t3+lhmMSAJyNP1BUC/DqP3cQJDQQL/oWqAiuPTLgy7Q5dzglmTLwcBRdetzgNM/gni7ckfTr6A==", + "version": "1.49.1", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.49.1.tgz", + "integrity": "sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==", "devOptional": true, "bin": { "playwright-core": "cli.js" diff --git a/package.json b/package.json index 3ca87b6..fb4ef50 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,7 @@ "@commitlint/config-conventional": "^19.6.0", "@mui/types": "^7.2.18", "@next/eslint-plugin-next": "^15.0.4", - "@playwright/test": "^1.37.1", + "@playwright/test": "^1.49.1", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^16.0.1", "@types/mdx": "^2.0.11", From 9e73e14d63c4c9283373dbc3c781e9c466cac6e0 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:42:13 -0800 Subject: [PATCH 08/11] chore: updated babel-loader (#195) --- package-lock.json | 324 ++++++++++++++++++++++------------------------ package.json | 2 +- 2 files changed, 154 insertions(+), 172 deletions(-) diff --git a/package-lock.json b/package-lock.json index 63e586e..354bd27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -43,7 +43,7 @@ "@types/react-table": "^7.7.12", "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "^8.18.0", - "babel-loader": "^8.2.5", + "babel-loader": "^9.2.1", "csv-parse": "^5.5.6", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", @@ -5793,6 +5793,35 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dev": true, + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", @@ -6177,81 +6206,35 @@ } }, "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", + "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "dev": true, "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" }, "engines": { - "node": ">= 8.9" + "node": ">= 14.15.0" }, "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/babel-loader/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/babel-loader/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "node_modules/babel-loader/node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", - "dev": true, - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" - }, - "engines": { - "node": ">=8.9.0" + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, "node_modules/babel-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" }, "engines": { - "node": ">= 8.9.0" + "node": ">= 12.13.0" }, "funding": { "type": "opencollective", @@ -6411,15 +6394,6 @@ "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true, - "engines": { - "node": "*" - } - }, "node_modules/binary-extensions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", @@ -6869,10 +6843,10 @@ "node": ">= 12.0.0" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, "node_modules/compare-func": { @@ -7499,15 +7473,6 @@ "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "dev": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/enhanced-resolve": { "version": "5.17.1", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.17.1.tgz", @@ -8894,86 +8859,21 @@ } }, "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-cache-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, "engines": { - "node": ">=6" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/find-cache-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", - "dev": true, - "dependencies": { - "find-up": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/find-root": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", @@ -12502,21 +12402,6 @@ "lz-string": "bin/bin.js" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", @@ -15077,6 +14962,103 @@ "node": ">= 6" } }, + "node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "dependencies": { + "find-up": "^6.3.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "dependencies": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "dependencies": { + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/pkg-dir/node_modules/yocto-queue": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", + "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", + "dev": true, + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/playwright": { "version": "1.49.1", "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.49.1.tgz", diff --git a/package.json b/package.json index fb4ef50..12d0c3e 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "@types/react-table": "^7.7.12", "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "^8.18.0", - "babel-loader": "^8.2.5", + "babel-loader": "^9.2.1", "csv-parse": "^5.5.6", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", From 82fb5f3d4c1a8d8cb866e456110399d590ae22ca Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 18:58:17 -0800 Subject: [PATCH 09/11] chore: updated csv-parse, ran database script (#195) --- files/out/genomes.json | 2976 ++++++++++++++++++++-------------------- package-lock.json | 8 +- package.json | 2 +- 3 files changed, 1493 insertions(+), 1493 deletions(-) diff --git a/files/out/genomes.json b/files/out/genomes.json index 14bb70e..1030336 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -2,6 +2,7 @@ { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000001215.4", "ncbiTaxonomyId": "7227", "organism": "Drosophila melanogaster iso-1", @@ -9,12 +10,12 @@ "strain": "iso-1", "supercontigs": 1862, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001215.4", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/001/985/GCA_000001985.1/genes/GCA_000001985.1_JCVI-PMFA1-2.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000001985.1", "ncbiTaxonomyId": "441960", "organism": "Talaromyces marneffei ATCC 18224", @@ -22,12 +23,12 @@ "strain": "ATCC 18224", "supercontigs": 452, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/001/985/GCA_000001985.1/genes/GCA_000001985.1_JCVI-PMFA1-2.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 2733, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002415.2", "ncbiTaxonomyId": "5855", "organism": "Plasmodium vivax Sal-1", @@ -35,12 +36,12 @@ "strain": "Sal-1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002435.2", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage A isolate WB 2019", @@ -48,12 +49,12 @@ "strain": "isolate WB 2019", "supercontigs": 30, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002435.2", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 16, "contigs": 115, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002445.1", "ncbiTaxonomyId": "185431", "organism": "Trypanosoma brucei brucei TREU927", @@ -61,12 +62,12 @@ "strain": "brucei TREU927", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002495.2", "ncbiTaxonomyId": "242507", "organism": "Pyricularia oryzae 70-15", @@ -74,12 +75,12 @@ "strain": "70-15", "supercontigs": 46, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002495.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002515.1", "ncbiTaxonomyId": "28985", "organism": "Kluyveromyces lactis NRRL Y-1140", @@ -87,12 +88,12 @@ "strain": "NRRL Y-1140", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002515.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/525/GCA_000002525.1/genes/GCA_000002525.1_ASM252v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000002525.1", "ncbiTaxonomyId": "284591", "organism": "Yarrowia lipolytica CLIB122", @@ -100,12 +101,12 @@ "strain": "CLIB122", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/525/GCA_000002525.1/genes/GCA_000002525.1_ASM252v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/545/GCA_000002545.2/genes/GCA_000002545.2_ASM254v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000002545.2", "ncbiTaxonomyId": "5478", "organism": "Nakaseomyces glabratus CBS 138", @@ -113,12 +114,12 @@ "strain": "CBS 138", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002545.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/545/GCA_000002545.2/genes/GCA_000002545.2_ASM254v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002655.1", "ncbiTaxonomyId": "330879", "organism": "Aspergillus fumigatus Af293", @@ -126,12 +127,12 @@ "strain": "Af293", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002715.1", "ncbiTaxonomyId": "344612", "organism": "Aspergillus clavatus NRRL 1", @@ -139,12 +140,12 @@ "strain": "NRRL 1", "supercontigs": 143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002715.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/725/GCA_000002725.2/genes/GCA_000002725.2_ASM272v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000002725.2", "ncbiTaxonomyId": "347515", "organism": "Leishmania major strain Friedlin", @@ -152,12 +153,12 @@ "strain": "strain Friedlin", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/725/GCA_000002725.2/genes/GCA_000002725.2_ASM272v2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002765.3", "ncbiTaxonomyId": "36329", "organism": "Plasmodium falciparum 3D7", @@ -165,12 +166,12 @@ "strain": "3D7", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002825.1", "ncbiTaxonomyId": "412133", "organism": "Trichomonas vaginalis G3", @@ -178,12 +179,12 @@ "strain": "G3", "supercontigs": 64764, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002825.2", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "" + "vEuPathDbProject": "TrichDB" }, { "chromosomes": 36, "contigs": 103, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002845.2", "ncbiTaxonomyId": "420245", "organism": "Leishmania braziliensis MHOM/BR/75/M2904", @@ -191,12 +192,12 @@ "strain": "MHOM/BR/75/M2904", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000002855.2", "ncbiTaxonomyId": "5061", "organism": "Aspergillus niger CBS 513.88", @@ -204,12 +205,12 @@ "strain": "CBS 513.88", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002855.4", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 5617, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000003085.2", "ncbiTaxonomyId": "73239", "organism": "Plasmodium yoelii yoelii 17XNL", @@ -217,12 +218,12 @@ "strain": "yoelii 17XNL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003085.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000003125.1", "ncbiTaxonomyId": "441959", "organism": "Talaromyces stipitatus ATCC 10500", @@ -230,12 +231,12 @@ "strain": "ATCC 10500", "supercontigs": 820, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/225/GCA_000003225.1/genes/GCA_000003225.1_ASM322v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000003225.1", "ncbiTaxonomyId": "5874", "organism": "Theileria annulata strain Ankara", @@ -243,12 +244,12 @@ "strain": "strain Ankara", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000003225.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/225/GCA_000003225.1/genes/GCA_000003225.1_ASM322v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000003515.2", "ncbiTaxonomyId": "336963", "organism": "Uncinocarpus reesii 1704", @@ -256,12 +257,12 @@ "strain": "1704", "supercontigs": 44, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/525/GCA_000003525.2/genes/GCA_000003525.2_BD_ER3_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000003525.2", "ncbiTaxonomyId": "559297", "organism": "Blastomyces dermatitidis ER-3", @@ -269,12 +270,12 @@ "strain": "ER-3", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003525.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/525/GCA_000003525.2/genes/GCA_000003525.2_BD_ER3_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/835/GCA_000003835.1/genes/GCA_000003835.1_ASM383v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000003835.1", "ncbiTaxonomyId": "306902", "organism": "Clavispora lusitaniae ATCC 42720", @@ -282,12 +283,12 @@ "strain": "ATCC 42720", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003835.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/835/GCA_000003835.1/genes/GCA_000003835.1_ASM383v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/855/GCA_000003855.2/genes/GCA_000003855.2_BD_SLH14081_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000003855.2", "ncbiTaxonomyId": "559298", "organism": "Blastomyces gilchristii SLH14081", @@ -295,12 +296,12 @@ "strain": "SLH14081", "supercontigs": 100, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003855.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/855/GCA_000003855.2/genes/GCA_000003855.2_BD_SLH14081_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000004985.1", "ncbiTaxonomyId": "5762", "organism": "Naegleria gruberi strain NEG-M", @@ -308,12 +309,12 @@ "strain": "strain NEG-M", "supercontigs": 784, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000004985.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/006/275/GCA_000006275.3/genes/GCA_000006275.3_JCVI-afl1-v3.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000006275.3", "ncbiTaxonomyId": "332952", "organism": "Aspergillus flavus NRRL3357", @@ -321,12 +322,12 @@ "strain": "NRRL3357", "supercontigs": 282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000006275.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/006/275/GCA_000006275.3/genes/GCA_000006275.3_JCVI-afl1-v3.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000006295.1", "ncbiTaxonomyId": "121224", "organism": "Pediculus humanus USDA", @@ -334,12 +335,12 @@ "strain": "USDA", "supercontigs": 1882, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006295.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000006335.3", "ncbiTaxonomyId": "294747", "organism": "Candida tropicalis MYA-3404", @@ -347,12 +348,12 @@ "strain": "MYA-3404", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006335.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 148, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000006355.3", "ncbiTaxonomyId": "5851", "organism": "Plasmodium knowlesi strain H", @@ -360,12 +361,12 @@ "strain": "strain H", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006355.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 1422, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000006425.1", "ncbiTaxonomyId": "353151", "organism": "Cryptosporidium hominis TU502", @@ -373,12 +374,12 @@ "strain": "TU502", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006425.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000006445.2", "ncbiTaxonomyId": "284592", "organism": "Debaryomyces hansenii CBS767", @@ -386,12 +387,12 @@ "strain": "CBS767", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000026945.1", "ncbiTaxonomyId": "573826", "organism": "Candida dubliniensis CD36", @@ -399,12 +400,12 @@ "strain": "CD36", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000026945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/091/045/GCA_000091045.1/genes/GCA_000091045.1_ASM9104v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000091045.1", "ncbiTaxonomyId": "214684", "organism": "Cryptococcus neoformans var. neoformans JEC21", @@ -412,12 +413,12 @@ "strain": "var. neoformans JEC21", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/091/045/GCA_000091045.1/genes/GCA_000091045.1_ASM9104v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000091225.2", "ncbiTaxonomyId": "284813", "organism": "Encephalitozoon cuniculi GB-M1", @@ -425,12 +426,12 @@ "strain": "GB-M1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091225.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000142945.1", "ncbiTaxonomyId": "403677", "organism": "Phytophthora infestans T30-4", @@ -438,12 +439,12 @@ "strain": "T30-4", "supercontigs": 4921, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000142945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/143/045/GCA_000143045.1/genes/GCA_000143045.1_pug.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000143045.1", "ncbiTaxonomyId": "431595", "organism": "Globisporangium ultimum DAOM BR144", @@ -451,12 +452,12 @@ "strain": "DAOM BR144", "supercontigs": 975, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000143045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/143/045/GCA_000143045.1/genes/GCA_000143045.1_pug.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000143185.2", "ncbiTaxonomyId": "578458", "organism": "Schizophyllum commune H4-8", @@ -464,12 +465,12 @@ "strain": "H4-8", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143185.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000143365.1", "ncbiTaxonomyId": "306901", "organism": "Chaetomium globosum CBS 148.51", @@ -477,12 +478,12 @@ "strain": "CBS 148.51", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 18, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000143535.4", "ncbiTaxonomyId": "332648", "organism": "Botrytis cinerea B05.10", @@ -490,12 +491,12 @@ "strain": "B05.10", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143535.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000145635.1", "ncbiTaxonomyId": "644352", "organism": "Gaeumannomyces tritici R3-111a-1", @@ -503,12 +504,12 @@ "strain": "R3-111a-1", "supercontigs": 513, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000145635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 16, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000146045.2", "ncbiTaxonomyId": "559292", "organism": "Saccharomyces cerevisiae S288C", @@ -516,12 +517,12 @@ "strain": "S288C", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146045.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000146465.1", "ncbiTaxonomyId": "876142", "organism": "Encephalitozoon intestinalis ATCC 50506", @@ -529,12 +530,12 @@ "strain": "ATCC 50506", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146465.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149035.1", "ncbiTaxonomyId": "645133", "organism": "Colletotrichum graminicola M1.001", @@ -542,12 +543,12 @@ "strain": "M1.001", "supercontigs": 653, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/205/GCA_000149205.2/genes/GCA_000149205.2_ASM14920v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149205.2", "ncbiTaxonomyId": "227321", "organism": "Aspergillus nidulans FGSC A4", @@ -555,12 +556,12 @@ "strain": "FGSC A4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149205.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/205/GCA_000149205.2/genes/GCA_000149205.2_ASM14920v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149245.3", "ncbiTaxonomyId": "235443", "organism": "Cryptococcus neoformans var. grubii H99", @@ -568,12 +569,12 @@ "strain": "var. grubii H99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/305/GCA_000149305.1/genes/GCA_000149305.1_RO3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149305.1", "ncbiTaxonomyId": "246409", "organism": "Rhizopus delemar RA 99-880", @@ -581,12 +582,12 @@ "strain": "RA 99-880", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149305.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/305/GCA_000149305.1/genes/GCA_000149305.1_RO3.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149335.2", "ncbiTaxonomyId": "246410", "organism": "Coccidioides immitis RS", @@ -594,12 +595,12 @@ "strain": "RS", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149385.1", "ncbiTaxonomyId": "283643", "organism": "Cryptococcus neoformans var. neoformans B-3501A", @@ -607,12 +608,12 @@ "strain": "var. neoformans B-3501A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149425.1", "ncbiTaxonomyId": "294746", "organism": "Meyerozyma guilliermondii ATCC 6260", @@ -620,12 +621,12 @@ "strain": "ATCC 6260", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149425.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/445/GCA_000149445.2/genes/GCA_000149445.2_ASM14944v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149445.2", "ncbiTaxonomyId": "294748", "organism": "Candida albicans WO-1", @@ -633,12 +634,12 @@ "strain": "WO-1", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/445/GCA_000149445.2/genes/GCA_000149445.2_ASM14944v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149555.1", "ncbiTaxonomyId": "334819", "organism": "Fusarium verticillioides 7600", @@ -646,12 +647,12 @@ "strain": "7600", "supercontigs": 10, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149585.1", "ncbiTaxonomyId": "2059318", "organism": "Histoplasma capsulatum NAm1", @@ -659,12 +660,12 @@ "strain": "NAm1", "supercontigs": 276, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149615.1", "ncbiTaxonomyId": "341663", "organism": "Aspergillus terreus NIH2624", @@ -672,12 +673,12 @@ "strain": "NIH2624", "supercontigs": 26, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149645.4", "ncbiTaxonomyId": "331117", "organism": "Aspergillus fischeri NRRL 181", @@ -685,12 +686,12 @@ "strain": "NRRL 181", "supercontigs": 163, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149645.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/685/GCA_000149685.1/genes/GCA_000149685.1_ASM14968v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149685.1", "ncbiTaxonomyId": "379508", "organism": "Lodderomyces elongisporus NRRL YB-4239", @@ -698,12 +699,12 @@ "strain": "NRRL YB-4239", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/685/GCA_000149685.1/genes/GCA_000149685.1_ASM14968v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 2034, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/715/GCA_000149715.2/genes/GCA_000149715.2_TGGT1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149715.2", "ncbiTaxonomyId": "507601", "organism": "Toxoplasma gondii GT1", @@ -711,12 +712,12 @@ "strain": "GT1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149715.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/715/GCA_000149715.2/genes/GCA_000149715.2_TGGT1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149755.2", "ncbiTaxonomyId": "67593", "organism": "Phytophthora sojae strain P6497", @@ -724,12 +725,12 @@ "strain": "strain P6497", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/815/GCA_000149815.1/genes/GCA_000149815.1_ASM14981v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149815.1", "ncbiTaxonomyId": "396776", "organism": "Coccidioides immitis H538.4", @@ -737,12 +738,12 @@ "strain": "H538.4", "supercontigs": 553, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149815.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/815/GCA_000149815.1/genes/GCA_000149815.1_ASM14981v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149845.2", "ncbiTaxonomyId": "402676", "organism": "Schizosaccharomyces japonicus yFS275", @@ -750,12 +751,12 @@ "strain": "yFS275", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149845.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/865/GCA_000149865.1/genes/GCA_000149865.1_BD_JEL423.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149865.1", "ncbiTaxonomyId": "403673", "organism": "Batrachochytrium dendrobatidis JEL423", @@ -763,12 +764,12 @@ "strain": "JEL423", "supercontigs": 69, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/865/GCA_000149865.1/genes/GCA_000149865.1_BD_JEL423.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/895/GCA_000149895.1/genes/GCA_000149895.1_ASM14989v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000149895.1", "ncbiTaxonomyId": "404692", "organism": "Coccidioides immitis RMSCC 2394", @@ -776,12 +777,12 @@ "strain": "RMSCC 2394", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/895/GCA_000149895.1/genes/GCA_000149895.1_ASM14989v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149925.1", "ncbiTaxonomyId": "418459", "organism": "Puccinia graminis f. sp. tritici CRL 75-36-700-3", @@ -789,12 +790,12 @@ "strain": "f. sp. tritici CRL 75-36-700-3", "supercontigs": 392, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 15, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000149955.2", "ncbiTaxonomyId": "426428", "organism": "Fusarium oxysporum f. sp. lycopersici 4287", @@ -802,12 +803,12 @@ "strain": "f. sp. lycopersici 4287", "supercontigs": 70, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/015/GCA_000150015.2/genes/GCA_000150015.2_TGVEG.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150015.2", "ncbiTaxonomyId": "432359", "organism": "Toxoplasma gondii VEG", @@ -815,12 +816,12 @@ "strain": "VEG", "supercontigs": 1290, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150015.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/015/GCA_000150015.2/genes/GCA_000150015.2_TGVEG.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/055/GCA_000150055.1/genes/GCA_000150055.1_ASM15005v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150055.1", "ncbiTaxonomyId": "454284", "organism": "Coccidioides posadasii RMSCC 3488", @@ -828,12 +829,12 @@ "strain": "RMSCC 3488", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/055/GCA_000150055.1/genes/GCA_000150055.1_ASM15005v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/085/GCA_000150085.1/genes/GCA_000150085.1_ASM15008v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150085.1", "ncbiTaxonomyId": "454286", "organism": "Coccidioides immitis RMSCC 3703", @@ -841,12 +842,12 @@ "strain": "RMSCC 3703", "supercontigs": 286, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/085/GCA_000150085.1/genes/GCA_000150085.1_ASM15008v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/145/GCA_000150145.1/genes/GCA_000150145.1_ASM15014v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150145.1", "ncbiTaxonomyId": "451804", "organism": "Aspergillus fumigatus A1163", @@ -854,12 +855,12 @@ "strain": "A1163", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/145/GCA_000150145.1/genes/GCA_000150145.1_ASM15014v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/185/GCA_000150185.1/genes/GCA_000150185.1_ASM15018v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150185.1", "ncbiTaxonomyId": "469470", "organism": "Coccidioides posadasii RMSCC 2133", @@ -867,12 +868,12 @@ "strain": "RMSCC 2133", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/185/GCA_000150185.1/genes/GCA_000150185.1_ASM15018v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/215/GCA_000150215.1/genes/GCA_000150215.1_ASM15021v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150215.1", "ncbiTaxonomyId": "469471", "organism": "Coccidioides posadasii RMSCC 3700", @@ -880,12 +881,12 @@ "strain": "RMSCC 3700", "supercontigs": 241, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/215/GCA_000150215.1/genes/GCA_000150215.1_ASM15021v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/245/GCA_000150245.1/genes/GCA_000150245.1_ASM15024v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150245.1", "ncbiTaxonomyId": "469472", "organism": "Coccidioides posadasii CPA 0001", @@ -893,12 +894,12 @@ "strain": "CPA 0001", "supercontigs": 255, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/245/GCA_000150245.1/genes/GCA_000150245.1_ASM15024v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/475/GCA_000150475.2/genes/GCA_000150475.2_Paracocci_br_Pb03_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150475.2", "ncbiTaxonomyId": "482561", "organism": "Paracoccidioides brasiliensis Pb03", @@ -906,12 +907,12 @@ "strain": "Pb03", "supercontigs": 65, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150475.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/475/GCA_000150475.2/genes/GCA_000150475.2_Paracocci_br_Pb03_V2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000150505.2", "ncbiTaxonomyId": "483514", "organism": "Schizosaccharomyces octosporus yFS286", @@ -919,12 +920,12 @@ "strain": "yFS286", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150505.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/555/GCA_000150555.1/genes/GCA_000150555.1_ASM15055v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150555.1", "ncbiTaxonomyId": "490065", "organism": "Coccidioides posadasii RMSCC 1037", @@ -932,12 +933,12 @@ "strain": "RMSCC 1037", "supercontigs": 633, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/555/GCA_000150555.1/genes/GCA_000150555.1_ASM15055v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/585/GCA_000150585.1/genes/GCA_000150585.1_ASM15058v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150585.1", "ncbiTaxonomyId": "490066", "organism": "Coccidioides posadasii RMSCC 1038", @@ -945,12 +946,12 @@ "strain": "RMSCC 1038", "supercontigs": 551, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/585/GCA_000150585.1/genes/GCA_000150585.1_ASM15058v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/615/GCA_000150615.1/genes/GCA_000150615.1_ASM15061v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150615.1", "ncbiTaxonomyId": "490068", "organism": "Coccidioides posadasii CPA 0020", @@ -958,12 +959,12 @@ "strain": "CPA 0020", "supercontigs": 620, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/615/GCA_000150615.1/genes/GCA_000150615.1_ASM15061v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/645/GCA_000150645.1/genes/GCA_000150645.1_ASM15064v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150645.1", "ncbiTaxonomyId": "490069", "organism": "Coccidioides posadasii CPA 0066", @@ -971,12 +972,12 @@ "strain": "CPA 0066", "supercontigs": 473, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/645/GCA_000150645.1/genes/GCA_000150645.1_ASM15064v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000150705.2", "ncbiTaxonomyId": "502779", "organism": "Paracoccidioides lutzii Pb01", @@ -984,12 +985,12 @@ "strain": "Pb01", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150705.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000150735.2", "ncbiTaxonomyId": "502780", "organism": "Paracoccidioides brasiliensis Pb18", @@ -997,12 +998,12 @@ "strain": "Pb18", "supercontigs": 57, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/765/GCA_000150765.1/genes/GCA_000150765.1_m5.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150765.1", "ncbiTaxonomyId": "1518534", "organism": "Anopheles coluzzii Mali-NIH", @@ -1010,12 +1011,12 @@ "strain": "Mali-NIH", "supercontigs": 10521, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/765/GCA_000150765.1/genes/GCA_000150765.1_m5.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/785/GCA_000150785.1/genes/GCA_000150785.1_g4.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000150785.1", "ncbiTaxonomyId": "7165", "organism": "Anopheles gambiae Pimperena", @@ -1023,12 +1024,12 @@ "strain": "Pimperena", "supercontigs": 13042, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150785.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/785/GCA_000150785.1/genes/GCA_000150785.1_g4.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000150975.2", "ncbiTaxonomyId": "535722", "organism": "Nannizzia gypsea CBS 118893", @@ -1036,12 +1037,12 @@ "strain": "CBS 118893", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150975.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/035/GCA_000151035.1/genes/GCA_000151035.1_ASM15103v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151035.1", "ncbiTaxonomyId": "544712", "organism": "Histoplasma capsulatum H143", @@ -1049,12 +1050,12 @@ "strain": "H143", "supercontigs": 48, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/035/GCA_000151035.1/genes/GCA_000151035.1_ASM15103v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000151145.1", "ncbiTaxonomyId": "554155", "organism": "Microsporum canis CBS 113480", @@ -1062,12 +1063,12 @@ "strain": "CBS 113480", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/175/GCA_000151175.1/genes/GCA_000151175.1_ASM15117v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151175.1", "ncbiTaxonomyId": "559882", "organism": "Trichophyton equinum CBS 127.97", @@ -1075,12 +1076,12 @@ "strain": "CBS 127.97", "supercontigs": 123, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/175/GCA_000151175.1/genes/GCA_000151175.1_ASM15117v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/295/GCA_000151295.1/genes/GCA_000151295.1_A_macrogynus_V3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151295.1", "ncbiTaxonomyId": "578462", "organism": "Allomyces macrogynus ATCC 38327", @@ -1088,12 +1089,12 @@ "strain": "ATCC 38327", "supercontigs": 101, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/295/GCA_000151295.1/genes/GCA_000151295.1_A_macrogynus_V3.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/335/GCA_000151335.1/genes/GCA_000151335.1_JCVI-cpa1-1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151335.1", "ncbiTaxonomyId": "222929", "organism": "Coccidioides posadasii C735 delta SOWgp", @@ -1101,12 +1102,12 @@ "strain": "C735 delta SOWgp", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151335.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/335/GCA_000151335.1/genes/GCA_000151335.1_JCVI-cpa1-1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000151355.1", "ncbiTaxonomyId": "660122", "organism": "Fusarium vanettenii 77-13-4", @@ -1114,12 +1115,12 @@ "strain": "77-13-4", "supercontigs": 209, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151355.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000151425.1", "ncbiTaxonomyId": "559305", "organism": "Trichophyton rubrum CBS 118892", @@ -1127,12 +1128,12 @@ "strain": "CBS 118892", "supercontigs": 35, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151425.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/455/GCA_000151455.1/genes/GCA_000151455.1_ASM15145v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151455.1", "ncbiTaxonomyId": "647933", "organism": "Trichophyton tonsurans CBS 112818", @@ -1140,12 +1141,12 @@ "strain": "CBS 112818", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151455.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/455/GCA_000151455.1/genes/GCA_000151455.1_ASM15145v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 14818, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/525/GCA_000151525.2/genes/GCA_000151525.2_P_triticina_1_1_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000151525.2", "ncbiTaxonomyId": "630390", "organism": "Puccinia triticina 1-1 BBBD Race 1", @@ -1153,12 +1154,12 @@ "strain": "1-1 BBBD Race 1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/525/GCA_000151525.2/genes/GCA_000151525.2_P_triticina_1_1_V2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000151545.2", "ncbiTaxonomyId": "695850", "organism": "Saprolegnia parasitica CBS 223.65", @@ -1166,12 +1167,12 @@ "strain": "CBS 223.65", "supercontigs": 1442, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/735/GCA_000151735.1/genes/GCA_000151735.1_Cavpor3.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCA_000151735.1", "ncbiTaxonomyId": "10141", "organism": "Cavia porcellus 2N", @@ -1179,12 +1180,12 @@ "strain": "2N", "supercontigs": 3143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151735.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/735/GCA_000151735.1/genes/GCA_000151735.1_Cavpor3.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000165345.1", "ncbiTaxonomyId": "353152", "organism": "Cryptosporidium parvum Iowa II", @@ -1192,12 +1193,12 @@ "strain": "Iowa II", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165345.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 2, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000165365.1", "ncbiTaxonomyId": "333668", "organism": "Theileria parva strain Muguga", @@ -1205,12 +1206,12 @@ "strain": "strain Muguga", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165365.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000165395.2", "ncbiTaxonomyId": "484906", "organism": "Babesia bovis T2Bo", @@ -1218,12 +1219,12 @@ "strain": "T2Bo", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165395.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/166/155/GCA_000166155.1/genes/GCA_000166155.1_BD_ATCC26199_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000166155.1", "ncbiTaxonomyId": "447095", "organism": "Blastomyces dermatitidis ATCC 26199", @@ -1231,12 +1232,12 @@ "strain": "ATCC 26199", "supercontigs": 3282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000166155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/166/155/GCA_000166155.1/genes/GCA_000166155.1_BD_ATCC26199_V2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/167/175/GCA_000167175.1/genes/GCA_000167175.1_ASM16717v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000167175.1", "ncbiTaxonomyId": "273507", "organism": "Phanerochaete chrysosporium RP-78", @@ -1244,12 +1245,12 @@ "strain": "RP-78", "supercontigs": 232, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000167175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/167/175/GCA_000167175.1/genes/GCA_000167175.1_ASM16717v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000167675.2", "ncbiTaxonomyId": "431241", "organism": "Trichoderma reesei QM6a", @@ -1257,12 +1258,12 @@ "strain": "QM6a", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000167675.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/170/175/GCA_000170175.2/genes/GCA_000170175.2_CPS2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000170175.2", "ncbiTaxonomyId": "443226", "organism": "Coccidioides posadasii str. Silveira", @@ -1270,12 +1271,12 @@ "strain": "str. Silveira", "supercontigs": 54, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000170175.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/170/175/GCA_000170175.2/genes/GCA_000170175.2_CPS2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 93, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000170995.2", "ncbiTaxonomyId": "413071", "organism": "Trichoderma virens Gv29-8", @@ -1283,12 +1284,12 @@ "strain": "Gv29-8", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000170995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/173/235/GCA_000173235.2/genes/GCA_000173235.2_HyaAraEmoy2_2.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000173235.2", "ncbiTaxonomyId": "559515", "organism": "Hyaloperonospora arabidopsidis Emoy2", @@ -1296,12 +1297,12 @@ "strain": "Emoy2", "supercontigs": 3044, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000173235.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/173/235/GCA_000173235.2/genes/GCA_000173235.2_HyaAraEmoy2_2.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/181/055/GCA_000181055.3/genes/GCA_000181055.3_Rhodnius_prolixus-3.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000181055.3", "ncbiTaxonomyId": "13249", "organism": "Rhodnius prolixus CDC", @@ -1309,12 +1310,12 @@ "strain": "CDC", "supercontigs": 16537, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000181055.3", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/181/055/GCA_000181055.3/genes/GCA_000181055.3_Rhodnius_prolixus-3.0.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 2931, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/405/GCA_000182405.1/genes/GCA_000182405.1_ASM18240v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000182405.1", "ncbiTaxonomyId": "598745", "organism": "Giardia Assemblage B isolate GS", @@ -1322,12 +1323,12 @@ "strain": "isolate GS", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182405.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/405/GCA_000182405.1/genes/GCA_000182405.1_ASM18240v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000182565.2", "ncbiTaxonomyId": "645134", "organism": "Spizellomyces punctatus DAOM BR117", @@ -1335,12 +1336,12 @@ "strain": "DAOM BR117", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182565.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 820, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/665/GCA_000182665.1/genes/GCA_000182665.1_ASM18266v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000182665.1", "ncbiTaxonomyId": "658858", "organism": "Giardia Assemblage E isolate P15", @@ -1348,12 +1349,12 @@ "strain": "isolate P15", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182665.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/665/GCA_000182665.1/genes/GCA_000182665.1_ASM18266v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000182765.2", "ncbiTaxonomyId": "5480", "organism": "Candida parapsilosis CDC317", @@ -1361,12 +1362,12 @@ "strain": "CDC317", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182765.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/895/GCA_000182895.1/genes/GCA_000182895.1_CC3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000182895.1", "ncbiTaxonomyId": "240176", "organism": "Coprinopsis cinerea okayama7#130", @@ -1374,12 +1375,12 @@ "strain": "okayama7#130", "supercontigs": 67, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/895/GCA_000182895.1/genes/GCA_000182895.1_CC3.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000182925.2", "ncbiTaxonomyId": "367110", "organism": "Neurospora crassa OR74A", @@ -1387,12 +1388,12 @@ "strain": "OR74A", "supercontigs": 13, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182925.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000182965.3", "ncbiTaxonomyId": "237561", "organism": "Candida albicans SC5314", @@ -1400,12 +1401,12 @@ "strain": "SC5314", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 5465, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/985/GCA_000182985.1/genes/GCA_000182985.1_ASM18298v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000182985.1", "ncbiTaxonomyId": "578460", "organism": "Nosema ceranae BRL01", @@ -1413,12 +1414,12 @@ "strain": "BRL01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/985/GCA_000182985.1/genes/GCA_000182985.1_ASM18298v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/184/105/GCA_000184105.1/genes/GCA_000184105.1_Geom_destructans_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000184105.1", "ncbiTaxonomyId": "658429", "organism": "Pseudogymnoascus destructans 20631-21", @@ -1426,12 +1427,12 @@ "strain": "20631-21", "supercontigs": 1846, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/184/105/GCA_000184105.1/genes/GCA_000184105.1_Geom_destructans_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 3, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000184455.3", "ncbiTaxonomyId": "510516", "organism": "Aspergillus oryzae RIB40", @@ -1439,12 +1440,12 @@ "strain": "RIB40", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184455.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000185945.1", "ncbiTaxonomyId": "367775", "organism": "Cryptococcus gattii WM276", @@ -1452,12 +1453,12 @@ "strain": "WM276", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000185945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 27019, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/188/675/GCA_000188675.2/genes/GCA_000188675.2_Tc_SX10_v2.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000188675.2", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Sylvio X10/1-2012", @@ -1465,12 +1466,12 @@ "strain": "Sylvio X10/1-2012", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000188675.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/188/675/GCA_000188675.2/genes/GCA_000188675.2_Tc_SX10_v2.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/190/615/GCA_000190615.1/genes/GCA_000190615.1_Nema_parisii_ERTm3_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000190615.1", "ncbiTaxonomyId": "935791", "organism": "Nematocida parisii ERTm3", @@ -1478,12 +1479,12 @@ "strain": "ERTm3", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190615.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/190/615/GCA_000190615.1/genes/GCA_000190615.1_Nema_parisii_ERTm3_V1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000192795.1", "ncbiTaxonomyId": "948595", "organism": "Vavraia culicis subsp. floridensis", @@ -1491,12 +1492,12 @@ "strain": "subsp. floridensis", "supercontigs": 379, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000192795.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/193/285/GCA_000193285.1/genes/GCA_000193285.1_Mag_poae_ATCC_64411_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000193285.1", "ncbiTaxonomyId": "644358", "organism": "Magnaporthiopsis poae ATCC 64411", @@ -1504,12 +1505,12 @@ "strain": "ATCC 64411", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000193285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/193/285/GCA_000193285.1/genes/GCA_000193285.1_Mag_poae_ATCC_64411_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000204055.1", "ncbiTaxonomyId": "747676", "organism": "Melampsora larici-populina 98AG31", @@ -1517,12 +1518,12 @@ "strain": "98AG31", "supercontigs": 462, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000204055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/208/615/GCA_000208615.1/genes/GCA_000208615.1_JCVI_ISG_i3_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000208615.1", "ncbiTaxonomyId": "6945", "organism": "Ixodes scapularis Wikel", @@ -1530,12 +1531,12 @@ "strain": "Wikel", "supercontigs": 369492, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208615.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/208/615/GCA_000208615.1/genes/GCA_000208615.1_JCVI_ISG_i3_1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 14, "contigs": 52, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000208865.2", "ncbiTaxonomyId": "572307", "organism": "Neospora caninum Liverpool", @@ -1543,12 +1544,12 @@ "strain": "Liverpool", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208865.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000208925.2", "ncbiTaxonomyId": "294381", "organism": "Entamoeba histolytica HM-1:IMSS", @@ -1556,12 +1557,12 @@ "strain": "HM-1:IMSS", "supercontigs": 1496, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208925.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 29407, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000209065.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain CL Brener", @@ -1569,12 +1570,12 @@ "strain": "strain CL Brener", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000209125.2", "ncbiTaxonomyId": "370354", "organism": "Entamoeba dispar SAW760", @@ -1582,12 +1583,12 @@ "strain": "SAW760", "supercontigs": 3312, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209125.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/185/GCA_000209185.1/genes/GCA_000209185.1_CulPip1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000209185.1", "ncbiTaxonomyId": "7176", "organism": "Culex quinquefasciatus Johannesburg", @@ -1595,12 +1596,12 @@ "strain": "Johannesburg", "supercontigs": 3171, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/185/GCA_000209185.1/genes/GCA_000209185.1_CulPip1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 1730, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/485/GCA_000209485.1/genes/GCA_000209485.1_ASM20948v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000209485.1", "ncbiTaxonomyId": "481877", "organism": "Enterocytozoon bieneusi H348", @@ -1608,12 +1609,12 @@ "strain": "H348", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209485.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/485/GCA_000209485.1/genes/GCA_000209485.1_ASM20948v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000210295.1", "ncbiTaxonomyId": "679716", "organism": "Trypanosoma brucei gambiense DAL972", @@ -1621,12 +1622,12 @@ "strain": "gambiense DAL972", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000210295.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/211/455/GCA_000211455.3/genes/GCA_000211455.3_A_darlingi_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000211455.3", "ncbiTaxonomyId": "43151", "organism": "Anopheles darlingi Coari", @@ -1634,12 +1635,12 @@ "strain": "Coari", "supercontigs": 2220, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000211455.3", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/211/455/GCA_000211455.3/genes/GCA_000211455.3_A_darlingi_v1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000213175.1", "ncbiTaxonomyId": "510951", "organism": "Neurospora tetrasperma FGSC 2508", @@ -1647,12 +1648,12 @@ "strain": "FGSC 2508", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000213175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 21, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/219/625/GCA_000219625.1/genes/GCA_000219625.1_MYCGR_v2.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCA_000219625.1", "ncbiTaxonomyId": "336722", "organism": "Zymoseptoria tritici IPO323", @@ -1660,12 +1661,12 @@ "strain": "IPO323", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000219625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/219/625/GCA_000219625.1/genes/GCA_000219625.1_MYCGR_v2.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 15, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/245/GCA_000221245.2/genes/GCA_000221245.2_Ence_cuni_EC3_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000221245.2", "ncbiTaxonomyId": "989655", "organism": "Encephalitozoon cuniculi EC3", @@ -1673,12 +1674,12 @@ "strain": "EC3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221245.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/245/GCA_000221245.2/genes/GCA_000221245.2_Ence_cuni_EC3_V1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 16, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/265/GCA_000221265.2/genes/GCA_000221265.2_Ence_cuni_EC2_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000221265.2", "ncbiTaxonomyId": "989654", "organism": "Encephalitozoon cuniculi EC2", @@ -1686,12 +1687,12 @@ "strain": "EC2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221265.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/265/GCA_000221265.2/genes/GCA_000221265.2_Ence_cuni_EC2_V1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 12, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/285/GCA_000221285.2/genes/GCA_000221285.2_Ence_cuni_EC1_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000221285.2", "ncbiTaxonomyId": "986730", "organism": "Encephalitozoon cuniculi EC1", @@ -1699,12 +1700,12 @@ "strain": "EC1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221285.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/285/GCA_000221285.2/genes/GCA_000221285.2_Ence_cuni_EC1_V1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000223845.4", "ncbiTaxonomyId": "110365", "organism": "Gregarina niphandrodes Unknown strain", @@ -1712,12 +1713,12 @@ "strain": "Unknown strain", "supercontigs": 469, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000223845.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/805/GCA_000224805.2/genes/GCA_000224805.2_TGRUB_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224805.2", "ncbiTaxonomyId": "935652", "organism": "Toxoplasma gondii RUB", @@ -1725,12 +1726,12 @@ "strain": "RUB", "supercontigs": 2424, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224805.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/805/GCA_000224805.2/genes/GCA_000224805.2_TGRUB_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/825/GCA_000224825.2/genes/GCA_000224825.2_TGCATBR9_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224825.2", "ncbiTaxonomyId": "943120", "organism": "Toxoplasma gondii TgCATBr9", @@ -1738,12 +1739,12 @@ "strain": "TgCATBr9", "supercontigs": 2452, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224825.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/825/GCA_000224825.2/genes/GCA_000224825.2_TGCATBR9_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/845/GCA_000224845.2/genes/GCA_000224845.2_TGVAND_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224845.2", "ncbiTaxonomyId": "933077", "organism": "Toxoplasma gondii VAND", @@ -1751,12 +1752,12 @@ "strain": "VAND", "supercontigs": 2137, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224845.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/845/GCA_000224845.2/genes/GCA_000224845.2_TGVAND_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/865/GCA_000224865.2/genes/GCA_000224865.2_TGMAS1_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224865.2", "ncbiTaxonomyId": "943118", "organism": "Toxoplasma gondii MAS", @@ -1764,12 +1765,12 @@ "strain": "MAS", "supercontigs": 2180, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224865.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/865/GCA_000224865.2/genes/GCA_000224865.2_TGMAS1_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/885/GCA_000224885.2/genes/GCA_000224885.2_TGP89A_v02.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224885.2", "ncbiTaxonomyId": "943119", "organism": "Toxoplasma gondii p89", @@ -1777,12 +1778,12 @@ "strain": "p89", "supercontigs": 2150, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224885.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/885/GCA_000224885.2/genes/GCA_000224885.2_TGP89A_v02.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/905/GCA_000224905.2/genes/GCA_000224905.2_TGFOU1v02.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000224905.2", "ncbiTaxonomyId": "943167", "organism": "Toxoplasma gondii FOU", @@ -1790,12 +1791,12 @@ "strain": "FOU", "supercontigs": 2869, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224905.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/905/GCA_000224905.2/genes/GCA_000224905.2_TGFOU1v02.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 3076, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/225/285/GCA_000225285.2/genes/GCA_000225285.2_EpiGly_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000225285.2", "ncbiTaxonomyId": "1035635", "organism": "Epichloe glyceriae E277", @@ -1803,12 +1804,12 @@ "strain": "E277", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000225285.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/225/285/GCA_000225285.2/genes/GCA_000225285.2_EpiGly_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000225605.1", "ncbiTaxonomyId": "983644", "organism": "Cordyceps militaris CM01", @@ -1816,12 +1817,12 @@ "strain": "CM01", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000225605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000226095.1", "ncbiTaxonomyId": "573729", "organism": "Thermothelomyces thermophilus ATCC 42464", @@ -1829,12 +1830,12 @@ "strain": "ATCC 42464", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226095.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/226/395/GCA_000226395.1/genes/GCA_000226395.1_PenChr_Nov2007.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000226395.1", "ncbiTaxonomyId": "500485", "organism": "Penicillium rubens Wisconsin 54-1255", @@ -1842,12 +1843,12 @@ "strain": "Wisconsin 54-1255", "supercontigs": 49, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226395.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/226/395/GCA_000226395.1/genes/GCA_000226395.1_PenChr_Nov2007.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000226545.1", "ncbiTaxonomyId": "515849", "organism": "Podospora anserina S mat+", @@ -1855,12 +1856,12 @@ "strain": "S mat+", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000227135.2", "ncbiTaxonomyId": "5661", "organism": "Leishmania donovani BPK282A1", @@ -1868,12 +1869,12 @@ "strain": "BPK282A1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 11, "contigs": 8279, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/375/GCA_000227375.1/genes/GCA_000227375.1_ASM22737v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000227375.1", "ncbiTaxonomyId": "1055687", "organism": "Trypanosoma vivax Y486", @@ -1881,12 +1882,12 @@ "strain": "Y486", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227375.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/375/GCA_000227375.1/genes/GCA_000227375.1_ASM22737v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 11, "contigs": 2828, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/395/GCA_000227395.2/genes/GCA_000227395.2_ASM22739v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000227395.2", "ncbiTaxonomyId": "1068625", "organism": "Trypanosoma congolense IL3000", @@ -1894,12 +1895,12 @@ "strain": "IL3000", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227395.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/395/GCA_000227395.2/genes/GCA_000227395.2_ASM22739v2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 23, "contigs": 21, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/245/GCA_000230245.1/genes/GCA_000230245.1_ASM23024v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000230245.1", "ncbiTaxonomyId": "999809", "organism": "Sporisorium reilianum SRZ2", @@ -1907,12 +1908,12 @@ "strain": "SRZ2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/245/GCA_000230245.1/genes/GCA_000230245.1_ASM23024v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000230375.1", "ncbiTaxonomyId": "985895", "organism": "Plenodomus lingam JN3", @@ -1920,12 +1921,12 @@ "strain": "JN3", "supercontigs": 76, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/395/GCA_000230395.2/genes/GCA_000230395.2_ASPNI_v3.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000230395.2", "ncbiTaxonomyId": "380704", "organism": "Aspergillus niger ATCC 1015", @@ -1933,12 +1934,12 @@ "strain": "ATCC 1015", "supercontigs": 24, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230395.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/395/GCA_000230395.2/genes/GCA_000230395.2_ASPNI_v3.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1429, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/595/GCA_000230595.3/genes/GCA_000230595.3_Edha_aedis_V4b.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000230595.3", "ncbiTaxonomyId": "1003232", "organism": "Edhazardia aedis USNM 41457", @@ -1946,12 +1947,12 @@ "strain": "USNM 41457", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230595.3", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/595/GCA_000230595.3/genes/GCA_000230595.3_Edha_aedis_V4b.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000230625.1", "ncbiTaxonomyId": "858893", "organism": "Exophiala dermatitidis NIH/UT8656", @@ -1959,12 +1960,12 @@ "strain": "NIH/UT8656", "supercontigs": 10, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000231115.1", "ncbiTaxonomyId": "993615", "organism": "Vittaforma corneae ATCC 50505", @@ -1972,12 +1973,12 @@ "strain": "ATCC 50505", "supercontigs": 220, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000231115.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 34, "contigs": 554, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000234665.4", "ncbiTaxonomyId": "929439", "organism": "Leishmania mexicana MHOM/GT/2001/U1103", @@ -1985,12 +1986,12 @@ "strain": "MHOM/GT/2001/U1103", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000234665.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 1016, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/239/835/GCA_000239835.2/genes/GCA_000239835.2_Akaw_assembly01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000239835.2", "ncbiTaxonomyId": "1033177", "organism": "Aspergillus luchuensis IFO 4308", @@ -1998,12 +1999,12 @@ "strain": "IFO 4308", "supercontigs": 146, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000239835.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/239/835/GCA_000239835.2/genes/GCA_000239835.2_Akaw_assembly01.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000247585.2", "ncbiTaxonomyId": "761204", "organism": "Phytophthora parasitica INRA-310", @@ -2011,12 +2012,12 @@ "strain": "INRA-310", "supercontigs": 708, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000247585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/695/GCA_000250695.1/genes/GCA_000250695.1_Nema_parisii_ERTm2_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000250695.1", "ncbiTaxonomyId": "1913371", "organism": "Nematocida ausubeli ERTm2", @@ -2024,12 +2025,12 @@ "strain": "ERTm2", "supercontigs": 202, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250695.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/695/GCA_000250695.1/genes/GCA_000250695.1_Nema_parisii_ERTm2_V1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/755/GCA_000250755.2/genes/GCA_000250755.2_Leishmania_major_SD_75.1-1.1.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000250755.2", "ncbiTaxonomyId": "860570", "organism": "Leishmania major strain SD 75.1", @@ -2037,12 +2038,12 @@ "strain": "strain SD 75.1", "supercontigs": 36, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250755.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/755/GCA_000250755.2/genes/GCA_000250755.2_Leishmania_major_SD_75.1-1.1.1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/965/GCA_000250965.2/genes/GCA_000250965.2_TGARI_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000250965.2", "ncbiTaxonomyId": "1074872", "organism": "Toxoplasma gondii ARI", @@ -2050,12 +2051,12 @@ "strain": "ARI", "supercontigs": 2723, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250965.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/965/GCA_000250965.2/genes/GCA_000250965.2_TGARI_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000250985.1", "ncbiTaxonomyId": "881290", "organism": "Nematocida parisii ERTm1", @@ -2063,12 +2064,12 @@ "strain": "ERTm1", "supercontigs": 65, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000250985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/705/GCA_000256705.2/genes/GCA_000256705.2_TGCAST_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000256705.2", "ncbiTaxonomyId": "943122", "organism": "Toxoplasma gondii CAST", @@ -2076,12 +2077,12 @@ "strain": "CAST", "supercontigs": 2656, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256705.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/705/GCA_000256705.2/genes/GCA_000256705.2_TGCAST_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/725/GCA_000256725.2/genes/GCA_000256725.2_TGCATPRC2_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000256725.2", "ncbiTaxonomyId": "1130821", "organism": "Toxoplasma gondii TgCatPRC2", @@ -2089,12 +2090,12 @@ "strain": "TgCatPRC2", "supercontigs": 3060, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256725.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/725/GCA_000256725.2/genes/GCA_000256725.2_TGCATPRC2_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000258005.2", "ncbiTaxonomyId": "99158", "organism": "Hammondia hammondi strain H.H.34", @@ -2102,12 +2103,12 @@ "strain": "strain H.H.34", "supercontigs": 14860, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000258005.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 6995, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/259/835/GCA_000259835.1/genes/GCA_000259835.1_TGCATBR5.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000259835.1", "ncbiTaxonomyId": "943121", "organism": "Toxoplasma gondii TgCATBr5", @@ -2115,12 +2116,12 @@ "strain": "TgCATBr5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000259835.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/259/835/GCA_000259835.1/genes/GCA_000259835.1_TGCATBR5.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000260195.2", "ncbiTaxonomyId": "1089451", "organism": "Fusarium odoratissimum NRRL 54006", @@ -2128,12 +2129,12 @@ "strain": "NRRL 54006", "supercontigs": 418, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000260195.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/260/495/GCA_000260495.2/genes/GCA_000260495.2_FO_melonis_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000260495.2", "ncbiTaxonomyId": "1089452", "organism": "Fusarium oxysporum f. sp. melonis 26406", @@ -2141,12 +2142,12 @@ "strain": "f. sp. melonis 26406", "supercontigs": 1146, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000260495.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/260/495/GCA_000260495.2/genes/GCA_000260495.2_FO_melonis_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/262/795/GCA_000262795.1/genes/GCA_000262795.1_Ppap_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000262795.1", "ncbiTaxonomyId": "29031", "organism": "Phlebotomus papatasi Israel", @@ -2154,12 +2155,12 @@ "strain": "Israel", "supercontigs": 106826, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000262795.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/262/795/GCA_000262795.1/genes/GCA_000262795.1_Ppap_1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/265/325/GCA_000265325.1/genes/GCA_000265325.1_Llon_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000265325.1", "ncbiTaxonomyId": "7200", "organism": "Lutzomyia longipalpis Jacobina", @@ -2167,12 +2168,12 @@ "strain": "Jacobina", "supercontigs": 11532, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000265325.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/265/325/GCA_000265325.1/genes/GCA_000265325.1_Llon_1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000271645.1", "ncbiTaxonomyId": "578456", "organism": "Tremella mesenterica DSM 1558", @@ -2180,12 +2181,12 @@ "strain": "DSM 1558", "supercontigs": 45, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/705/GCA_000271705.2/genes/GCA_000271705.2_FO_Fo47_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000271705.2", "ncbiTaxonomyId": "660027", "organism": "Fusarium oxysporum Fo47", @@ -2193,12 +2194,12 @@ "strain": "Fo47", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000271705.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/705/GCA_000271705.2/genes/GCA_000271705.2_FO_Fo47_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/745/GCA_000271745.2/genes/GCA_000271745.2_FO_FOSC_3_a_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000271745.2", "ncbiTaxonomyId": "660029", "organism": "Fusarium oxysporum NRRL 32931", @@ -2206,12 +2207,12 @@ "strain": "NRRL 32931", "supercontigs": 168, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/745/GCA_000271745.2/genes/GCA_000271745.2_FO_FOSC_3_a_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 12, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000277815.3", "ncbiTaxonomyId": "907965", "organism": "Encephalitozoon hellem ATCC 50504", @@ -2219,12 +2220,12 @@ "strain": "ATCC 50504", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277815.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 6177, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/278/365/GCA_000278365.1/genes/GCA_000278365.1_ASM27836v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000278365.1", "ncbiTaxonomyId": "1194599", "organism": "Toxoplasma gondii CtCo5", @@ -2232,12 +2233,12 @@ "strain": "CtCo5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000278365.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/278/365/GCA_000278365.1/genes/GCA_000278365.1_ASM27836v1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000280035.2", "ncbiTaxonomyId": "1178016", "organism": "Encephalitozoon romaleae SJ-2008", @@ -2245,12 +2246,12 @@ "strain": "SJ-2008", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000280035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000281045.1", "ncbiTaxonomyId": "1156394", "organism": "Saprolegnia diclina VS20", @@ -2258,12 +2259,12 @@ "strain": "VS20", "supercontigs": 390, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000281045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000293215.1", "ncbiTaxonomyId": "1186058", "organism": "Trichosporon asahii var. asahii CBS 2479", @@ -2271,12 +2272,12 @@ "strain": "var. asahii CBS 2479", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000293215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/495/GCA_000300495.1/genes/GCA_000300495.1_ASM30049v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000300495.1", "ncbiTaxonomyId": "85056", "organism": "Trypanosoma cruzi marinkellei strain B7", @@ -2284,12 +2285,12 @@ "strain": "marinkellei strain B7", "supercontigs": 16783, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300495.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/495/GCA_000300495.1/genes/GCA_000300495.1_ASM30049v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/775/GCA_000300775.2/genes/GCA_000300775.2_ASM30077v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000300775.2", "ncbiTaxonomyId": "30069", "organism": "Anopheles stephensi Indian", @@ -2297,12 +2298,12 @@ "strain": "Indian", "supercontigs": 23371, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300775.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/775/GCA_000300775.2/genes/GCA_000300775.2_ASM30077v2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/302/655/GCA_000302655.1/genes/GCA_000302655.1_MphMS6_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000302655.1", "ncbiTaxonomyId": "1126212", "organism": "Macrophomina phaseolina MS6", @@ -2310,12 +2311,12 @@ "strain": "MS6", "supercontigs": 1506, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000302655.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/302/655/GCA_000302655.1/genes/GCA_000302655.1_MphMS6_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/312/925/GCA_000312925.2/genes/GCA_000312925.2_ASM31292v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000312925.2", "ncbiTaxonomyId": "1097556", "organism": "Taphrina deformans PYCC 5710", @@ -2323,12 +2324,12 @@ "strain": "PYCC 5710", "supercontigs": 394, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000312925.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/312/925/GCA_000312925.2/genes/GCA_000312925.2_ASM31292v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000313135.1", "ncbiTaxonomyId": "1257118", "organism": "Acanthamoeba castellanii str. Neff", @@ -2336,12 +2337,12 @@ "strain": "str. Neff", "supercontigs": 384, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000313135.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 8427, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/313/815/GCA_000313815.1/genes/GCA_000313815.1_ASM31381v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000313815.1", "ncbiTaxonomyId": "723287", "organism": "Anncaliia algerae Undeen", @@ -2349,12 +2350,12 @@ "strain": "Undeen", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000313815.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/313/815/GCA_000313815.1/genes/GCA_000313815.1_ASM31381v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/316/135/GCA_000316135.1/genes/GCA_000316135.1_ASM31613v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000316135.1", "ncbiTaxonomyId": "72359", "organism": "Trachipleistophora hominis Unknown strain", @@ -2362,12 +2363,12 @@ "strain": "Unknown strain", "supercontigs": 310, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000316135.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/316/135/GCA_000316135.1/genes/GCA_000316135.1_ASM31613v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000321355.1", "ncbiTaxonomyId": "1120755", "organism": "Plasmodium cynomolgi strain B", @@ -2375,12 +2376,12 @@ "strain": "strain B", "supercontigs": 1649, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000321355.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/325/525/GCA_000325525.2/genes/GCA_000325525.2_TGGABGALDOM2_v2.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000325525.2", "ncbiTaxonomyId": "1130820", "organism": "Toxoplasma gondii GAB2-2007-GAL-DOM2", @@ -2388,12 +2389,12 @@ "strain": "GAB2-2007-GAL-DOM2", "supercontigs": 2481, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000325525.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/325/525/GCA_000325525.2/genes/GCA_000325525.2_TGGABGALDOM2_v2.1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 15007, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/327/425/GCA_000327425.1/genes/GCA_000327425.1_Trypanosoma_cruzi-5.1.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000327425.1", "ncbiTaxonomyId": "366581", "organism": "Trypanosoma cruzi strain Esmeraldo", @@ -2401,12 +2402,12 @@ "strain": "strain Esmeraldo", "supercontigs": 796, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000327425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/327/425/GCA_000327425.1/genes/GCA_000327425.1_Trypanosoma_cruzi-5.1.3.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 23, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000328475.2", "ncbiTaxonomyId": "5270", "organism": "Ustilago maydis 521", @@ -2414,12 +2415,12 @@ "strain": "521", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000328475.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000330505.1", "ncbiTaxonomyId": "370355", "organism": "Entamoeba invadens IP1", @@ -2427,12 +2428,12 @@ "strain": "IP1", "supercontigs": 1144, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000330505.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 30, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/325/GCA_000331325.2/genes/GCA_000331325.2_Crithidia_fasciculata-14.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000331325.2", "ncbiTaxonomyId": "5656", "organism": "Crithidia fasciculata strain Cf-Cl", @@ -2440,12 +2441,12 @@ "strain": "strain Cf-Cl", "supercontigs": 427, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331325.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/325/GCA_000331325.2/genes/GCA_000331325.2_Crithidia_fasciculata-14.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/345/GCA_000331345.1/genes/GCA_000331345.1_Leishmania_major_LV39c5-1.0.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000331345.1", "ncbiTaxonomyId": "860569", "organism": "Leishmania major strain LV39c5", @@ -2453,12 +2454,12 @@ "strain": "strain LV39c5", "supercontigs": 773, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331345.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/345/GCA_000331345.1/genes/GCA_000331345.1_Leishmania_major_LV39c5-1.0.1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 14752, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/405/GCA_000331405.1/genes/GCA_000331405.1_Trypanosoma_cruzi_JR_cl4-1.1.4.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000331405.1", "ncbiTaxonomyId": "914063", "organism": "Trypanosoma cruzi JR cl. 4", @@ -2466,12 +2467,12 @@ "strain": "JR cl. 4", "supercontigs": 560, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331405.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/405/GCA_000331405.1/genes/GCA_000331405.1_Trypanosoma_cruzi_JR_cl4-1.1.4.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/855/GCA_000333855.2/genes/GCA_000333855.2_Endotrypanum_monterogeii-LV88-1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000333855.2", "ncbiTaxonomyId": "5705", "organism": "Endotrypanum monterogeii strain LV88", @@ -2479,12 +2480,12 @@ "strain": "strain LV88", "supercontigs": 1925, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333855.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/855/GCA_000333855.2/genes/GCA_000333855.2_Endotrypanum_monterogeii-LV88-1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/975/GCA_000333975.2/genes/GCA_000333975.2_ASM33397v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000333975.2", "ncbiTaxonomyId": "42068", "organism": "Pneumocystis jirovecii SE8", @@ -2492,12 +2493,12 @@ "strain": "SE8", "supercontigs": 328, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333975.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/975/GCA_000333975.2/genes/GCA_000333975.2_ASM33397v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 4075, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/675/GCA_000338675.2/genes/GCA_000338675.2_TGCOUG_v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000338675.2", "ncbiTaxonomyId": "1074873", "organism": "Toxoplasma gondii COUG", @@ -2505,12 +2506,12 @@ "strain": "COUG", "supercontigs": 105, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338675.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/675/GCA_000338675.2/genes/GCA_000338675.2_TGCOUG_v2.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/855/GCA_000338855.1/genes/GCA_000338855.1_EHA_ku27_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000338855.1", "ncbiTaxonomyId": "885311", "organism": "Entamoeba histolytica KU27", @@ -2518,12 +2519,12 @@ "strain": "KU27", "supercontigs": 1796, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338855.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/855/GCA_000338855.1/genes/GCA_000338855.1_EHA_ku27_v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000340215.1", "ncbiTaxonomyId": "383855", "organism": "Pseudocercospora fijiensis CIRAD86", @@ -2531,12 +2532,12 @@ "strain": "CIRAD86", "supercontigs": 56, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000340215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 35, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/355/GCA_000340355.2/genes/GCA_000340355.2_Leishmania_braziliensis_M2903-1.0.6.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000340355.2", "ncbiTaxonomyId": "1295825", "organism": "Leishmania braziliensis MHOM/BR/75/M2903", @@ -2544,12 +2545,12 @@ "strain": "MHOM/BR/75/M2903", "supercontigs": 709, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340355.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/355/GCA_000340355.2/genes/GCA_000340355.2_Leishmania_braziliensis_M2903-1.0.6.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/495/GCA_000340495.1/genes/GCA_000340495.1_Leishmania_panamensis_L13-1.3.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000340495.1", "ncbiTaxonomyId": "1295824", "organism": "Leishmania panamensis MHOM/COL/81/L13", @@ -2557,12 +2558,12 @@ "strain": "MHOM/COL/81/L13", "supercontigs": 820, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340495.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/495/GCA_000340495.1/genes/GCA_000340495.1_Leishmania_panamensis_L13-1.3.1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 2, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000342415.1", "ncbiTaxonomyId": "1537102", "organism": "Theileria equi strain WA", @@ -2570,12 +2571,12 @@ "strain": "strain WA", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000342415.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/344/925/GCA_000344925.1/genes/GCA_000344925.1_EHA_CB_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000344925.1", "ncbiTaxonomyId": "885319", "organism": "Entamoeba histolytica HM-1:IMSS-B", @@ -2583,12 +2584,12 @@ "strain": "HM-1:IMSS-B", "supercontigs": 1938, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000344925.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/344/925/GCA_000344925.1/genes/GCA_000344925.1_EHA_CB_v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/346/345/GCA_000346345.1/genes/GCA_000346345.1_EHA.strHM3_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000346345.1", "ncbiTaxonomyId": "885315", "organism": "Entamoeba histolytica HM-3:IMSS", @@ -2596,12 +2597,12 @@ "strain": "HM-3:IMSS", "supercontigs": 1880, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000346345.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/346/345/GCA_000346345.1/genes/GCA_000346345.1_EHA.strHM3_v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/347/355/GCA_000347355.1/genes/GCA_000347355.1_ASM34735v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000347355.1", "ncbiTaxonomyId": "1111077", "organism": "Claviceps purpurea 20.1", @@ -2609,12 +2610,12 @@ "strain": "20.1", "supercontigs": 191, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000347355.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/347/355/GCA_000347355.1/genes/GCA_000347355.1_ASM34735v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000349005.2", "ncbiTaxonomyId": "1069680", "organism": "Pneumocystis murina B123", @@ -2622,12 +2623,12 @@ "strain": "B123", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000349005.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/025/GCA_000349025.1/genes/GCA_000349025.1_Anop_mini_MINIMUS1_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349025.1", "ncbiTaxonomyId": "112268", "organism": "Anopheles minimus MINIMUS1", @@ -2635,12 +2636,12 @@ "strain": "MINIMUS1", "supercontigs": 678, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349025.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/025/GCA_000349025.1/genes/GCA_000349025.1_Anop_mini_MINIMUS1_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/045/GCA_000349045.1/genes/GCA_000349045.1_Anop_step_SDA-500_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349045.1", "ncbiTaxonomyId": "30069", "organism": "Anopheles stephensi SDA-500", @@ -2648,12 +2649,12 @@ "strain": "SDA-500", "supercontigs": 1110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349045.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/045/GCA_000349045.1/genes/GCA_000349045.1_Anop_step_SDA-500_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/065/GCA_000349065.1/genes/GCA_000349065.1_Anop_quad_QUAD4_A_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349065.1", "ncbiTaxonomyId": "34691", "organism": "Anopheles quadriannulatus SANGWE", @@ -2661,12 +2662,12 @@ "strain": "SANGWE", "supercontigs": 2823, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349065.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/065/GCA_000349065.1/genes/GCA_000349065.1_Anop_quad_QUAD4_A_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/105/GCA_000349105.1/genes/GCA_000349105.1_Anop_epir_epiroticus2_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349105.1", "ncbiTaxonomyId": "199890", "organism": "Anopheles epiroticus Epiroticus2", @@ -2674,12 +2675,12 @@ "strain": "Epiroticus2", "supercontigs": 2673, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349105.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/105/GCA_000349105.1/genes/GCA_000349105.1_Anop_epir_epiroticus2_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/125/GCA_000349125.2/genes/GCA_000349125.2_Anop_albi_ALBI9_A_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349125.2", "ncbiTaxonomyId": "7167", "organism": "Anopheles albimanus STECLA", @@ -2687,12 +2688,12 @@ "strain": "STECLA", "supercontigs": 196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349125.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/125/GCA_000349125.2/genes/GCA_000349125.2_Anop_albi_ALBI9_A_V2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/145/GCA_000349145.1/genes/GCA_000349145.1_Anop_diru_WRAIR2_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349145.1", "ncbiTaxonomyId": "7168", "organism": "Anopheles dirus WRAIR2", @@ -2700,12 +2701,12 @@ "strain": "WRAIR2", "supercontigs": 1266, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349145.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/145/GCA_000349145.1/genes/GCA_000349145.1_Anop_diru_WRAIR2_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/165/GCA_000349165.1/genes/GCA_000349165.1_Anop_chri_ACHKN1017_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349165.1", "ncbiTaxonomyId": "43041", "organism": "Anopheles christyi ACHKN1017", @@ -2713,12 +2714,12 @@ "strain": "ACHKN1017", "supercontigs": 30369, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349165.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/165/GCA_000349165.1/genes/GCA_000349165.1_Anop_chri_ACHKN1017_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/185/GCA_000349185.1/genes/GCA_000349185.1_Anop_arab_DONG5_A_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000349185.1", "ncbiTaxonomyId": "7173", "organism": "Anopheles arabiensis Dongola", @@ -2726,12 +2727,12 @@ "strain": "Dongola", "supercontigs": 1214, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/185/GCA_000349185.1/genes/GCA_000349185.1_Anop_arab_DONG5_A_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/345/GCA_000350345.1/genes/GCA_000350345.1_Foc1_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000350345.1", "ncbiTaxonomyId": "1229664", "organism": "Fusarium oxysporum f. sp. cubense race 1", @@ -2739,12 +2740,12 @@ "strain": "f. sp. cubense race 1", "supercontigs": 1341, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350345.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/345/GCA_000350345.1/genes/GCA_000350345.1_Foc1_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/365/GCA_000350365.1/genes/GCA_000350365.1_Foc4_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000350365.1", "ncbiTaxonomyId": "2502994", "organism": "Fusarium odoratissimum strain race 4", @@ -2752,12 +2753,12 @@ "strain": "strain race 4", "supercontigs": 840, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/365/GCA_000350365.1/genes/GCA_000350365.1_Foc4_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000365145.2", "ncbiTaxonomyId": "1220924", "organism": "Cyphellophora europaea CBS 101466", @@ -2765,12 +2766,12 @@ "strain": "CBS 101466", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000365165.2", "ncbiTaxonomyId": "1279043", "organism": "Cladophialophora carrionii CBS 160.54", @@ -2778,12 +2779,12 @@ "strain": "CBS 160.54", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 43931, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/225/GCA_000365225.1/genes/GCA_000365225.1_Trypanosoma_cruzi_Tula_cl2-1.0.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000365225.1", "ncbiTaxonomyId": "1206070", "organism": "Trypanosoma cruzi Tula cl2", @@ -2791,12 +2792,12 @@ "strain": "Tula cl2", "supercontigs": 1780, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/225/GCA_000365225.1/genes/GCA_000365225.1_Trypanosoma_cruzi_Tula_cl2-1.0.1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/475/GCA_000365475.1/genes/GCA_000365475.1_EHA_CA_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000365475.1", "ncbiTaxonomyId": "885318", "organism": "Entamoeba histolytica HM-1:IMSS-A", @@ -2804,12 +2805,12 @@ "strain": "HM-1:IMSS-A", "supercontigs": 1685, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365475.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/475/GCA_000365475.1/genes/GCA_000365475.1_EHA_CA_v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/371/365/GCA_000371365.1/genes/GCA_000371365.1_Musca_domestica-2.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000371365.1", "ncbiTaxonomyId": "7370", "organism": "Musca domestica aabys", @@ -2817,12 +2818,12 @@ "strain": "aabys", "supercontigs": 20487, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000371365.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/371/365/GCA_000371365.1/genes/GCA_000371365.1_Musca_domestica-2.0.2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/383/075/GCA_000383075.1/genes/GCA_000383075.1_NosBomCQ1_v1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000383075.1", "ncbiTaxonomyId": "578461", "organism": "Nosema bombycis CQ1", @@ -2830,12 +2831,12 @@ "strain": "CQ1", "supercontigs": 1607, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000383075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/383/075/GCA_000383075.1/genes/GCA_000383075.1_NosBomCQ1_v1.0.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/855/GCA_000385855.2/genes/GCA_000385855.2_Annc_alge_PRA109_V4.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000385855.2", "ncbiTaxonomyId": "1240240", "organism": "Anncaliia algerae PRA109", @@ -2843,12 +2844,12 @@ "strain": "PRA109", "supercontigs": 7113, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385855.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/855/GCA_000385855.2/genes/GCA_000385855.2_Annc_alge_PRA109_V4.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/875/GCA_000385875.2/genes/GCA_000385875.2_Annc_alge_insect_USDA_JJB_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000385875.2", "ncbiTaxonomyId": "1288291", "organism": "Anncaliia algerae PRA339", @@ -2856,12 +2857,12 @@ "strain": "PRA339", "supercontigs": 431, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385875.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/875/GCA_000385875.2/genes/GCA_000385875.2_Annc_alge_insect_USDA_JJB_V2.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/425/GCA_000387425.2/genes/GCA_000387425.2_pir_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387425.2", "ncbiTaxonomyId": "1223557", "organism": "Globisporangium irregulare DAOM BR486", @@ -2869,12 +2870,12 @@ "strain": "DAOM BR486", "supercontigs": 5887, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387425.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/425/GCA_000387425.2/genes/GCA_000387425.2_pir_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/445/GCA_000387445.2/genes/GCA_000387445.2_pag1_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387445.2", "ncbiTaxonomyId": "1223555", "organism": "Pythium aphanidermatum DAOM BR444", @@ -2882,12 +2883,12 @@ "strain": "DAOM BR444", "supercontigs": 1774, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/445/GCA_000387445.2/genes/GCA_000387445.2_pag1_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/465/GCA_000387465.2/genes/GCA_000387465.2_piw_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387465.2", "ncbiTaxonomyId": "1223558", "organism": "Globisporangium iwayamae DAOM BR242034", @@ -2895,12 +2896,12 @@ "strain": "DAOM BR242034", "supercontigs": 11542, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387465.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/465/GCA_000387465.2/genes/GCA_000387465.2_piw_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/505/GCA_000387505.2/genes/GCA_000387505.2_par_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387505.2", "ncbiTaxonomyId": "1223556", "organism": "Pythium arrhenomanes ATCC 12531", @@ -2908,12 +2909,12 @@ "strain": "ATCC 12531", "supercontigs": 10972, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387505.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/505/GCA_000387505.2/genes/GCA_000387505.2_par_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/525/GCA_000387525.2/genes/GCA_000387525.2_pug3_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387525.2", "ncbiTaxonomyId": "1223559", "organism": "Globisporangium ultimum var. sporangiiferum BR650", @@ -2921,12 +2922,12 @@ "strain": "var. sporangiiferum BR650", "supercontigs": 5482, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/525/GCA_000387525.2/genes/GCA_000387525.2_pug3_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/545/GCA_000387545.2/genes/GCA_000387545.2_pve_scaffolds_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000387545.2", "ncbiTaxonomyId": "1223560", "organism": "Phytopythium vexans DAOM BR484", @@ -2934,12 +2935,12 @@ "strain": "DAOM BR484", "supercontigs": 3685, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387545.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/545/GCA_000387545.2/genes/GCA_000387545.2_pve_scaffolds_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/400/815/GCA_000400815.2/genes/GCA_000400815.2_VDAG_JR2v.4.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000400815.2", "ncbiTaxonomyId": "1202531", "organism": "Verticillium dahliae JR2", @@ -2947,12 +2948,12 @@ "strain": "JR2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000400815.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/400/815/GCA_000400815.2/genes/GCA_000400815.2_VDAG_JR2v.4.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/401/635/GCA_000401635.1/genes/GCA_000401635.1_Muco_sp_1006Ph_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000401635.1", "ncbiTaxonomyId": "1220926", "organism": "Mucor circinelloides 1006PhL", @@ -2960,12 +2961,12 @@ "strain": "1006PhL", "supercontigs": 470, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000401635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/401/635/GCA_000401635.1/genes/GCA_000401635.1_Muco_sp_1006Ph_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/409/445/GCA_000409445.2/genes/GCA_000409445.2_Leishmania_MAR_LEM2494-1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000409445.2", "ncbiTaxonomyId": "1303197", "organism": "Leishmania martiniquensis LEM2494", @@ -2973,12 +2974,12 @@ "strain": "LEM2494", "supercontigs": 215, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000409445.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/409/445/GCA_000409445.2/genes/GCA_000409445.2_Leishmania_MAR_LEM2494-1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/695/GCA_000410695.2/genes/GCA_000410695.2_Leishmania_arabica_LEM1108-1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000410695.2", "ncbiTaxonomyId": "40284", "organism": "Leishmania arabica strain LEM1108", @@ -2986,12 +2987,12 @@ "strain": "strain LEM1108", "supercontigs": 132, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410695.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/695/GCA_000410695.2/genes/GCA_000410695.2_Leishmania_arabica_LEM1108-1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/715/GCA_000410715.1/genes/GCA_000410715.1_Leishmania_tropica_L590-2.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000410715.1", "ncbiTaxonomyId": "1206058", "organism": "Leishmania tropica L590", @@ -2999,12 +3000,12 @@ "strain": "L590", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410715.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/715/GCA_000410715.1/genes/GCA_000410715.1_Leishmania_tropica_L590-2.0.2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/735/GCA_000410735.1/genes/GCA_000410735.1_Opiceae_UAMHv01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000410735.1", "ncbiTaxonomyId": "1262450", "organism": "Ophiostoma piceae UAMH 11346", @@ -3012,12 +3013,12 @@ "strain": "UAMH 11346", "supercontigs": 45, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/735/GCA_000410735.1/genes/GCA_000410735.1_Opiceae_UAMHv01.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/755/GCA_000410755.2/genes/GCA_000410755.2_Leishmania_enrietti_LEM3045-1.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000410755.2", "ncbiTaxonomyId": "5663", "organism": "Leishmania enriettii strain LEM3045", @@ -3025,12 +3026,12 @@ "strain": "strain LEM3045", "supercontigs": 459, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410755.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/755/GCA_000410755.2/genes/GCA_000410755.2_Leishmania_enrietti_LEM3045-1.0.2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 1392, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/430/065/GCA_000430065.1/genes/GCA_000430065.1_Sprlop1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000430065.1", "ncbiTaxonomyId": "1358809", "organism": "Spraguea lophii 42_110", @@ -3038,12 +3039,12 @@ "strain": "42_110", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000430065.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/430/065/GCA_000430065.1/genes/GCA_000430065.1_Sprlop1.0.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/438/535/GCA_000438535.1/genes/GCA_000438535.1_LeiAma1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000438535.1", "ncbiTaxonomyId": "5659", "organism": "Leishmania amazonensis MHOM/BR/71973/M2269", @@ -3051,12 +3052,12 @@ "strain": "MHOM/BR/71973/M2269", "supercontigs": 2627, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000438535.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/438/535/GCA_000438535.1/genes/GCA_000438535.1_LeiAma1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/895/GCA_000441895.2/genes/GCA_000441895.2_AS2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000441895.2", "ncbiTaxonomyId": "74873", "organism": "Anopheles sinensis China", @@ -3064,12 +3065,12 @@ "strain": "China", "supercontigs": 9592, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441895.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/895/GCA_000441895.2/genes/GCA_000441895.2_AS2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/995/GCA_000441995.1/genes/GCA_000441995.1_Leishmania_turanica_LEM423-1.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000441995.1", "ncbiTaxonomyId": "62297", "organism": "Leishmania turanica strain LEM423", @@ -3077,12 +3078,12 @@ "strain": "strain LEM423", "supercontigs": 183, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441995.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/995/GCA_000441995.1/genes/GCA_000441995.1_Leishmania_turanica_LEM423-1.0.2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/443/025/GCA_000443025.1/genes/GCA_000443025.1_Leishmania_gerbilii_LEM452-1.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000443025.1", "ncbiTaxonomyId": "40285", "organism": "Leishmania gerbilli strain LEM452", @@ -3090,12 +3091,12 @@ "strain": "strain LEM452", "supercontigs": 106, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000443025.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/443/025/GCA_000443025.1/genes/GCA_000443025.1_Leishmania_gerbilii_LEM452-1.0.2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/444/285/GCA_000444285.2/genes/GCA_000444285.2_Leishmania_aethiopica-L147-2.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000444285.2", "ncbiTaxonomyId": "1206056", "organism": "Leishmania aethiopica L147", @@ -3103,12 +3104,12 @@ "strain": "L147", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000444285.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/444/285/GCA_000444285.2/genes/GCA_000444285.2_Leishmania_aethiopica-L147-2.0.3.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/447/185/GCA_000447185.1/genes/GCA_000447185.1_NapisBRLv01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000447185.1", "ncbiTaxonomyId": "1037528", "organism": "Nosema apis BRL 01", @@ -3116,12 +3117,12 @@ "strain": "BRL 01", "supercontigs": 554, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000447185.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/447/185/GCA_000447185.1/genes/GCA_000447185.1_NapisBRLv01.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/470/725/GCA_000470725.1/genes/GCA_000470725.1_BHU1220.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000470725.1", "ncbiTaxonomyId": "5661", "organism": "Leishmania donovani strain BHU 1220", @@ -3129,12 +3130,12 @@ "strain": "strain BHU 1220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000470725.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/470/725/GCA_000470725.1/genes/GCA_000470725.1_BHU1220.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/472/065/GCA_000472065.2/genes/GCA_000472065.2_Anop_sine_SINENSIS_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000472065.2", "ncbiTaxonomyId": "74873", "organism": "Anopheles sinensis SINENSIS", @@ -3142,12 +3143,12 @@ "strain": "SINENSIS", "supercontigs": 10448, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000472065.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/472/065/GCA_000472065.2/genes/GCA_000472065.2_Anop_sine_SINENSIS_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/185/GCA_000473185.1/genes/GCA_000473185.1_Anop_macu_maculatus3_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473185.1", "ncbiTaxonomyId": "74869", "organism": "Anopheles maculatus maculatus3", @@ -3155,12 +3156,12 @@ "strain": "maculatus3", "supercontigs": 47797, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/185/GCA_000473185.1/genes/GCA_000473185.1_Anop_macu_maculatus3_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/375/GCA_000473375.1/genes/GCA_000473375.1_Anop_culi_species_A-37_1_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473375.1", "ncbiTaxonomyId": "139723", "organism": "Anopheles culicifacies A-37", @@ -3168,12 +3169,12 @@ "strain": "A-37", "supercontigs": 16162, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473375.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/375/GCA_000473375.1/genes/GCA_000473375.1_Anop_culi_species_A-37_1_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/445/GCA_000473445.2/genes/GCA_000473445.2_Anop_fara_FAR1_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473445.2", "ncbiTaxonomyId": "69004", "organism": "Anopheles farauti FAR1", @@ -3181,12 +3182,12 @@ "strain": "FAR1", "supercontigs": 310, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473445.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/445/GCA_000473445.2/genes/GCA_000473445.2_Anop_fara_FAR1_V2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/505/GCA_000473505.1/genes/GCA_000473505.1_Anop_atro_EBRO_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473505.1", "ncbiTaxonomyId": "41427", "organism": "Anopheles atroparvus EBRO", @@ -3194,12 +3195,12 @@ "strain": "EBRO", "supercontigs": 1315, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473505.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/505/GCA_000473505.1/genes/GCA_000473505.1_Anop_atro_EBRO_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/525/GCA_000473525.2/genes/GCA_000473525.2_Anop_mela_CM1001059_A_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473525.2", "ncbiTaxonomyId": "34690", "organism": "Anopheles melas CM1001059_A", @@ -3207,12 +3208,12 @@ "strain": "CM1001059_A", "supercontigs": 20229, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473525.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/525/GCA_000473525.2/genes/GCA_000473525.2_Anop_mela_CM1001059_A_V2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/845/GCA_000473845.2/genes/GCA_000473845.2_Anop_meru_MAF_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000473845.2", "ncbiTaxonomyId": "30066", "organism": "Anopheles merus MAF", @@ -3220,12 +3221,12 @@ "strain": "MAF", "supercontigs": 2027, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473845.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/845/GCA_000473845.2/genes/GCA_000473845.2_Anop_meru_MAF_V1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 7433, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/492/115/GCA_000492115.1/genes/GCA_000492115.1_T_rangeli_SC58v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000492115.1", "ncbiTaxonomyId": "429131", "organism": "Trypanosoma rangeli SC58", @@ -3233,12 +3234,12 @@ "strain": "SC58", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000492115.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/492/115/GCA_000492115.1/genes/GCA_000492115.1_T_rangeli_SC58v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 1210, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/496/795/GCA_000496795.1/genes/GCA_000496795.1_T.cruzi.Dm28c_v01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000496795.1", "ncbiTaxonomyId": "1416333", "organism": "Trypanosoma cruzi Dm28c 2014", @@ -3246,12 +3247,12 @@ "strain": "Dm28c 2014", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000496795.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/496/795/GCA_000496795.1/genes/GCA_000496795.1_T.cruzi.Dm28c_v01.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 239, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/715/GCA_000498715.1/genes/GCA_000498715.1_ASM49871v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000498715.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage A2 isolate DH", @@ -3259,12 +3260,12 @@ "strain": "2 isolate DH", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498715.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/715/GCA_000498715.1/genes/GCA_000498715.1_ASM49871v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 543, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/735/GCA_000498735.1/genes/GCA_000498735.1_ASM49873v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000498735.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage B isolate GS_B", @@ -3272,12 +3273,12 @@ "strain": "isolate GS_B", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498735.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/735/GCA_000498735.1/genes/GCA_000498735.1_ASM49873v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/105/GCA_000499105.1/genes/GCA_000499105.1_Naegleria_fowleri_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000499105.1", "ncbiTaxonomyId": "5763", "organism": "Naegleria fowleri ATCC 30863", @@ -3285,12 +3286,12 @@ "strain": "ATCC 30863", "supercontigs": 1124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499105.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/105/GCA_000499105.1/genes/GCA_000499105.1_Naegleria_fowleri_1.0.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000499385.1", "ncbiTaxonomyId": "51315", "organism": "Eimeria necatrix Houghton", @@ -3298,12 +3299,12 @@ "strain": "Houghton", "supercontigs": 3707, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499385.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000499425.1", "ncbiTaxonomyId": "5801", "organism": "Eimeria acervulina Houghton", @@ -3311,12 +3312,12 @@ "strain": "Houghton", "supercontigs": 3415, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499425.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/445/GCA_000499445.1/genes/GCA_000499445.1_EPH001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000499445.1", "ncbiTaxonomyId": "51316", "organism": "Eimeria praecox Houghton", @@ -3324,12 +3325,12 @@ "strain": "Houghton", "supercontigs": 21348, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499445.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/445/GCA_000499445.1/genes/GCA_000499445.1_EPH001.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/545/GCA_000499545.1/genes/GCA_000499545.1_ETH001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000499545.1", "ncbiTaxonomyId": "5802", "organism": "Eimeria tenella strain Houghton", @@ -3337,12 +3338,12 @@ "strain": "strain Houghton", "supercontigs": 4664, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499545.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/545/GCA_000499545.1/genes/GCA_000499545.1_ETH001.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000499605.1", "ncbiTaxonomyId": "5804", "organism": "Eimeria maxima Weybridge", @@ -3350,12 +3351,12 @@ "strain": "Weybridge", "supercontigs": 3564, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499605.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/725/GCA_000499725.1/genes/GCA_000499725.1_EBH001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000499725.1", "ncbiTaxonomyId": "51314", "organism": "Eimeria brunetti Houghton", @@ -3363,12 +3364,12 @@ "strain": "Houghton", "supercontigs": 8575, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499725.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/725/GCA_000499725.1/genes/GCA_000499725.1_EBH001.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000499745.2", "ncbiTaxonomyId": "44415", "organism": "Eimeria mitis Houghton", @@ -3376,12 +3377,12 @@ "strain": "Houghton", "supercontigs": 15978, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499745.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/507/425/GCA_000507425.3/genes/GCA_000507425.3_Cryp_heve_CBS569_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000507425.3", "ncbiTaxonomyId": "1296119", "organism": "Kwoniella heveanensis CBS 569", @@ -3389,12 +3390,12 @@ "strain": "CBS 569", "supercontigs": 242, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000507425.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/507/425/GCA_000507425.3/genes/GCA_000507425.3_Cryp_heve_CBS569_V2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000520075.1", "ncbiTaxonomyId": "112090", "organism": "Aphanomyces astaci strain APO3", @@ -3402,12 +3403,12 @@ "strain": "strain APO3", "supercontigs": 835, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520075.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000520115.1", "ncbiTaxonomyId": "157072", "organism": "Aphanomyces invadans NJM9701", @@ -3415,12 +3416,12 @@ "strain": "NJM9701", "supercontigs": 481, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000524495.1", "ncbiTaxonomyId": "1237626", "organism": "Plasmodium inui San Antonio 1", @@ -3428,12 +3429,12 @@ "strain": "San Antonio 1", "supercontigs": 323, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000524495.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/524/515/GCA_000524515.1/genes/GCA_000524515.1_Plas_vinc_pett_CR_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000524515.1", "ncbiTaxonomyId": "138298", "organism": "Plasmodium vinckei petteri strain CR", @@ -3441,12 +3442,12 @@ "strain": "petteri strain CR", "supercontigs": 66, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000524515.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/524/515/GCA_000524515.1/genes/GCA_000524515.1_Plas_vinc_pett_CR_V1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000585515.1", "ncbiTaxonomyId": "1182544", "organism": "Cladophialophora yegresii CBS 114405", @@ -3454,12 +3455,12 @@ "strain": "CBS 114405", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000585535.1", "ncbiTaxonomyId": "1182543", "organism": "Cladophialophora psammophila CBS 110553", @@ -3467,12 +3468,12 @@ "strain": "CBS 110553", "supercontigs": 123, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1156, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000648675.3", "ncbiTaxonomyId": "79782", "organism": "Cimex lectularius Harlan", @@ -3480,12 +3481,12 @@ "strain": "Harlan", "supercontigs": 417, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000648675.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/735/GCA_000671735.1/genes/GCA_000671735.1_Glossina_fuscipes-3.0.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000671735.1", "ncbiTaxonomyId": "201502", "organism": "Glossina fuscipes IAEA", @@ -3493,12 +3494,12 @@ "strain": "IAEA", "supercontigs": 2395, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671735.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/735/GCA_000671735.1/genes/GCA_000671735.1_Glossina_fuscipes-3.0.2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/755/GCA_000671755.1/genes/GCA_000671755.1_Glossina_brevipalpis_1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000671755.1", "ncbiTaxonomyId": "37001", "organism": "Glossina brevipalpis IAEA", @@ -3506,12 +3507,12 @@ "strain": "IAEA", "supercontigs": 1651, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/755/GCA_000671755.1/genes/GCA_000671755.1_Glossina_brevipalpis_1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/715/GCA_000688715.1/genes/GCA_000688715.1_Glossina_pallidipes-1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000688715.1", "ncbiTaxonomyId": "7398", "organism": "Glossina pallidipes IAEA", @@ -3519,12 +3520,12 @@ "strain": "IAEA", "supercontigs": 1726, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688715.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/715/GCA_000688715.1/genes/GCA_000688715.1_Glossina_pallidipes-1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/735/GCA_000688735.1/genes/GCA_000688735.1_Glossina_austeni-1.0.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000688735.1", "ncbiTaxonomyId": "7395", "organism": "Glossina austeni TTRI", @@ -3532,12 +3533,12 @@ "strain": "TTRI", "supercontigs": 2205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688735.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/735/GCA_000688735.1/genes/GCA_000688735.1_Glossina_austeni-1.0.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 2871, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000691245.1", "ncbiTaxonomyId": "71804", "organism": "Trypanosoma grayi ANR4", @@ -3545,12 +3546,12 @@ "strain": "ANR4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691245.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000691945.2", "ncbiTaxonomyId": "1133968", "organism": "Babesia microti strain RI", @@ -3558,12 +3559,12 @@ "strain": "strain RI", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691945.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/697/685/GCA_000697685.1/genes/GCA_000697685.1_PleosPC15_2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000697685.1", "ncbiTaxonomyId": "1137138", "organism": "Pleurotus ostreatus PC15", @@ -3571,12 +3572,12 @@ "strain": "PC15", "supercontigs": 12, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000697685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/697/685/GCA_000697685.1/genes/GCA_000697685.1_PleosPC15_2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000709005.1", "ncbiTaxonomyId": "54757", "organism": "Plasmodium vinckei vinckei strain vinckei", @@ -3584,12 +3585,12 @@ "strain": "vinckei strain vinckei", "supercontigs": 49, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000709125.1", "ncbiTaxonomyId": "1182545", "organism": "Exophiala aquamarina CBS 119918", @@ -3597,12 +3598,12 @@ "strain": "CBS 119918", "supercontigs": 151, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/445/GCA_000723445.1/genes/GCA_000723445.1_BBBOND_0001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000723445.1", "ncbiTaxonomyId": "5866", "organism": "Babesia bigemina strain BOND", @@ -3610,12 +3611,12 @@ "strain": "strain BOND", "supercontigs": 478, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723445.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/445/GCA_000723445.1/genes/GCA_000723445.1_BBBOND_0001.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/665/GCA_000723665.1/genes/GCA_000723665.1_454Minimus.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000723665.1", "ncbiTaxonomyId": "1263082", "organism": "Lichtheimia corymbifera JMRC:FSU:9682", @@ -3623,12 +3624,12 @@ "strain": "JMRC:FSU:9682", "supercontigs": 209, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/665/GCA_000723665.1/genes/GCA_000723665.1_454Minimus.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 356, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000723685.1", "ncbiTaxonomyId": "5854", "organism": "Plasmodium reichenowi CDC", @@ -3636,12 +3637,12 @@ "strain": "CDC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000723685.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 701, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/727/475/GCA_000727475.1/genes/GCA_000727475.1_ASM72747v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000727475.1", "ncbiTaxonomyId": "42890", "organism": "Sarcocystis neurona SN3", @@ -3649,12 +3650,12 @@ "strain": "SN3", "supercontigs": 171, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000727475.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/727/475/GCA_000727475.1/genes/GCA_000727475.1_ASM72747v1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 176, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000732125.1", "ncbiTaxonomyId": "563466", "organism": "Scedosporium apiospermum IHEM 14462", @@ -3662,12 +3663,12 @@ "strain": "IHEM 14462", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000732125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/732/565/GCA_000732565.1/genes/GCA_000732565.1_S40293v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000732565.1", "ncbiTaxonomyId": "1280524", "organism": "Stachybotrys chartarum IBT 40293", @@ -3675,12 +3676,12 @@ "strain": "IBT 40293", "supercontigs": 2342, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000732565.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/732/565/GCA_000732565.1/genes/GCA_000732565.1_S40293v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000738915.1", "ncbiTaxonomyId": "1913371", "organism": "Nematocida ausubeli ERTm6", @@ -3688,12 +3689,12 @@ "strain": "ERTm6", "supercontigs": 22, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000738915.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000740895.1", "ncbiTaxonomyId": "869250", "organism": "Theileria orientalis strain Shintoku", @@ -3701,12 +3702,12 @@ "strain": "strain Shintoku", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000740895.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 35, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000755165.1", "ncbiTaxonomyId": "5679", "organism": "Leishmania panamensis strain MHOM/PA/94/PSC-1", @@ -3714,12 +3715,12 @@ "strain": "strain MHOM/PA/94/PSC-1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000755165.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000760515.2", "ncbiTaxonomyId": "1485682", "organism": "Mitosporidium daphniae UGP3", @@ -3727,12 +3728,12 @@ "strain": "UGP3", "supercontigs": 610, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000760515.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 2297, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000769155.2", "ncbiTaxonomyId": "88456", "organism": "Cyclospora cayetanensis strain CHN_HEN01", @@ -3740,12 +3741,12 @@ "strain": "strain CHN_HEN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000769155.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/769/735/GCA_000769735.1/genes/GCA_000769735.1_ASM76973v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000769735.1", "ncbiTaxonomyId": "27334", "organism": "Penicillium expansum d1", @@ -3753,12 +3754,12 @@ "strain": "d1", "supercontigs": 270, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000769735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/769/735/GCA_000769735.1/genes/GCA_000769735.1_ASM76973v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 15, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000803265.1", "ncbiTaxonomyId": "1354746", "organism": "Ordospora colligata OC4", @@ -3766,12 +3767,12 @@ "strain": "OC4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000803265.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 78, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/804/495/GCA_000804495.1/genes/GCA_000804495.1_ASM80449v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000804495.1", "ncbiTaxonomyId": "237895", "organism": "Cryptosporidium hominis 37999", @@ -3779,12 +3780,12 @@ "strain": "37999", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000804495.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/804/495/GCA_000804495.1/genes/GCA_000804495.1_ASM80449v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/814/975/GCA_000814975.1/genes/GCA_000814975.1_MAN_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000814975.1", "ncbiTaxonomyId": "1276135", "organism": "Metarhizium anisopliae ARSEF 549", @@ -3792,12 +3793,12 @@ "strain": "ARSEF 549", "supercontigs": 74, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000814975.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/814/975/GCA_000814975.1/genes/GCA_000814975.1_MAN_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/818/775/GCA_000818775.1/genes/GCA_000818775.1_Glossina_palpalis_gambiensis-2.0.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000818775.1", "ncbiTaxonomyId": "67801", "organism": "Glossina palpalis IAEA", @@ -3805,12 +3806,12 @@ "strain": "IAEA", "supercontigs": 3926, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000818775.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/818/775/GCA_000818775.1/genes/GCA_000818775.1_Glossina_palpalis_gambiensis-2.0.1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 12, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000820605.1", "ncbiTaxonomyId": "1398154", "organism": "Sporothrix brasiliensis 5110", @@ -3818,12 +3819,12 @@ "strain": "5110", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000820605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/245/GCA_000826245.1/genes/GCA_000826245.1_Acanthamoeba_astronyxis.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826245.1", "ncbiTaxonomyId": "65658", "organism": "Acanthamoeba astronyxis Unknown", @@ -3831,12 +3832,12 @@ "strain": "Unknown", "supercontigs": 98248, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826245.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/245/GCA_000826245.1/genes/GCA_000826245.1_Acanthamoeba_astronyxis.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/265/GCA_000826265.1/genes/GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826265.1", "ncbiTaxonomyId": "43142", "organism": "Acanthamoeba culbertsoni A1", @@ -3844,12 +3845,12 @@ "strain": "A1", "supercontigs": 72411, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826265.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/265/GCA_000826265.1/genes/GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/285/GCA_000826285.1/genes/GCA_000826285.1_Acanthamoeba_lenticulata.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826285.1", "ncbiTaxonomyId": "29196", "organism": "Acanthamoeba lenticulata PD2S", @@ -3857,12 +3858,12 @@ "strain": "PD2S", "supercontigs": 79048, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826285.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/285/GCA_000826285.1/genes/GCA_000826285.1_Acanthamoeba_lenticulata.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/305/GCA_000826305.1/genes/GCA_000826305.1_Acanthamoeba_healyi.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826305.1", "ncbiTaxonomyId": "65661", "organism": "Acanthamoeba palestinensis Reich", @@ -3870,12 +3871,12 @@ "strain": "Reich", "supercontigs": 26188, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826305.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/305/GCA_000826305.1/genes/GCA_000826305.1_Acanthamoeba_healyi.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/325/GCA_000826325.1/genes/GCA_000826325.1_Acanthamoeba_palestinensis.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826325.1", "ncbiTaxonomyId": "28015", "organism": "Acanthamoeba triangularis SH621", @@ -3883,12 +3884,12 @@ "strain": "SH621", "supercontigs": 56742, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826325.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/325/GCA_000826325.1/genes/GCA_000826325.1_Acanthamoeba_palestinensis.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/345/GCA_000826345.1/genes/GCA_000826345.1_Acanthamoeba_polyphaga.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826345.1", "ncbiTaxonomyId": "5757", "organism": "Acanthamoeba sp T4b-type", @@ -3896,12 +3897,12 @@ "strain": "T4B-type", "supercontigs": 224482, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826345.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/345/GCA_000826345.1/genes/GCA_000826345.1_Acanthamoeba_polyphaga.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/365/GCA_000826365.1/genes/GCA_000826365.1_Acanthamoeba_royreba.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826365.1", "ncbiTaxonomyId": "32600", "organism": "Acanthamoeba sp Incertae sedis", @@ -3909,12 +3910,12 @@ "strain": "Incertae_sedis", "supercontigs": 24098, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826365.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/365/GCA_000826365.1/genes/GCA_000826365.1_Acanthamoeba_royreba.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/385/GCA_000826385.1/genes/GCA_000826385.1_Acanthamoeba_rhysodes.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826385.1", "ncbiTaxonomyId": "32599", "organism": "Acanthamoeba rhysodes Singh", @@ -3922,12 +3923,12 @@ "strain": "Singh", "supercontigs": 62836, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826385.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/385/GCA_000826385.1/genes/GCA_000826385.1_Acanthamoeba_rhysodes.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/425/GCA_000826425.1/genes/GCA_000826425.1_Acanthamoeba_lugdunensis.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826425.1", "ncbiTaxonomyId": "61605", "organism": "Acanthamoeba lugdunensis L3a", @@ -3935,12 +3936,12 @@ "strain": "L3a", "supercontigs": 67459, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826425.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/425/GCA_000826425.1/genes/GCA_000826425.1_Acanthamoeba_lugdunensis.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/445/GCA_000826445.1/genes/GCA_000826445.1_Acanthamoeba_quina.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826445.1", "ncbiTaxonomyId": "211522", "organism": "Acanthamoeba quina Vil3", @@ -3948,12 +3949,12 @@ "strain": "Vil3", "supercontigs": 60490, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826445.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/445/GCA_000826445.1/genes/GCA_000826445.1_Acanthamoeba_quina.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/465/GCA_000826465.1/genes/GCA_000826465.1_Acanthamoeba_mauritaniensis.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826465.1", "ncbiTaxonomyId": "196912", "organism": "Acanthamoeba mauritaniensis 1652", @@ -3961,12 +3962,12 @@ "strain": "1652", "supercontigs": 67233, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826465.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/465/GCA_000826465.1/genes/GCA_000826465.1_Acanthamoeba_mauritaniensis.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/485/GCA_000826485.1/genes/GCA_000826485.1_Acanthamoeba_castellanii.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826485.1", "ncbiTaxonomyId": "5755", "organism": "Acanthamoeba castellanii Ma", @@ -3974,12 +3975,12 @@ "strain": "Ma", "supercontigs": 221748, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826485.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/485/GCA_000826485.1/genes/GCA_000826485.1_Acanthamoeba_castellanii.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/505/GCA_000826505.1/genes/GCA_000826505.1_Acanthamoeba_pearcei.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000826505.1", "ncbiTaxonomyId": "65662", "organism": "Acanthamoeba sp Galka", @@ -3987,12 +3988,12 @@ "strain": "Galka", "supercontigs": 224137, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826505.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/505/GCA_000826505.1/genes/GCA_000826505.1_Acanthamoeba_pearcei.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/828/355/GCA_000828355.1/genes/GCA_000828355.1_SarSca1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000828355.1", "ncbiTaxonomyId": "52283", "organism": "Sarcoptes scabiei Arlian", @@ -4000,12 +4001,12 @@ "strain": "Arlian", "supercontigs": 18859, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000828355.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/828/355/GCA_000828355.1/genes/GCA_000828355.1_SarSca1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 853, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/831/705/GCA_000831705.1/genes/GCA_000831705.1_ASM83170v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000831705.1", "ncbiTaxonomyId": "1603071", "organism": "Cryptosporidium sp. chipmunk LX-2015", @@ -4013,12 +4014,12 @@ "strain": "chipmunk LX-2015", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000831705.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/831/705/GCA_000831705.1/genes/GCA_000831705.1_ASM83170v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000835455.1", "ncbiTaxonomyId": "1442368", "organism": "Fonsecaea pedrosoi CBS 271.37", @@ -4026,12 +4027,12 @@ "strain": "CBS 271.37", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835455.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000835475.1", "ncbiTaxonomyId": "1442370", "organism": "Cladophialophora bantiana CBS 173.52", @@ -4039,12 +4040,12 @@ "strain": "CBS 173.52", "supercontigs": 60, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000835495.1", "ncbiTaxonomyId": "569365", "organism": "Cladophialophora immunda strain CBS 83496", @@ -4052,12 +4053,12 @@ "strain": "strain CBS 83496", "supercontigs": 277, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000835515.1", "ncbiTaxonomyId": "215243", "organism": "Exophiala oligosperma strain CBS 72588", @@ -4065,12 +4066,12 @@ "strain": "strain CBS 72588", "supercontigs": 143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000835555.1", "ncbiTaxonomyId": "1442369", "organism": "Rhinocladiella mackenziei CBS 650.93", @@ -4078,12 +4079,12 @@ "strain": "CBS 650.93", "supercontigs": 17, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/835/745/GCA_000835745.1/genes/GCA_000835745.1_Cryp_gatt_EJB2_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000835745.1", "ncbiTaxonomyId": "1296103", "organism": "Cryptococcus gattii EJB2", @@ -4091,12 +4092,12 @@ "strain": "EJB2", "supercontigs": 282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000835745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/835/745/GCA_000835745.1/genes/GCA_000835745.1_Cryp_gatt_EJB2_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000836115.1", "ncbiTaxonomyId": "91928", "organism": "Exophiala spinifera CBS 89968", @@ -4104,12 +4105,12 @@ "strain": "CBS 89968", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000836275.1", "ncbiTaxonomyId": "212818", "organism": "Exophiala mesophila strain CBS 40295", @@ -4117,12 +4118,12 @@ "strain": "strain CBS 40295", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836275.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000836295.1", "ncbiTaxonomyId": "253628", "organism": "Verruconis gallopava strain CBS 43764", @@ -4130,12 +4131,12 @@ "strain": "strain CBS 43764", "supercontigs": 367, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000836435.1", "ncbiTaxonomyId": "1442371", "organism": "Fonsecaea multimorphosa CBS 102226", @@ -4143,12 +4144,12 @@ "strain": "CBS 102226", "supercontigs": 67, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836435.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/855/695/GCA_000855695.1/genes/GCA_000855695.1_Cryp_gatt_CA1873_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000855695.1", "ncbiTaxonomyId": "1296111", "organism": "Cryptococcus gattii CA1873", @@ -4156,12 +4157,12 @@ "strain": "CA1873", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000855695.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/855/695/GCA_000855695.1/genes/GCA_000855695.1_Cryp_gatt_CA1873_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/875/885/GCA_000875885.1/genes/GCA_000875885.1_ASM87588v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000875885.1", "ncbiTaxonomyId": "42890", "organism": "Sarcocystis neurona SO SN1", @@ -4169,12 +4170,12 @@ "strain": "SO SN1", "supercontigs": 3066, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000875885.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/875/885/GCA_000875885.1/genes/GCA_000875885.1_ASM87588v1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/935/105/GCA_000935105.1/genes/GCA_000935105.1_Cryp_gatt_NT-10_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000935105.1", "ncbiTaxonomyId": "1296108", "organism": "Cryptococcus gattii NT-10", @@ -4182,12 +4183,12 @@ "strain": "NT10", "supercontigs": 226, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000935105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/935/105/GCA_000935105.1/genes/GCA_000935105.1_Cryp_gatt_NT-10_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000956335.1", "ncbiTaxonomyId": "5857", "organism": "Plasmodium fragile strain nilgiri", @@ -4195,12 +4196,12 @@ "strain": "strain nilgiri", "supercontigs": 247, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000956335.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 15, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/961/545/GCA_000961545.1/genes/GCA_000961545.1_S_schenckii_v1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCA_000961545.1", "ncbiTaxonomyId": "1397361", "organism": "Sporothrix schenckii 1099-18", @@ -4208,12 +4209,12 @@ "strain": "1099-18", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000961545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/961/545/GCA_000961545.1/genes/GCA_000961545.1_S_schenckii_v1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/966/635/GCA_000966635.1/genes/GCA_000966635.1_Fus_gra_233423_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000966635.1", "ncbiTaxonomyId": "5518", "organism": "Fusarium graminearum DAOM 233423", @@ -4221,12 +4222,12 @@ "strain": "DAOM 233423", "supercontigs": 869, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000966635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/966/635/GCA_000966635.1/genes/GCA_000966635.1_Fus_gra_233423_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/973/045/GCA_000973045.2/genes/GCA_000973045.2_ASM97304v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_000973045.2", "ncbiTaxonomyId": "34613", "organism": "Ixodes ricinus Charles River", @@ -4234,12 +4235,12 @@ "strain": "Charles River", "supercontigs": 204516, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000973045.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/973/045/GCA_000973045.2/genes/GCA_000973045.2_ASM97304v2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 536, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_000988165.1", "ncbiTaxonomyId": "40302", "organism": "Nosema ceranae strain PA08_1199", @@ -4247,12 +4248,12 @@ "strain": "strain PA08_1199", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000988165.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/008/285/GCA_001008285.1/genes/GCA_001008285.1_ASM100828v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001008285.1", "ncbiTaxonomyId": "1247875", "organism": "Emmonsia crescens UAMH 3008", @@ -4260,12 +4261,12 @@ "strain": "UAMH 3008", "supercontigs": 1734, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001008285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/008/285/GCA_001008285.1/genes/GCA_001008285.1_ASM100828v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/015/335/GCA_001015335.1/genes/GCA_001015335.1_Stomoxys_calcitrans-1.0.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001015335.1", "ncbiTaxonomyId": "35570", "organism": "Stomoxys calcitrans USDA", @@ -4273,12 +4274,12 @@ "strain": "USDA", "supercontigs": 12042, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001015335.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/015/335/GCA_001015335.1/genes/GCA_001015335.1_Stomoxys_calcitrans-1.0.1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/435/GCA_001077435.1/genes/GCA_001077435.1_ASM107743v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001077435.1", "ncbiTaxonomyId": "37546", "organism": "Glossina morsitans Yale", @@ -4286,12 +4287,12 @@ "strain": "Yale", "supercontigs": 13807, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077435.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/435/GCA_001077435.1/genes/GCA_001077435.1_ASM107743v1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/455/GCA_001077455.2/genes/GCA_001077455.2_ASM107745v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001077455.2", "ncbiTaxonomyId": "32595", "organism": "Babesia divergens strain Rouen 1987", @@ -4299,12 +4300,12 @@ "strain": "strain Rouen 1987", "supercontigs": 141, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077455.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/455/GCA_001077455.2/genes/GCA_001077455.2_ASM107745v2.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 15, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/078/035/GCA_001078035.1/genes/GCA_001078035.1_ECIIIL.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001078035.1", "ncbiTaxonomyId": "1355160", "organism": "Encephalitozoon cuniculi EcunIII-L", @@ -4312,12 +4313,12 @@ "strain": "EcunIII-L", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001078035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/078/035/GCA_001078035.1/genes/GCA_001078035.1_ECIIIL.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/179/505/GCA_001179505.1/genes/GCA_001179505.1_Vbrassicaformis.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001179505.1", "ncbiTaxonomyId": "1169540", "organism": "Vitrella brassicaformis CCMP3155", @@ -4325,12 +4326,12 @@ "strain": "CCMP3155", "supercontigs": 1064, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001179505.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/179/505/GCA_001179505.1/genes/GCA_001179505.1_Vbrassicaformis.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/185/145/GCA_001185145.1/genes/GCA_001185145.1_ASM118514v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001185145.1", "ncbiTaxonomyId": "66527", "organism": "Balamuthia mandrillaris CDC-V039", @@ -4338,12 +4339,12 @@ "strain": "CDC-V039", "supercontigs": 1604, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001185145.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/185/145/GCA_001185145.1/genes/GCA_001185145.1_ASM118514v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/189/475/GCA_001189475.1/genes/GCA_001189475.1_ASM118947v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001189475.1", "ncbiTaxonomyId": "498019", "organism": "Candida auris strain 6684", @@ -4351,12 +4352,12 @@ "strain": "6684", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001189475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/189/475/GCA_001189475.1/genes/GCA_001189475.1_ASM118947v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/262/475/GCA_001262475.1/genes/GCA_001262475.1_ASM126247v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001262475.1", "ncbiTaxonomyId": "66527", "organism": "Balamuthia mandrillaris strain 2046", @@ -4364,12 +4365,12 @@ "strain": "strain 2046", "supercontigs": 14699, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001262475.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/262/475/GCA_001262475.1/genes/GCA_001262475.1_ASM126247v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/263/375/GCA_001263375.1/genes/GCA_001263375.1_ASM126337v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001263375.1", "ncbiTaxonomyId": "27349", "organism": "Puccinia sorghi strain RO10H11247", @@ -4377,12 +4378,12 @@ "strain": "strain RO10H11247", "supercontigs": 15715, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001263375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/263/375/GCA_001263375.1/genes/GCA_001263375.1_ASM126337v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/275/765/GCA_001275765.2/genes/GCA_001275765.2_ASM127576v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001275765.2", "ncbiTaxonomyId": "100816", "organism": "Madurella mycetomatis mm55", @@ -4390,12 +4391,12 @@ "strain": "mm55", "supercontigs": 804, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001275765.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/275/765/GCA_001275765.2/genes/GCA_001275765.2_ASM127576v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001278385.1", "ncbiTaxonomyId": "77020", "organism": "Malassezia pachydermatis CBS 1879", @@ -4403,12 +4404,12 @@ "strain": "CBS 1879", "supercontigs": 91, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001278385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 35, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001293395.1", "ncbiTaxonomyId": "157538", "organism": "Leptomonas pyrrhocoris H10", @@ -4416,12 +4417,12 @@ "strain": "H10", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001293395.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 1222, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/299/535/GCA_001299535.1/genes/GCA_001299535.1_ASM129953v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001299535.1", "ncbiTaxonomyId": "5684", "organism": "Leptomonas seymouri ATCC 30220", @@ -4429,12 +4430,12 @@ "strain": "ATCC 30220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001299535.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/299/535/GCA_001299535.1/genes/GCA_001299535.1_ASM129953v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 4851, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/925/GCA_001430925.1/genes/GCA_001430925.1_ASM143092v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001430925.1", "ncbiTaxonomyId": "166112", "organism": "Byssoonygena ceratinophila isolate UAMH 5669", @@ -4442,12 +4443,12 @@ "strain": "isolate UAMH 5669", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/925/GCA_001430925.1/genes/GCA_001430925.1_ASM143092v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 3075, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/935/GCA_001430935.1/genes/GCA_001430935.1_ASM143093v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001430935.1", "ncbiTaxonomyId": "2074759", "organism": "Amauroascus mutatus isolate UAMH 3576", @@ -4455,12 +4456,12 @@ "strain": "isolate UAMH 3576", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430935.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/935/GCA_001430935.1/genes/GCA_001430935.1_ASM143093v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 3481, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/945/GCA_001430945.1/genes/GCA_001430945.1_ASM143094v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001430945.1", "ncbiTaxonomyId": "89421", "organism": "Amauroascus niger isolate UAMH 3544", @@ -4468,12 +4469,12 @@ "strain": "isolate UAMH 3544", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/945/GCA_001430945.1/genes/GCA_001430945.1_ASM143094v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 2724, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/955/GCA_001430955.1/genes/GCA_001430955.1_ASM143095v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001430955.1", "ncbiTaxonomyId": "264361", "organism": "Chrysosporium queenslandicum isolate CBS 280.77", @@ -4481,12 +4482,12 @@ "strain": "isolate CBS 280.77", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/955/GCA_001430955.1/genes/GCA_001430955.1_ASM143095v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1603, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/432/165/GCA_001432165.1/genes/GCA_001432165.1_ASM143216v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001432165.1", "ncbiTaxonomyId": "146866", "organism": "Pseudoloma neurophilia strain MK1", @@ -4494,12 +4495,12 @@ "strain": "strain MK1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001432165.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/432/165/GCA_001432165.1/genes/GCA_001432165.1_ASM143216v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 834, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/444/555/GCA_001444555.1/genes/GCA_001444555.1_ASM144455v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001444555.1", "ncbiTaxonomyId": "100951", "organism": "Naganishia albida NRRL Y-1402", @@ -4507,12 +4508,12 @@ "strain": "NRRL Y-1402", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001444555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/444/555/GCA_001444555.1/genes/GCA_001444555.1_ASM144455v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/445/615/GCA_001445615.2/genes/GCA_001445615.2_Alt_assembly01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001445615.2", "ncbiTaxonomyId": "293939", "organism": "Aspergillus lentulus strain IFM 54703", @@ -4520,12 +4521,12 @@ "strain": "strain IFM 54703", "supercontigs": 12, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001445615.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/445/615/GCA_001445615.2/genes/GCA_001445615.2_Alt_assembly01.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001447935.2", "ncbiTaxonomyId": "58627", "organism": "Debaryomyces fabryi CBS 789", @@ -4533,12 +4534,12 @@ "strain": "CBS 789", "supercontigs": 534, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001447935.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/457/755/GCA_001457755.2/genes/GCA_001457755.2_Trypanosoma_equiperdum_OVI_V2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001457755.2", "ncbiTaxonomyId": "5694", "organism": "Trypanosoma equiperdum OVI", @@ -4546,12 +4547,12 @@ "strain": "OVI", "supercontigs": 2026, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001457755.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/457/755/GCA_001457755.2/genes/GCA_001457755.2_Trypanosoma_equiperdum_OVI_V2.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/460/835/GCA_001460835.1/genes/GCA_001460835.1_BSAL.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001460835.1", "ncbiTaxonomyId": "75058", "organism": "Bodo saltans strain Lake Konstanz", @@ -4559,12 +4560,12 @@ "strain": "strain Lake Konstanz", "supercontigs": 2256, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001460835.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/460/835/GCA_001460835.1/genes/GCA_001460835.1_BSAL.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001477535.1", "ncbiTaxonomyId": "1408657", "organism": "Pneumocystis jirovecii RU7", @@ -4572,12 +4573,12 @@ "strain": "RU7", "supercontigs": 70, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 53, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/483/515/GCA_001483515.1/genes/GCA_001483515.1_ASM148351v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001483515.1", "ncbiTaxonomyId": "237895", "organism": "Cryptosporidium hominis isolate 30976", @@ -4585,12 +4586,12 @@ "strain": "isolate 30976", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001483515.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/483/515/GCA_001483515.1/genes/GCA_001483515.1_ASM148351v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 1139, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/493/575/GCA_001493575.1/genes/GCA_001493575.1_GIAS175.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001493575.1", "ncbiTaxonomyId": "941442", "organism": "Giardia assemblage A isolate AS175", @@ -4598,12 +4599,12 @@ "strain": "AS175", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001493575.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/493/575/GCA_001493575.1/genes/GCA_001493575.1_GIAS175.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/543/975/GCA_001543975.1/genes/GCA_001543975.1_G_duodenalis_AssB_BAH15c1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001543975.1", "ncbiTaxonomyId": "1394984", "organism": "Giardia Assemblage B isolate BAH15c1", @@ -4611,12 +4612,12 @@ "strain": "isolate BAH15c1", "supercontigs": 508, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001543975.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/543/975/GCA_001543975.1/genes/GCA_001543975.1_G_duodenalis_AssB_BAH15c1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 11196, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/125/GCA_001593125.1/genes/GCA_001593125.1_ASM159312v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593125.1", "ncbiTaxonomyId": "588596", "organism": "Rhizophagus irregularis A1 (DAOM-664342)", @@ -4624,12 +4625,12 @@ "strain": "A1 (DAOM-664342)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/125/GCA_001593125.1/genes/GCA_001593125.1_ASM159312v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 441, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/265/GCA_001593265.1/genes/GCA_001593265.1_ToxRH1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593265.1", "ncbiTaxonomyId": "383379", "organism": "Toxoplasma gondii RH 2016", @@ -4637,12 +4638,12 @@ "strain": "RH 2016", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593265.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/265/GCA_001593265.1/genes/GCA_001593265.1_ToxRH1.0.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 57, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/445/GCA_001593445.1/genes/GCA_001593445.1_CryMelUKMEL1-1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593445.1", "ncbiTaxonomyId": "93969", "organism": "Cryptosporidium meleagridis strain UKMEL1", @@ -4650,12 +4651,12 @@ "strain": "strain UKMEL1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593445.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/445/GCA_001593445.1/genes/GCA_001593445.1_CryMelUKMEL1-1.0.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 153, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/455/GCA_001593455.1/genes/GCA_001593455.1_CryBaiTAMU-09Q1-1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593455.1", "ncbiTaxonomyId": "27987", "organism": "Cryptosporidium baileyi TAMU-09Q1", @@ -4663,12 +4664,12 @@ "strain": "TAMU-09Q1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593455.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/455/GCA_001593455.1/genes/GCA_001593455.1_CryBaiTAMU-09Q1-1.0.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 119, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/465/GCA_001593465.1/genes/GCA_001593465.1_CryHomTU502-1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593465.1", "ncbiTaxonomyId": "237895", "organism": "Cryptosporidium hominis isolate TU502_2012", @@ -4676,12 +4677,12 @@ "strain": "isolate TU502_2012", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593465.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/465/GCA_001593465.1/genes/GCA_001593465.1_CryHomTU502-1.0.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 156, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/475/GCA_001593475.1/genes/GCA_001593475.1_CryHomUKH1-1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001593475.1", "ncbiTaxonomyId": "237895", "organism": "Cryptosporidium hominis UKH1", @@ -4689,12 +4690,12 @@ "strain": "UKH1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593475.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/475/GCA_001593475.1/genes/GCA_001593475.1_CryHomUKH1-1.0.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/598/995/GCA_001598995.1/genes/GCA_001598995.1_JCM_9937_assembly_v001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001598995.1", "ncbiTaxonomyId": "82521", "organism": "Apiotrichum montevideense JCM 9937", @@ -4702,12 +4703,12 @@ "strain": "JCM 9937", "supercontigs": 61, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001598995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/598/995/GCA_001598995.1/genes/GCA_001598995.1_JCM_9937_assembly_v001.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/035/GCA_001599035.1/genes/GCA_001599035.1_JCM_9410_assembly_v001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001599035.1", "ncbiTaxonomyId": "63577", "organism": "Trichoderma atroviride strain JCM 9410", @@ -4715,12 +4716,12 @@ "strain": "strain JCM 9410", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/035/GCA_001599035.1/genes/GCA_001599035.1_JCM_9410_assembly_v001.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 74, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/735/GCA_001599735.1/genes/GCA_001599735.1_JCM_2334_assembly_v001.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001599735.1", "ncbiTaxonomyId": "100951", "organism": "Naganishia albida JCM2334", @@ -4728,12 +4729,12 @@ "strain": "JCM2334", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/735/GCA_001599735.1/genes/GCA_001599735.1_JCM_2334_assembly_v001.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 818, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001602025.1", "ncbiTaxonomyId": "647221", "organism": "Plasmodium gaboni strain SY75", @@ -4741,12 +4742,12 @@ "strain": "strain SY75", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001602025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/625/125/GCA_001625125.1/genes/GCA_001625125.1_ASM162512v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001625125.1", "ncbiTaxonomyId": "707206", "organism": "Haemoproteus tartakovskyi strain SISKIN1", @@ -4754,12 +4755,12 @@ "strain": "strain SISKIN1", "supercontigs": 2982, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001625125.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/625/125/GCA_001625125.1/genes/GCA_001625125.1_ASM162512v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/636/715/GCA_001636715.1/genes/GCA_001636715.1_AAP_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001636715.1", "ncbiTaxonomyId": "392613", "organism": "Ascosphaera apis ARSEF 7405", @@ -4767,12 +4768,12 @@ "strain": "ARSEF 7405", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001636715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/636/715/GCA_001636715.1/genes/GCA_001636715.1_AAP_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/638/945/GCA_001638945.1/genes/GCA_001638945.1_Mucci2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001638945.1", "ncbiTaxonomyId": "747725", "organism": "Mucor lusitanicus CBS 277.49", @@ -4780,12 +4781,12 @@ "strain": "CBS 277.49", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001638945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/638/945/GCA_001638945.1/genes/GCA_001638945.1_Mucci2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001638985.2", "ncbiTaxonomyId": "763407", "organism": "Phycomyces blakesleeanus NRRL 1555(-)", @@ -4793,12 +4794,12 @@ "strain": "NRRL 1555(-)", "supercontigs": 80, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001638985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001642055.1", "ncbiTaxonomyId": "5599", "organism": "Alternaria alternata SRC1lrK2f", @@ -4806,12 +4807,12 @@ "strain": "SRC1lrK2f", "supercontigs": 79, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001642055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 40, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/395/GCA_001642395.1/genes/GCA_001642395.1_ASM164239v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001642395.1", "ncbiTaxonomyId": "1805483", "organism": "Nematocida displodere strain JUm2807", @@ -4819,12 +4820,12 @@ "strain": "strain JUm2807", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642395.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/395/GCA_001642395.1/genes/GCA_001642395.1_ASM164239v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/415/GCA_001642415.1/genes/GCA_001642415.1_ASM164241v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001642415.1", "ncbiTaxonomyId": "1805481", "organism": "Nematocida ironsii ERTm5", @@ -4832,12 +4833,12 @@ "strain": "ERTm5", "supercontigs": 186, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642415.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/415/GCA_001642415.1/genes/GCA_001642415.1_ASM164241v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/643/675/GCA_001643675.2/genes/GCA_001643675.2_ASM164367v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001643675.2", "ncbiTaxonomyId": "2049356", "organism": "Monocercomonoides exilis PA203", @@ -4845,12 +4846,12 @@ "strain": "PA203", "supercontigs": 101, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001643675.2", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/643/675/GCA_001643675.2/genes/GCA_001643675.2_ASM164367v2.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 234, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/055/GCA_001650055.1/genes/GCA_001650055.1_ASM165005v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650055.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti strain ATCC 30222", @@ -4858,12 +4859,12 @@ "strain": "strain ATCC 30222", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650055.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/055/GCA_001650055.1/genes/GCA_001650055.1_ASM165005v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 82, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/065/GCA_001650065.1/genes/GCA_001650065.1_ASM165006v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650065.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti strain ATCC PRA-99", @@ -4871,12 +4872,12 @@ "strain": "strain ATCC PRA-99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650065.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/065/GCA_001650065.1/genes/GCA_001650065.1_ASM165006v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 250, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/075/GCA_001650075.1/genes/GCA_001650075.1_ASM165007v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650075.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti strain GreenwichYale_Lab_strain_1", @@ -4884,12 +4885,12 @@ "strain": "strain GreenwichYale_Lab_strain_1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650075.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/075/GCA_001650075.1/genes/GCA_001650075.1_ASM165007v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 140, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/105/GCA_001650105.1/genes/GCA_001650105.1_ASM165010v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650105.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti strain GI", @@ -4897,12 +4898,12 @@ "strain": "strain GI", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650105.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/105/GCA_001650105.1/genes/GCA_001650105.1_ASM165010v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 131, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/135/GCA_001650135.1/genes/GCA_001650135.1_ASM165013v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650135.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti strain Naushon", @@ -4910,12 +4911,12 @@ "strain": "strain Naushon", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650135.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/135/GCA_001650135.1/genes/GCA_001650135.1_ASM165013v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 131, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/145/GCA_001650145.1/genes/GCA_001650145.1_ASM165014v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001650145.1", "ncbiTaxonomyId": "5868", "organism": "Babesia microti Nan_Hs_2011_N11-50", @@ -4923,12 +4924,12 @@ "strain": "Nan_Hs_2011_N11-50", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650145.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/145/GCA_001650145.1/genes/GCA_001650145.1_ASM165014v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/660/665/GCA_001660665.1/genes/GCA_001660665.1_Emmo_afri_EA111.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001660665.1", "ncbiTaxonomyId": "1955775", "organism": "Emergomyces africanus CBS 136260", @@ -4936,12 +4937,12 @@ "strain": "CBS 136260", "supercontigs": 4444, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001660665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/660/665/GCA_001660665.1/genes/GCA_001660665.1_Emmo_afri_EA111.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001672515.1", "ncbiTaxonomyId": "759273", "organism": "Colletotrichum higginsianum IMI 349063", @@ -4949,12 +4950,12 @@ "strain": "IMI 349063", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001672515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001680005.1", "ncbiTaxonomyId": "208452", "organism": "Plasmodium coatneyi Hackeri", @@ -4962,12 +4963,12 @@ "strain": "Hackeri", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001680005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/692/895/GCA_001692895.1/genes/GCA_001692895.1_Cenococcum_geophilum_1.58_v2.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001692895.1", "ncbiTaxonomyId": "794803", "organism": "Cenococcum geophilum 1.58", @@ -4975,12 +4976,12 @@ "strain": "1.58", "supercontigs": 268, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001692895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/692/895/GCA_001692895.1/genes/GCA_001692895.1_Cenococcum_geophilum_1.58_v2.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 22, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/700/775/GCA_001700775.1/genes/GCA_001700775.1_ASM170077v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001700775.1", "ncbiTaxonomyId": "86049", "organism": "Cladophialophora carrionii KSF", @@ -4988,12 +4989,12 @@ "strain": "KSF", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001700775.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/700/775/GCA_001700775.1/genes/GCA_001700775.1_ASM170077v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/717/485/GCA_001717485.1/genes/GCA_001717485.1_ASM171748v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001717485.1", "ncbiTaxonomyId": "573508", "organism": "Aspergillus cristatus GZAAS20.1005", @@ -5001,12 +5002,12 @@ "strain": "GZAAS20.1005", "supercontigs": 68, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001717485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/717/485/GCA_001717485.1/genes/GCA_001717485.1_ASM171748v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/747/055/GCA_001747055.1/genes/GCA_001747055.1_ASM174705v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001747055.1", "ncbiTaxonomyId": "29833", "organism": "Hanseniaspora uvarum strain AWRI3580", @@ -5014,12 +5015,12 @@ "strain": "strain AWRI3580", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001747055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/747/055/GCA_001747055.1/genes/GCA_001747055.1_ASM174705v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/761/485/GCA_001761485.1/genes/GCA_001761485.1_ASM176148v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001761485.1", "ncbiTaxonomyId": "4952", "organism": "Yarrowia lipolytica CLIB89 (W29)", @@ -5027,12 +5028,12 @@ "strain": "CLIB89 (W29)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001761485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/761/485/GCA_001761485.1/genes/GCA_001761485.1_ASM176148v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 16, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/857/865/GCA_001857865.1/genes/GCA_001857865.1_ASM185786v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001857865.1", "ncbiTaxonomyId": "665079", "organism": "Sclerotinia sclerotiorum 1980 UF-70", @@ -5040,12 +5041,12 @@ "strain": "1980 UF-70", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001857865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/857/865/GCA_001857865.1/genes/GCA_001857865.1_ASM185786v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 39, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001865345.1", "ncbiTaxonomyId": "857276", "organism": "Cryptosporidium ubiquitum isolate 39726", @@ -5053,12 +5054,12 @@ "strain": "isolate 39726", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865345.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 135, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001865355.1", "ncbiTaxonomyId": "117008", "organism": "Cryptosporidium andersoni isolate 30847", @@ -5066,12 +5067,12 @@ "strain": "isolate 30847", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865355.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 1727, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/875/675/GCA_001875675.1/genes/GCA_001875675.1_ASM187567v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001875675.1", "ncbiTaxonomyId": "1866961", "organism": "Amphiamblys sp. WSBS2006", @@ -5079,12 +5080,12 @@ "strain": "WSBS2006", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001875675.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/875/675/GCA_001875675.1/genes/GCA_001875675.1_ASM187567v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/805/GCA_001883805.1/genes/GCA_001883805.1_Blas_perc_EI222_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001883805.1", "ncbiTaxonomyId": "1658174", "organism": "Blastomyces percursus strain EI222", @@ -5092,12 +5093,12 @@ "strain": "strain EI222", "supercontigs": 3868, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/805/GCA_001883805.1/genes/GCA_001883805.1_Blas_perc_EI222_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/825/GCA_001883825.1/genes/GCA_001883825.1_Emmo_past_UAMH9510_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001883825.1", "ncbiTaxonomyId": "1447872", "organism": "Emergomyces pasteurianus Ep9510", @@ -5105,12 +5106,12 @@ "strain": "Ep9510", "supercontigs": 1643, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/825/GCA_001883825.1/genes/GCA_001883825.1_Emmo_past_UAMH9510_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/889/945/GCA_001889945.1/genes/GCA_001889945.1_Aspbr1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001889945.1", "ncbiTaxonomyId": "767769", "organism": "Aspergillus brasiliensis CBS 101740", @@ -5118,12 +5119,12 @@ "strain": "CBS 101740", "supercontigs": 103, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001889945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/889/945/GCA_001889945.1/genes/GCA_001889945.1_Aspbr1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890105.1", "ncbiTaxonomyId": "1073090", "organism": "Penicilliopsis zonata CBS 506.65", @@ -5131,12 +5132,12 @@ "strain": "CBS 506.65", "supercontigs": 246, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890125.1", "ncbiTaxonomyId": "1036611", "organism": "Aspergillus versicolor CBS 583.65", @@ -5144,12 +5145,12 @@ "strain": "CBS 583.65", "supercontigs": 51, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/685/GCA_001890685.1/genes/GCA_001890685.1_Aspfo1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001890685.1", "ncbiTaxonomyId": "1137211", "organism": "Aspergillus luchuensis CBS 106.47", @@ -5157,12 +5158,12 @@ "strain": "CBS 106.47", "supercontigs": 100, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/685/GCA_001890685.1/genes/GCA_001890685.1_Aspfo1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890705.1", "ncbiTaxonomyId": "1036612", "organism": "Aspergillus sydowii CBS 593.65", @@ -5170,12 +5171,12 @@ "strain": "CBS 593.65", "supercontigs": 97, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890705.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890725.1", "ncbiTaxonomyId": "1073089", "organism": "Aspergillus wentii DTO 134E9", @@ -5183,12 +5184,12 @@ "strain": "DTO 134E9", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/745/GCA_001890745.1/genes/GCA_001890745.1_Asptu1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001890745.1", "ncbiTaxonomyId": "767770", "organism": "Aspergillus tubingensis CBS 134.48", @@ -5196,12 +5197,12 @@ "strain": "CBS 134.48", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/745/GCA_001890745.1/genes/GCA_001890745.1_Asptu1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890805.1", "ncbiTaxonomyId": "1160497", "organism": "Aspergillus glaucus CBS 516.65", @@ -5209,12 +5210,12 @@ "strain": "CBS 516.65", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_001890905.1", "ncbiTaxonomyId": "690307", "organism": "Aspergillus aculeatus ATCC 16872", @@ -5222,12 +5223,12 @@ "strain": "ATCC 16872", "supercontigs": 660, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890905.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/983/305/GCA_001983305.1/genes/GCA_001983305.1_ASM198330v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001983305.1", "ncbiTaxonomyId": "36022", "organism": "Cyberlindnera fabianii 65", @@ -5235,12 +5236,12 @@ "strain": "65", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001983305.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/983/305/GCA_001983305.1/genes/GCA_001983305.1_ASM198330v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/990/825/GCA_001990825.1/genes/GCA_001990825.1_Aspca3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_001990825.1", "ncbiTaxonomyId": "602072", "organism": "Aspergillus carbonarius ITEM 5010", @@ -5248,12 +5249,12 @@ "strain": "ITEM 5010", "supercontigs": 829, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001990825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/990/825/GCA_001990825.1/genes/GCA_001990825.1_Aspca3.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/006/585/GCA_002006585.1/genes/GCA_002006585.1_ASM200658v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002006585.1", "ncbiTaxonomyId": "431241", "organism": "Trichoderma reesei QM6a 2017", @@ -5261,12 +5262,12 @@ "strain": "QM6a 2017", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002006585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/006/585/GCA_002006585.1/genes/GCA_002006585.1_ASM200658v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 16, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002079055.1", "ncbiTaxonomyId": "27291", "organism": "Saccharomyces paradoxus CBS432", @@ -5274,12 +5275,12 @@ "strain": "CBS432", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002079055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 62, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/081/675/GCA_002081675.1/genes/GCA_002081675.1_ASM208167v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002081675.1", "ncbiTaxonomyId": "646526", "organism": "Enterocytozoon hepatopenaei strain TH1", @@ -5287,12 +5288,12 @@ "strain": "strain TH1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002081675.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/081/675/GCA_002081675.1/genes/GCA_002081675.1_ASM208167v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/083/745/GCA_002083745.1/genes/GCA_002083745.1_Rhimi_ATCC52814_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002083745.1", "ncbiTaxonomyId": "86635", "organism": "Rhizopus microsporus var. microsporus ATCC 52814", @@ -5300,12 +5301,12 @@ "strain": "var. microsporus ATCC 52814", "supercontigs": 560, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002083745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/083/745/GCA_002083745.1/genes/GCA_002083745.1_Rhimi_ATCC52814_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 253, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002087225.1", "ncbiTaxonomyId": "67003", "organism": "Trypanosoma theileri isolate Edinburgh", @@ -5313,12 +5314,12 @@ "strain": "isolate Edinburgh", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002087225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 2344, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/875/GCA_002087875.1/genes/GCA_002087875.1_ASM208787v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002087875.1", "ncbiTaxonomyId": "1081669", "organism": "Hepatospora eriocheir strain canceri", @@ -5326,12 +5327,12 @@ "strain": "strain canceri", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087875.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/875/GCA_002087875.1/genes/GCA_002087875.1_ASM208787v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 1300, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/885/GCA_002087885.1/genes/GCA_002087885.1_ASM208788v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002087885.1", "ncbiTaxonomyId": "1081669", "organism": "Hepatospora eriocheir strain GB1", @@ -5339,12 +5340,12 @@ "strain": "strain GB1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087885.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/885/GCA_002087885.1/genes/GCA_002087885.1_ASM208788v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 537, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/915/GCA_002087915.1/genes/GCA_002087915.1_ASM208791v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002087915.1", "ncbiTaxonomyId": "1081671", "organism": "Enterospora canceri strain GB1", @@ -5352,12 +5353,12 @@ "strain": "strain GB1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087915.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/915/GCA_002087915.1/genes/GCA_002087915.1_ASM208791v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002095265.1", "ncbiTaxonomyId": "462227", "organism": "Babesia sp. Xinjiang Xinjiang", @@ -5365,12 +5366,12 @@ "strain": "Xinjiang", "supercontigs": 215, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002095265.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/110/485/GCA_002110485.1/genes/GCA_002110485.1_ASM211048v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002110485.1", "ncbiTaxonomyId": "1972497", "organism": "Emergomyces orientalis 5z489", @@ -5378,12 +5379,12 @@ "strain": "5z489", "supercontigs": 108, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002110485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/110/485/GCA_002110485.1/genes/GCA_002110485.1_ASM211048v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/127/715/GCA_002127715.1/genes/GCA_002127715.1_HwerPB1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002127715.1", "ncbiTaxonomyId": "1157616", "organism": "Hortaea werneckii EXF-2000", @@ -5391,12 +5392,12 @@ "strain": "EXF-2000", "supercontigs": 628, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002127715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/127/715/GCA_002127715.1/genes/GCA_002127715.1_HwerPB1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/140/095/GCA_002140095.1/genes/GCA_002140095.1_PKNOHv1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002140095.1", "ncbiTaxonomyId": "5850", "organism": "Plasmodium knowlesi strain Malayan Strain Pk1 A", @@ -5404,12 +5405,12 @@ "strain": "strain Malayan Strain Pk1 A", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002140095.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/140/095/GCA_002140095.1/genes/GCA_002140095.1_PKNOHv1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/204/515/GCA_002204515.1/genes/GCA_002204515.1_AaegL5.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002204515.1", "ncbiTaxonomyId": "7159", "organism": "Aedes aegypti LVP_AGWG", @@ -5417,12 +5418,12 @@ "strain": "LVP_AGWG", "supercontigs": 2306, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002204515.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/204/515/GCA_002204515.1/genes/GCA_002204515.1_AaegL5.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/205/GCA_002216205.1/genes/GCA_002216205.1_ASM221620v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002216205.1", "ncbiTaxonomyId": "1396488", "organism": "Cryptococcus neoformans var. neoformans XL280", @@ -5430,12 +5431,12 @@ "strain": "var. neoformans XL280", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216205.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/205/GCA_002216205.1/genes/GCA_002216205.1_ASM221620v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/725/GCA_002216725.1/genes/GCA_002216725.1_ASM221672v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002216725.1", "ncbiTaxonomyId": "178876", "organism": "Cryptococcus neoformans var. grubii KN99", @@ -5443,12 +5444,12 @@ "strain": "var. grubii KN99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/725/GCA_002216725.1/genes/GCA_002216725.1_ASM221672v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/105/GCA_002219105.2/genes/GCA_002219105.2_TcruziDm28cPB1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002219105.2", "ncbiTaxonomyId": "85057", "organism": "Trypanosoma cruzi Dm28c 2017", @@ -5456,12 +5457,12 @@ "strain": "Dm28c 2017", "supercontigs": 1029, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219105.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/105/GCA_002219105.2/genes/GCA_002219105.2_TcruziDm28cPB1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/185/GCA_002219185.1/genes/GCA_002219185.1_ASM221918v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002219185.1", "ncbiTaxonomyId": "5478", "organism": "Nakaseomyces glabratus DSY562", @@ -5469,12 +5470,12 @@ "strain": "DSY562", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/185/GCA_002219185.1/genes/GCA_002219185.1_ASM221918v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/223/825/GCA_002223825.1/genes/GCA_002223825.1_C.hominis.v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002223825.1", "ncbiTaxonomyId": "237895", "organism": "Cryptosporidium hominis UdeA01", @@ -5482,12 +5483,12 @@ "strain": "UdeA01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002223825.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/223/825/GCA_002223825.1/genes/GCA_002223825.1_C.hominis.v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002237265.2", "ncbiTaxonomyId": "41047", "organism": "Aspergillus thermomutatus strain HMR AF 39", @@ -5495,12 +5496,12 @@ "strain": "strain HMR AF 39", "supercontigs": 647, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002237265.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1897, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/247/145/GCA_002247145.1/genes/GCA_002247145.1_Plurivora_assembly_v1.fn.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002247145.1", "ncbiTaxonomyId": "639000", "organism": "Phytophthora plurivora AV1007", @@ -5508,12 +5509,12 @@ "strain": "AV1007", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002247145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/247/145/GCA_002247145.1/genes/GCA_002247145.1_Plurivora_assembly_v1.fn.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 751, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/271/815/GCA_002271815.1/genes/GCA_002271815.1_ASM227181v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002271815.1", "ncbiTaxonomyId": "84963", "organism": "Eimeria falciformis Bayer Haberkorn 1970", @@ -5521,12 +5522,12 @@ "strain": "Bayer Haberkorn 1970", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002271815.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/271/815/GCA_002271815.1/genes/GCA_002271815.1_ASM227181v1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 1624, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/276/285/GCA_002276285.1/genes/GCA_002276285.1_Lprolificans_pilon.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002276285.1", "ncbiTaxonomyId": "41688", "organism": "Lomentospora prolificans JHH-5317", @@ -5534,12 +5535,12 @@ "strain": "JHH-5317", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002276285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/276/285/GCA_002276285.1/genes/GCA_002276285.1_Lprolificans_pilon.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/287/245/GCA_002287245.1/genes/GCA_002287245.1_ASM228724v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002287245.1", "ncbiTaxonomyId": "5692", "organism": "Trypanosoma congolense Tc1/148", @@ -5547,12 +5548,12 @@ "strain": "Tc1/148", "supercontigs": 536, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002287245.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/287/245/GCA_002287245.1/genes/GCA_002287245.1_ASM228724v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 13, "contigs": 172, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002563875.1", "ncbiTaxonomyId": "94643", "organism": "Besnoitia besnoiti strain Bb-Ger1", @@ -5560,12 +5561,12 @@ "strain": "strain Bb-Ger1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002563875.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 14627, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002600585.1", "ncbiTaxonomyId": "483139", "organism": "Cystoisospora suis strain Wien I", @@ -5573,12 +5574,12 @@ "strain": "strain Wien I", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002600585.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 929, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/415/GCA_002749415.1/genes/GCA_002749415.1_ASM274941v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002749415.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Bug2148", @@ -5586,12 +5587,12 @@ "strain": "Bug2148", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749415.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/415/GCA_002749415.1/genes/GCA_002749415.1_ASM274941v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 9821, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/425/GCA_002749425.1/genes/GCA_002749425.1_ASM274942v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002749425.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain Y", @@ -5599,12 +5600,12 @@ "strain": "strain Y", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/425/GCA_002749425.1/genes/GCA_002749425.1_ASM274942v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/535/GCA_002749535.1/genes/GCA_002749535.1_ASM274953v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002749535.1", "ncbiTaxonomyId": "760013", "organism": "Apophysomyces variabilis NCCPF 102052", @@ -5612,12 +5613,12 @@ "strain": "NCCPF 102052", "supercontigs": 411, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/535/GCA_002749535.1/genes/GCA_002749535.1_ASM274953v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/775/015/GCA_002775015.1/genes/GCA_002775015.1_Cand_auris_B11221_V1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002775015.1", "ncbiTaxonomyId": "498019", "organism": "Candida auris strain B11221", @@ -5625,12 +5626,12 @@ "strain": "B11221", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002775015.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/775/015/GCA_002775015.1/genes/GCA_002775015.1_Cand_auris_B11221_V1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 34, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002846915.2", "ncbiTaxonomyId": "1392256", "organism": "Aspergillus ochraceoroseus IBT 24754", @@ -5638,12 +5639,12 @@ "strain": "IBT 24754", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002846915.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 62, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002847465.1", "ncbiTaxonomyId": "1392255", "organism": "Aspergillus novofumigatus IBT 16806", @@ -5651,12 +5652,12 @@ "strain": "IBT 16806", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847465.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 62, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002847485.1", "ncbiTaxonomyId": "1392248", "organism": "Aspergillus campestris IBT 28561", @@ -5664,12 +5665,12 @@ "strain": "IBT 28561", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 37, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002849105.1", "ncbiTaxonomyId": "1392250", "organism": "Aspergillus steynii IBT 23096", @@ -5677,12 +5678,12 @@ "strain": "IBT 23096", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002849105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002892825.2", "ncbiTaxonomyId": "6945", "organism": "Ixodes scapularis ISE6", @@ -5690,12 +5691,12 @@ "strain": "ISE6", "supercontigs": 6476, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002892825.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 91, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002897235.1", "ncbiTaxonomyId": "189622", "organism": "Babesia ovata strain Miyake", @@ -5703,12 +5704,12 @@ "strain": "strain Miyake", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002897235.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 24809, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/911/725/GCA_002911725.1/genes/GCA_002911725.1_ASM291172v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002911725.1", "ncbiTaxonomyId": "4796", "organism": "Phytophthora palmivora var. palmivora strain sbr112.9", @@ -5716,12 +5717,12 @@ "strain": "var. palmivora strain sbr112.9", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002911725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/911/725/GCA_002911725.1/genes/GCA_002911725.1_ASM291172v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 3460, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/914/575/GCA_002914575.1/genes/GCA_002914575.1_ASM291457v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002914575.1", "ncbiTaxonomyId": "41668", "organism": "Entamoeba moshkovskii Laredo", @@ -5729,12 +5730,12 @@ "strain": "Laredo", "supercontigs": 1147, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002914575.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/914/575/GCA_002914575.1/genes/GCA_002914575.1_ASM291457v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/065/GCA_002920065.1/genes/GCA_002920065.1_ASM292006v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002920065.1", "ncbiTaxonomyId": "27350", "organism": "Puccinia striiformis strain 93-210", @@ -5742,12 +5743,12 @@ "strain": "strain 93-210", "supercontigs": 492, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920065.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/065/GCA_002920065.1/genes/GCA_002920065.1_ASM292006v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/205/GCA_002920205.1/genes/GCA_002920205.1_ASM292020v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002920205.1", "ncbiTaxonomyId": "27350", "organism": "Puccinia striiformis 93TX-2", @@ -5755,12 +5756,12 @@ "strain": "93TX-2", "supercontigs": 561, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920205.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/205/GCA_002920205.1/genes/GCA_002920205.1_ASM292020v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1922, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/921/335/GCA_002921335.1/genes/GCA_002921335.1_ASM292133v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_002921335.1", "ncbiTaxonomyId": "1470209", "organism": "Paratrypanosoma confusum CUL13", @@ -5768,12 +5769,12 @@ "strain": "CUL13", "supercontigs": 266, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002921335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/921/335/GCA_002921335.1/genes/GCA_002921335.1_ASM292133v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 11, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002926055.1", "ncbiTaxonomyId": "45357", "organism": "Candida haemulonis B11899", @@ -5781,12 +5782,12 @@ "strain": "B11899", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926055.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 7, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002926085.1", "ncbiTaxonomyId": "1231522", "organism": "Candida duobushaemulonis strain B09383", @@ -5794,12 +5795,12 @@ "strain": "B09383", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926085.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_002954075.1", "ncbiTaxonomyId": "294750", "organism": "Cryptococcus gattii VGII R265", @@ -5807,12 +5808,12 @@ "strain": "R265", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002954075.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/011/985/GCA_003011985.1/genes/GCA_003011985.1_ASM301198v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003011985.1", "ncbiTaxonomyId": "178876", "organism": "Cryptococcus neoformans var. grubii H99 2018", @@ -5820,12 +5821,12 @@ "strain": "var. grubii H99 2018", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003011985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/011/985/GCA_003011985.1/genes/GCA_003011985.1_ASM301198v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 364, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/013/265/GCA_003013265.1/genes/GCA_003013265.1_ASM301326v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003013265.1", "ncbiTaxonomyId": "1068625", "organism": "Trypanosoma congolense IL3000 2019", @@ -5833,12 +5834,12 @@ "strain": "IL3000 2019", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003013265.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/013/265/GCA_003013265.1/genes/GCA_003013265.1_ASM301326v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003013715.2", "ncbiTaxonomyId": "498019", "organism": "Candida auris strain B11220", @@ -5846,12 +5847,12 @@ "strain": "B11220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003013735.1", "ncbiTaxonomyId": "418784", "organism": "Candida pseudohaemulonii strain B12108", @@ -5859,12 +5860,12 @@ "strain": "B12108", "supercontigs": 36, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/014/415/GCA_003014415.1/genes/GCA_003014415.1_Cand_auris_B11243.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003014415.1", "ncbiTaxonomyId": "498019", "organism": "Candida auris strain B11243", @@ -5872,12 +5873,12 @@ "strain": "B11243", "supercontigs": 238, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003014415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/014/415/GCA_003014415.1/genes/GCA_003014415.1_Cand_auris_B11243.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/054/405/GCA_003054405.1/genes/GCA_003054405.1_ASM305440v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003054405.1", "ncbiTaxonomyId": "4909", "organism": "Pichia kudriavzevii strain CBS5147", @@ -5885,12 +5886,12 @@ "strain": "strain CBS5147", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003054405.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/054/405/GCA_003054405.1/genes/GCA_003054405.1_ASM305440v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003054445.1", "ncbiTaxonomyId": "4909", "organism": "Pichia kudriavzevii strain CBS573", @@ -5898,12 +5899,12 @@ "strain": "strain CBS573", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003054445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/118/255/GCA_003118255.1/genes/GCA_003118255.1_ABySS_70bp_45k_152cov_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003118255.1", "ncbiTaxonomyId": "523103", "organism": "Trichophyton mentagrophytes TIMM 2789", @@ -5911,12 +5912,12 @@ "strain": "TIMM 2789", "supercontigs": 16543, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003118255.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/118/255/GCA_003118255.1/genes/GCA_003118255.1_ABySS_70bp_45k_152cov_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 1236, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/095/GCA_003177095.1/genes/GCA_003177095.1_TCC_diploid_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003177095.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi TCC", @@ -5924,12 +5925,12 @@ "strain": "TCC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177095.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/095/GCA_003177095.1/genes/GCA_003177095.1_TCC_diploid_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 636, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/105/GCA_003177105.1/genes/GCA_003177105.1_ASM317710v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003177105.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Dm28c 2018", @@ -5937,12 +5938,12 @@ "strain": "Dm28c 2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177105.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/105/GCA_003177105.1/genes/GCA_003177105.1_ASM317710v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184535.1", "ncbiTaxonomyId": "1448314", "organism": "Aspergillus eucalypticola CBS 122712", @@ -5950,12 +5951,12 @@ "strain": "CBS 122712", "supercontigs": 131, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184545.1", "ncbiTaxonomyId": "1448321", "organism": "Aspergillus heteromorphus CBS 117.55", @@ -5963,12 +5964,12 @@ "strain": "CBS 117.55", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/635/GCA_003184635.1/genes/GCA_003184635.1_Aspscle1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003184635.1", "ncbiTaxonomyId": "1448318", "organism": "Aspergillus sclerotiicarbonarius CBS 121057", @@ -5976,12 +5977,12 @@ "strain": "CBS 121057", "supercontigs": 166, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/635/GCA_003184635.1/genes/GCA_003184635.1_Aspscle1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/645/GCA_003184645.1/genes/GCA_003184645.1_Aspell1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003184645.1", "ncbiTaxonomyId": "1448320", "organism": "Aspergillus ellipticus CBS 707.79", @@ -5989,12 +5990,12 @@ "strain": "CBS 707.79", "supercontigs": 518, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/645/GCA_003184645.1/genes/GCA_003184645.1_Aspell1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184745.1", "ncbiTaxonomyId": "1448315", "organism": "Aspergillus uvarum CBS 121591", @@ -6002,12 +6003,12 @@ "strain": "CBS 121591", "supercontigs": 172, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184825.1", "ncbiTaxonomyId": "1448319", "organism": "Aspergillus fijiensis CBS 313.89", @@ -6015,12 +6016,12 @@ "strain": "CBS 313.89", "supercontigs": 149, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184845.1", "ncbiTaxonomyId": "1448316", "organism": "Aspergillus ibericus CBS 121593", @@ -6028,12 +6029,12 @@ "strain": "CBS 121593", "supercontigs": 116, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184845.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003184865.1", "ncbiTaxonomyId": "1450537", "organism": "Aspergillus homomorphus CBS 101889", @@ -6041,12 +6042,12 @@ "strain": "CBS 101889", "supercontigs": 152, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/287/315/GCA_003287315.1/genes/GCA_003287315.1_Pcac_10300_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003287315.1", "ncbiTaxonomyId": "29920", "organism": "Phytophthora cactorum 10300", @@ -6054,12 +6055,12 @@ "strain": "10300", "supercontigs": 4623, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003287315.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/287/315/GCA_003287315.1/genes/GCA_003287315.1_Pcac_10300_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 9, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003290485.1", "ncbiTaxonomyId": "76775", "organism": "Malassezia restricta KCTC 27527", @@ -6067,12 +6068,12 @@ "strain": "KCTC 27527", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003290485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003324165.2", "ncbiTaxonomyId": "51637", "organism": "Naegleria lovaniensis strain ATCC 30569", @@ -6080,12 +6081,12 @@ "strain": "strain ATCC 30569", "supercontigs": 109, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003324165.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 22, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_003339765.3", "ncbiTaxonomyId": "9544", "organism": "Macaca mulatta isolate AG07107", @@ -6093,12 +6094,12 @@ "strain": "isolate AG07107", "supercontigs": 2916, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003339765.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/344/705/GCA_003344705.1/genes/GCA_003344705.1_Aspni_bvT_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003344705.1", "ncbiTaxonomyId": "1353008", "organism": "Aspergillus niger ATCC 13496", @@ -6106,12 +6107,12 @@ "strain": "ATCC 13496", "supercontigs": 133, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003344705.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/344/705/GCA_003344705.1/genes/GCA_003344705.1_Aspni_bvT_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/402/215/GCA_003402215.1/genes/GCA_003402215.1_PvSY56_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003402215.1", "ncbiTaxonomyId": "5855", "organism": "Plasmodium vivax PvSY56", @@ -6119,12 +6120,12 @@ "strain": "PvSY56", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003402215.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/402/215/GCA_003402215.1/genes/GCA_003402215.1_PvSY56_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/385/GCA_003594385.1/genes/GCA_003594385.1_ASM359438v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594385.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S11", @@ -6132,12 +6133,12 @@ "strain": "strain S11", "supercontigs": 7855, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594385.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/385/GCA_003594385.1/genes/GCA_003594385.1_ASM359438v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/405/GCA_003594405.1/genes/GCA_003594405.1_ASM359440v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594405.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain Ycl4", @@ -6145,12 +6146,12 @@ "strain": "strain Ycl4", "supercontigs": 6664, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594405.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/405/GCA_003594405.1/genes/GCA_003594405.1_ASM359440v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/425/GCA_003594425.1/genes/GCA_003594425.1_ASM359442v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594425.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S23b", @@ -6158,12 +6159,12 @@ "strain": "strain S23b", "supercontigs": 7145, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/425/GCA_003594425.1/genes/GCA_003594425.1_ASM359442v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/445/GCA_003594445.1/genes/GCA_003594445.1_ASM359444v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594445.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S92a", @@ -6171,12 +6172,12 @@ "strain": "strain S92a", "supercontigs": 7134, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594445.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/445/GCA_003594445.1/genes/GCA_003594445.1_ASM359444v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/465/GCA_003594465.1/genes/GCA_003594465.1_ASM359446v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594465.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain Ycl6", @@ -6184,12 +6185,12 @@ "strain": "strain Ycl6", "supercontigs": 6967, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594465.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/465/GCA_003594465.1/genes/GCA_003594465.1_ASM359446v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/485/GCA_003594485.1/genes/GCA_003594485.1_ASM359448v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594485.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain Ycl2", @@ -6197,12 +6198,12 @@ "strain": "strain Ycl2", "supercontigs": 6884, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594485.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/485/GCA_003594485.1/genes/GCA_003594485.1_ASM359448v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/585/GCA_003594585.1/genes/GCA_003594585.1_ASM359458v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594585.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S15", @@ -6210,12 +6211,12 @@ "strain": "strain S15", "supercontigs": 9197, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594585.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/585/GCA_003594585.1/genes/GCA_003594585.1_ASM359458v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/605/GCA_003594605.1/genes/GCA_003594605.1_ASM359460v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594605.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S162a", @@ -6223,12 +6224,12 @@ "strain": "strain S162a", "supercontigs": 8588, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594605.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/605/GCA_003594605.1/genes/GCA_003594605.1_ASM359460v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/705/GCA_003594705.1/genes/GCA_003594705.1_ASM359470v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594705.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S44a", @@ -6236,12 +6237,12 @@ "strain": "strain S44a", "supercontigs": 4971, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594705.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/705/GCA_003594705.1/genes/GCA_003594705.1_ASM359470v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/715/GCA_003594715.1/genes/GCA_003594715.1_ASM359471v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003594715.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain S154a", @@ -6249,12 +6250,12 @@ "strain": "strain S154a", "supercontigs": 6946, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594715.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/715/GCA_003594715.1/genes/GCA_003594715.1_ASM359471v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 9, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/691/605/GCA_003691605.1/genes/GCA_003691605.1_ASM369160v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003691605.1", "ncbiTaxonomyId": "425264", "organism": "Malassezia restricta CBS 7877", @@ -6262,12 +6263,12 @@ "strain": "CBS 7877", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003691605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/691/605/GCA_003691605.1/genes/GCA_003691605.1_ASM369160v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/115/GCA_003709115.1/genes/GCA_003709115.1_ASM370911v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003709115.1", "ncbiTaxonomyId": "646526", "organism": "Enterocytozoon hepatopenaei EHP-ID16", @@ -6275,12 +6276,12 @@ "strain": "EHP-ID16", "supercontigs": 162, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709115.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/115/GCA_003709115.1/genes/GCA_003709115.1_ASM370911v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/865/GCA_003709865.1/genes/GCA_003709865.1_ASM370986v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003709865.1", "ncbiTaxonomyId": "2249419", "organism": "Chaetothyriales sp. CBS 132003", @@ -6288,12 +6289,12 @@ "strain": "CBS 132003", "supercontigs": 118, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/865/GCA_003709865.1/genes/GCA_003709865.1_ASM370986v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/155/GCA_003719155.1/genes/GCA_003719155.1_ASM371915v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003719155.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain CL", @@ -6301,12 +6302,12 @@ "strain": "strain CL", "supercontigs": 7764, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719155.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/155/GCA_003719155.1/genes/GCA_003719155.1_ASM371915v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/455/GCA_003719455.1/genes/GCA_003719455.1_ASM371945v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003719455.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain G", @@ -6314,12 +6315,12 @@ "strain": "strain G", "supercontigs": 1450, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719455.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/455/GCA_003719455.1/genes/GCA_003719455.1_ASM371945v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/575/GCA_003719575.1/genes/GCA_003719575.1_ASM371957v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003719575.1", "ncbiTaxonomyId": "5661", "organism": "Leishmania donovani CL-SL", @@ -6327,12 +6328,12 @@ "strain": "CL-SL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719575.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/575/GCA_003719575.1/genes/GCA_003719575.1_ASM371957v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/813/185/GCA_003813185.1/genes/GCA_003813185.1_Lenti7_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003813185.1", "ncbiTaxonomyId": "1328758", "organism": "Lentinus tigrinus ALCF2SS1-7", @@ -6340,12 +6341,12 @@ "strain": "ALCF2SS1-7", "supercontigs": 207, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003813185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/813/185/GCA_003813185.1/genes/GCA_003813185.1_Lenti7_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/814/445/GCA_003814445.1/genes/GCA_003814445.1_ASM381444v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003814445.1", "ncbiTaxonomyId": "877507", "organism": "Epichloe festucae Fl1", @@ -6353,12 +6354,12 @@ "strain": "Fl1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003814445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/814/445/GCA_003814445.1/genes/GCA_003814445.1_ASM381444v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/843/895/GCA_003843895.1/genes/GCA_003843895.1_ASM384389v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003843895.1", "ncbiTaxonomyId": "542832", "organism": "Peronospora effusa R13", @@ -6366,12 +6367,12 @@ "strain": "R13", "supercontigs": 784, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003843895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/843/895/GCA_003843895.1/genes/GCA_003843895.1_ASM384389v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/951/495/GCA_003951495.1/genes/GCA_003951495.1_AfunF3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003951495.1", "ncbiTaxonomyId": "62324", "organism": "Anopheles funestus FUMOZ", @@ -6379,12 +6380,12 @@ "strain": "FUMOZ", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003951495.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/951/495/GCA_003951495.1/genes/GCA_003951495.1_AfunF3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/971/505/GCA_003971505.1/genes/GCA_003971505.1_ASM397150v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_003971505.1", "ncbiTaxonomyId": "37727", "organism": "Talaromyces marneffei TM4", @@ -6392,12 +6393,12 @@ "strain": "TM4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003971505.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/971/505/GCA_003971505.1/genes/GCA_003971505.1_ASM397150v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/055/GCA_004000055.1/genes/GCA_004000055.1_DF_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004000055.1", "ncbiTaxonomyId": "97331", "organism": "Arthrobotrys flagrans CBS H-5679", @@ -6405,12 +6406,12 @@ "strain": "CBS H-5679", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/055/GCA_004000055.1/genes/GCA_004000055.1_DF_1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/155/GCA_004000155.1/genes/GCA_004000155.1_ASM400015v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004000155.1", "ncbiTaxonomyId": "291195", "organism": "Tubulinosema ratisbonensis Franzen", @@ -6418,12 +6419,12 @@ "strain": "Franzen", "supercontigs": 952, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000155.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/155/GCA_004000155.1/genes/GCA_004000155.1_ASM400015v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/115/165/GCA_004115165.2/genes/GCA_004115165.2_Cimm211_ragoo.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004115165.2", "ncbiTaxonomyId": "5501", "organism": "Coccidioides immitis WA_211", @@ -6431,12 +6432,12 @@ "strain": "WA_211", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004115165.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/115/165/GCA_004115165.2/genes/GCA_004115165.2_Cimm211_ragoo.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/125/335/GCA_004125335.1/genes/GCA_004125335.1_ASM412533v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004125335.1", "ncbiTaxonomyId": "203904", "organism": "Hemileia vastatrix Race XXXIII", @@ -6444,12 +6445,12 @@ "strain": "Race XXXIII", "supercontigs": 116756, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004125335.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/125/335/GCA_004125335.1/genes/GCA_004125335.1_ASM412533v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/136/515/GCA_004136515.2/genes/GCA_004136515.2_ASM413651v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004136515.2", "ncbiTaxonomyId": "1518534", "organism": "Anopheles coluzzii Ngousso", @@ -6457,12 +6458,12 @@ "strain": "Ngousso", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004136515.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/136/515/GCA_004136515.2/genes/GCA_004136515.2_ASM413651v2.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/935/GCA_004324935.1/genes/GCA_004324935.1_Ordospora_GBEP_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004324935.1", "ncbiTaxonomyId": "174685", "organism": "Ordospora colligata GB-EP-1", @@ -6470,12 +6471,12 @@ "strain": "GB-EP-1", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324935.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/935/GCA_004324935.1/genes/GCA_004324935.1_Ordospora_GBEP_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/945/GCA_004324945.1/genes/GCA_004324945.1_Ordospora_NOV7_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004324945.1", "ncbiTaxonomyId": "174685", "organism": "Ordospora colligata NO-V-7", @@ -6483,12 +6484,12 @@ "strain": "NO-V-7", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324945.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/945/GCA_004324945.1/genes/GCA_004324945.1_Ordospora_NOV7_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/035/GCA_004325035.1/genes/GCA_004325035.1_ASM432503v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004325035.1", "ncbiTaxonomyId": "148818", "organism": "Hamiltosporidium magnivora IL-BN-2", @@ -6496,12 +6497,12 @@ "strain": "IL-BN-2", "supercontigs": 3833, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/035/GCA_004325035.1/genes/GCA_004325035.1_ASM432503v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/045/GCA_004325045.1/genes/GCA_004325045.1_FIOER33_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004325045.1", "ncbiTaxonomyId": "1176355", "organism": "Hamiltosporidium tvaerminnensis FI-OER-3-3", @@ -6509,12 +6510,12 @@ "strain": "FI-OER-3-3", "supercontigs": 2915, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325045.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/045/GCA_004325045.1/genes/GCA_004325045.1_FIOER33_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/055/GCA_004325055.1/genes/GCA_004325055.1_Ordospora_FISK_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004325055.1", "ncbiTaxonomyId": "174685", "organism": "Ordospora colligata FI-SK-17-1", @@ -6522,12 +6523,12 @@ "strain": "FI-SK-17-1", "supercontigs": 26, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325055.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/055/GCA_004325055.1/genes/GCA_004325055.1_Ordospora_FISK_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/065/GCA_004325065.1/genes/GCA_004325065.1_BEOM2_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004325065.1", "ncbiTaxonomyId": "148818", "organism": "Hamiltosporidium magnivora BE-OM-2", @@ -6535,12 +6536,12 @@ "strain": "BE-OM-2", "supercontigs": 3550, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325065.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/065/GCA_004325065.1/genes/GCA_004325065.1_BEOM2_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/075/GCA_004325075.1/genes/GCA_004325075.1_ILG3_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004325075.1", "ncbiTaxonomyId": "1176355", "organism": "Hamiltosporidium tvaerminnensis IL-G-3", @@ -6548,12 +6549,12 @@ "strain": "IL-G-3", "supercontigs": 2738, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/075/GCA_004325075.1/genes/GCA_004325075.1_ILG3_v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/337/985/GCA_004337985.1/genes/GCA_004337985.1_PpBr36.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004337985.1", "ncbiTaxonomyId": "1578925", "organism": "Pyricularia pennisetigena Br36", @@ -6561,12 +6562,12 @@ "strain": "Br36", "supercontigs": 103, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004337985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/337/985/GCA_004337985.1/genes/GCA_004337985.1_PpBr36.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/355/085/GCA_004355085.1/genes/GCA_004355085.1_Ricmel1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004355085.1", "ncbiTaxonomyId": "50990", "organism": "Rickenella mellea Ricmel1", @@ -6574,12 +6575,12 @@ "strain": "Ricmel1", "supercontigs": 848, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004355085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/355/085/GCA_004355085.1/genes/GCA_004355085.1_Ricmel1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 19, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/359/215/GCA_004359215.2/genes/GCA_004359215.2_BlacSF5v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004359215.2", "ncbiTaxonomyId": "4779", "organism": "Bremia lactucae strain SF5", @@ -6587,12 +6588,12 @@ "strain": "strain SF5", "supercontigs": 201, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004359215.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/359/215/GCA_004359215.2/genes/GCA_004359215.2_BlacSF5v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/798/825/GCA_004798825.1/genes/GCA_004798825.1_ASM479882v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004798825.1", "ncbiTaxonomyId": "1220188", "organism": "Aspergillus tanneri NIH1004", @@ -6600,12 +6601,12 @@ "strain": "NIH1004", "supercontigs": 1715, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004798825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/798/825/GCA_004798825.1/genes/GCA_004798825.1_ASM479882v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/919/615/GCA_004919615.1/genes/GCA_004919615.1_Ncer_3.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004919615.1", "ncbiTaxonomyId": "40302", "organism": "Nosema ceranae BRL", @@ -6613,12 +6614,12 @@ "strain": "BRL", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004919615.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/919/615/GCA_004919615.1/genes/GCA_004919615.1_Ncer_3.0.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/936/735/GCA_004936735.2/genes/GCA_004936735.2_CCh_genotype_I.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_004936735.2", "ncbiTaxonomyId": "1280935", "organism": "Cryptosporidium sp. chipmunk genotype I strain 37763", @@ -6626,12 +6627,12 @@ "strain": "strain 37763", "supercontigs": 50, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004936735.2", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/936/735/GCA_004936735.2/genes/GCA_004936735.2_CCh_genotype_I.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 5, "contigs": 54, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/247/105/GCA_006247105.1/genes/GCA_006247105.1_UU_GM_1.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_006247105.1", "ncbiTaxonomyId": "5742", "organism": "Giardia muris strain Roberts-Thomson", @@ -6639,12 +6640,12 @@ "strain": "strain Roberts-Thomson", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006247105.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/247/105/GCA_006247105.1/genes/GCA_006247105.1_UU_GM_1.1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/496/715/GCA_006496715.1/genes/GCA_006496715.1_Aalbo_primary.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_006496715.1", "ncbiTaxonomyId": "7160", "organism": "Aedes albopictus Foshan FPA", @@ -6652,12 +6653,12 @@ "strain": "Foshan FPA", "supercontigs": 2196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_006496715.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/496/715/GCA_006496715.1/genes/GCA_006496715.1_Aalbo_primary.1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/535/955/GCA_006535955.1/genes/GCA_006535955.1_ASM653595v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_006535955.1", "ncbiTaxonomyId": "286115", "organism": "Synchytrium endobioticum MB42", @@ -6665,12 +6666,12 @@ "strain": "MB42", "supercontigs": 786, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006535955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/535/955/GCA_006535955.1/genes/GCA_006535955.1_ASM653595v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 3, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/210/665/GCA_007210665.1/genes/GCA_007210665.1_Ctyz_UGA_55.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_007210665.1", "ncbiTaxonomyId": "756076", "organism": "Cryptosporidium tyzzeri isolate UGA55", @@ -6678,12 +6679,12 @@ "strain": "isolate UGA55", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007210665.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/210/665/GCA_007210665.1/genes/GCA_007210665.1_Ctyz_UGA_55.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 17, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/674/295/GCA_007674295.1/genes/GCA_007674295.1_ASM767429v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_007674295.1", "ncbiTaxonomyId": "278021", "organism": "Antonospora locustae CLX", @@ -6691,12 +6692,12 @@ "strain": "CLX", "supercontigs": 1, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007674295.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/674/295/GCA_007674295.1/genes/GCA_007674295.1_ASM767429v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/080/495/GCA_008080495.1/genes/GCA_008080495.1_ASM808049v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_008080495.1", "ncbiTaxonomyId": "73501", "organism": "Cordyceps militaris ATCC 34164", @@ -6704,12 +6705,12 @@ "strain": "ATCC 34164", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008080495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/080/495/GCA_008080495.1/genes/GCA_008080495.1_ASM808049v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/275/145/GCA_008275145.1/genes/GCA_008275145.1_ASM827514v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_008275145.1", "ncbiTaxonomyId": "498019", "organism": "Candida auris strain B11245", @@ -6717,12 +6718,12 @@ "strain": "B11245", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008275145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/275/145/GCA_008275145.1/genes/GCA_008275145.1_ASM827514v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_008403515.1", "ncbiTaxonomyId": "5763", "organism": "Naegleria fowleri strain ATCC 30894", @@ -6730,12 +6731,12 @@ "strain": "strain ATCC 30894", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008403515.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_008704595.1", "ncbiTaxonomyId": "5481", "organism": "Diutina rugosa CBS 613", @@ -6743,12 +6744,12 @@ "strain": "CBS 613", "supercontigs": 169, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008704595.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/704/605/GCA_008704605.1/genes/GCA_008704605.1_ASM870460v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_008704605.1", "ncbiTaxonomyId": "44093", "organism": "Trichomonascus ciferrii CBS 4856", @@ -6756,12 +6757,12 @@ "strain": "CBS 4856", "supercontigs": 583, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008704605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/704/605/GCA_008704605.1/genes/GCA_008704605.1_ASM870460v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 10, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/728/235/GCA_008728235.1/genes/GCA_008728235.1_ASM872823v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_008728235.1", "ncbiTaxonomyId": "688394", "organism": "Lichtheimia ramosa KPH11", @@ -6769,12 +6770,12 @@ "strain": "KPH11", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008728235.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/728/235/GCA_008728235.1/genes/GCA_008728235.1_ASM872823v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/017/415/GCA_009017415.1/genes/GCA_009017415.1_ASM901741v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009017415.1", "ncbiTaxonomyId": "5059", "organism": "Aspergillus flavus NRRL3357 2020", @@ -6782,12 +6783,12 @@ "strain": "NRRL3357 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009017415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/017/415/GCA_009017415.1/genes/GCA_009017415.1_ASM901741v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/176/385/GCA_009176385.1/genes/GCA_009176385.1_Asppar1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009176385.1", "ncbiTaxonomyId": "5067", "organism": "Aspergillus parasiticus CBS 117618", @@ -6795,12 +6796,12 @@ "strain": "CBS 117618", "supercontigs": 270, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009176385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/176/385/GCA_009176385.1/genes/GCA_009176385.1_Asppar1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/650/685/GCA_009650685.1/genes/GCA_009650685.1_Cryp_gatt_MF34.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009650685.1", "ncbiTaxonomyId": "2268382", "organism": "Cryptococcus cf. gattii MF34", @@ -6808,12 +6809,12 @@ "strain": "MF34", "supercontigs": 2, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009650685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/650/685/GCA_009650685.1/genes/GCA_009650685.1_Cryp_gatt_MF34.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/731/335/GCA_009731335.1/genes/GCA_009731335.1_Lta_assembly01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009731335.1", "ncbiTaxonomyId": "5689", "organism": "Leishmania tarentolae Parrot Tar II 2019", @@ -6821,12 +6822,12 @@ "strain": "Parrot Tar II 2019", "supercontigs": 179, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009731335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/731/335/GCA_009731335.1/genes/GCA_009731335.1_Lta_assembly01.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/425/GCA_009761425.1/genes/GCA_009761425.1_NF135.C10_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009761425.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum NF135.C10", @@ -6834,12 +6835,12 @@ "strain": "NF135.C10", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761425.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/425/GCA_009761425.1/genes/GCA_009761425.1_NF135.C10_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/475/GCA_009761475.1/genes/GCA_009761475.1_NF54_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009761475.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum NF54", @@ -6847,12 +6848,12 @@ "strain": "NF54", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761475.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/475/GCA_009761475.1/genes/GCA_009761475.1_NF54_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/515/GCA_009761515.1/genes/GCA_009761515.1_NF166_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009761515.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum NF166", @@ -6860,12 +6861,12 @@ "strain": "NF166", "supercontigs": 30, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761515.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/515/GCA_009761515.1/genes/GCA_009761515.1_NF166_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/555/GCA_009761555.1/genes/GCA_009761555.1_7G8_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009761555.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum 7G8 2019", @@ -6873,12 +6874,12 @@ "strain": "7G8 2019", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761555.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/555/GCA_009761555.1/genes/GCA_009761555.1_7G8_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_009768925.2", "ncbiTaxonomyId": "310047", "organism": "Cryptosporidium bovis isolate 45015", @@ -6886,12 +6887,12 @@ "strain": "isolate 45015", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009768925.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_009792415.2", "ncbiTaxonomyId": "515981", "organism": "Cryptosporidium ryanae 45019", @@ -6899,12 +6900,12 @@ "strain": "45019", "supercontigs": 93, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009792415.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/812/365/GCA_009812365.1/genes/GCA_009812365.1_ASM981236v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_009812365.1", "ncbiTaxonomyId": "5061", "organism": "Aspergillus niger strain LDM3", @@ -6912,12 +6913,12 @@ "strain": "strain LDM3", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009812365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/812/365/GCA_009812365.1/genes/GCA_009812365.1_ASM981236v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_010111755.1", "ncbiTaxonomyId": "5478", "organism": "Nakaseomyces glabratus CBS138 2020", @@ -6925,12 +6926,12 @@ "strain": "CBS138 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_010111755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/037/195/GCA_011037195.1/genes/GCA_011037195.1_UVM_Tinf_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_011037195.1", "ncbiTaxonomyId": "30076", "organism": "Triatoma infestans isolate FIOC_28", @@ -6938,12 +6939,12 @@ "strain": "isolate FIOC_28", "supercontigs": 14951, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011037195.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/037/195/GCA_011037195.1/genes/GCA_011037195.1_UVM_Tinf_1.0.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/545/GCA_011634545.1/genes/GCA_011634545.1_ASM1163454v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_011634545.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage A isolate WB Calgary", @@ -6951,12 +6952,12 @@ "strain": "isolate WB Calgary", "supercontigs": 37, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634545.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/545/GCA_011634545.1/genes/GCA_011634545.1_ASM1163454v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/555/GCA_011634555.1/genes/GCA_011634555.1_ASM1163455v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_011634555.1", "ncbiTaxonomyId": "5741", "organism": "Giardia intestinalis Beaver", @@ -6964,12 +6965,12 @@ "strain": "Beaver", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634555.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/555/GCA_011634555.1/genes/GCA_011634555.1_ASM1163455v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/595/GCA_011634595.1/genes/GCA_011634595.1_ASM1163459v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_011634595.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage B isolate GS Calgary", @@ -6977,12 +6978,12 @@ "strain": "isolate GS Calgary", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634595.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/595/GCA_011634595.1/genes/GCA_011634595.1_ASM1163459v1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/099/955/GCA_013099955.1/genes/GCA_013099955.1_tgrh88.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013099955.1", "ncbiTaxonomyId": "5811", "organism": "Toxoplasma gondii RH-88", @@ -6990,12 +6991,12 @@ "strain": "RH-88", "supercontigs": 183, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013099955.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/099/955/GCA_013099955.1/genes/GCA_013099955.1_tgrh88.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/177/555/GCA_013177555.1/genes/GCA_013177555.1_ASM1317755v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013177555.1", "ncbiTaxonomyId": "5482", "organism": "Candida tropicalis MYA-3404 2020", @@ -7003,12 +7004,12 @@ "strain": "MYA-3404 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013177555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/177/555/GCA_013177555.1/genes/GCA_013177555.1_ASM1317755v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/685/GCA_013339685.2/genes/GCA_013339685.2_BIME_Hyas_1.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013339685.2", "ncbiTaxonomyId": "266040", "organism": "Hyalomma asiaticum Hyas-2018", @@ -7016,12 +7017,12 @@ "strain": "Hyas-2018", "supercontigs": 6308, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339685.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/685/GCA_013339685.2/genes/GCA_013339685.2_BIME_Hyas_1.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 11, "contigs": 7036, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/725/GCA_013339725.1/genes/GCA_013339725.1_BIME_Rmic_1.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013339725.1", "ncbiTaxonomyId": "6941", "organism": "Rhipicephalus microplus Rmic-2018", @@ -7029,12 +7030,12 @@ "strain": "Rmic-2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339725.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/725/GCA_013339725.1/genes/GCA_013339725.1_BIME_Rmic_1.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_013339745.2", "ncbiTaxonomyId": "543639", "organism": "Dermacentor silvarum Dsil-2018", @@ -7042,12 +7043,12 @@ "strain": "Dsil-2018", "supercontigs": 1653, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339745.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/765/GCA_013339765.2/genes/GCA_013339765.2_BIME_HaeL_1.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013339765.2", "ncbiTaxonomyId": "44386", "organism": "Haemaphysalis longicornis HaeL-2018", @@ -7055,12 +7056,12 @@ "strain": "HaeL-2018", "supercontigs": 3874, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339765.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/765/GCA_013339765.2/genes/GCA_013339765.2_BIME_HaeL_1.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/655/GCA_013358655.1/genes/GCA_013358655.1_ASM1335865v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013358655.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Berenice", @@ -7068,12 +7069,12 @@ "strain": "Berenice", "supercontigs": 923, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358655.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/655/GCA_013358655.1/genes/GCA_013358655.1_ASM1335865v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/835/GCA_013358835.2/genes/GCA_013358835.2_BIME_Iper_1.3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013358835.2", "ncbiTaxonomyId": "34615", "organism": "Ixodes persulcatus Iper-2018", @@ -7081,12 +7082,12 @@ "strain": "Iper-2018", "supercontigs": 11596, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358835.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/835/GCA_013358835.2/genes/GCA_013358835.2_BIME_Iper_1.3.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/396/185/GCA_013396185.1/genes/GCA_013396185.1_ASM1339618v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013396185.1", "ncbiTaxonomyId": "48490", "organism": "Fusarium circinatum NRRL 25331", @@ -7094,12 +7095,12 @@ "strain": "NRRL 25331", "supercontigs": 1222, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013396185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/396/185/GCA_013396185.1/genes/GCA_013396185.1_ASM1339618v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/436/015/GCA_013436015.1/genes/GCA_013436015.1_TxGen_Rann.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_013436015.1", "ncbiTaxonomyId": "34611", "organism": "Rhipicephalus annulatus KleinGrass", @@ -7107,12 +7108,12 @@ "strain": "KleinGrass", "supercontigs": 16339, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013436015.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/436/015/GCA_013436015.1/genes/GCA_013436015.1_TxGen_Rann.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 15, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/154/955/GCA_014154955.1/genes/GCA_014154955.1_SMRT_HiC_Fo5176.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014154955.1", "ncbiTaxonomyId": "100902", "organism": "Fusarium oxysporum f. sp. conglutinans Fo5176", @@ -7120,12 +7121,12 @@ "strain": "f. sp. conglutinans Fo5176", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014154955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/154/955/GCA_014154955.1/genes/GCA_014154955.1_SMRT_HiC_Fo5176.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/183/025/GCA_014183025.1/genes/GCA_014183025.1_ASM1418302v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014183025.1", "ncbiTaxonomyId": "483707", "organism": "Raffaelea lauricola RL4", @@ -7133,12 +7134,12 @@ "strain": "RL4", "supercontigs": 169, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014183025.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/183/025/GCA_014183025.1/genes/GCA_014183025.1_ASM1418302v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/217/725/GCA_014217725.1/genes/GCA_014217725.1_ASM1421772v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014217725.1", "ncbiTaxonomyId": "5478", "organism": "Nakaseomyces glabratus BG2", @@ -7146,12 +7147,12 @@ "strain": "BG2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014217725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/217/725/GCA_014217725.1/genes/GCA_014217725.1_ASM1421772v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 40, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_014441545.1", "ncbiTaxonomyId": "9615", "organism": "Canis lupus familiaris isolate SID07034", @@ -7159,12 +7160,12 @@ "strain": "familiaris isolate SID07034", "supercontigs": 336, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014441545.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 12, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/607/475/GCA_014607475.1/genes/GCA_014607475.1_ASM1460747v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014607475.1", "ncbiTaxonomyId": "176275", "organism": "Beauveria bassiana HN6", @@ -7172,12 +7173,12 @@ "strain": "HN6", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014607475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/607/475/GCA_014607475.1/genes/GCA_014607475.1_ASM1460747v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/555/GCA_014805555.1/genes/GCA_014805555.1_ASM1480555v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014805555.1", "ncbiTaxonomyId": "164912", "organism": "Thelohania contejeani T1", @@ -7185,12 +7186,12 @@ "strain": "T1", "supercontigs": 1391, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805555.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/555/GCA_014805555.1/genes/GCA_014805555.1_ASM1480555v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_014805625.1", "ncbiTaxonomyId": "7396", "organism": "Glossina fuscipes IAEA 2018", @@ -7198,12 +7199,12 @@ "strain": "IAEA 2018", "supercontigs": 7986, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014805625.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/705/GCA_014805705.1/genes/GCA_014805705.1_ASM1480570v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014805705.1", "ncbiTaxonomyId": "658444", "organism": "Cucumispora dikerogammari Dv6", @@ -7211,12 +7212,12 @@ "strain": "Dv6", "supercontigs": 7783, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805705.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/705/GCA_014805705.1/genes/GCA_014805705.1_ASM1480570v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 37, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/843/625/GCA_014843625.1/genes/GCA_014843625.1_ASM1484362v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014843625.1", "ncbiTaxonomyId": "5763", "organism": "Naegleria fowleri strain Ty", @@ -7224,12 +7225,12 @@ "strain": "strain Ty", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014843625.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/843/625/GCA_014843625.1/genes/GCA_014843625.1_ASM1484362v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/898/695/GCA_014898695.1/genes/GCA_014898695.1_ASM1489869v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_014898695.1", "ncbiTaxonomyId": "5811", "organism": "Toxoplasma gondii strain ME49xCTG F1 S27", @@ -7237,12 +7238,12 @@ "strain": "strain ME49xCTG F1 S27", "supercontigs": 48, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014898695.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/898/695/GCA_014898695.1/genes/GCA_014898695.1_ASM1489869v1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 43, "contigs": 359, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/625/GCA_015033625.1/genes/GCA_015033625.1_ASM1503362v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_015033625.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Brazil A4", @@ -7250,12 +7251,12 @@ "strain": "Brazil A4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033625.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/625/GCA_015033625.1/genes/GCA_015033625.1_ASM1503362v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 40, "contigs": 226, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/655/GCA_015033655.1/genes/GCA_015033655.1_ASM1503365v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_015033655.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi Y C6", @@ -7263,12 +7264,12 @@ "strain": "Y C6", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033655.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/655/GCA_015033655.1/genes/GCA_015033655.1_ASM1503365v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 22, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/227/675/GCA_015227675.2/genes/GCA_015227675.2_mRatBN7.2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_015227675.2", "ncbiTaxonomyId": "10116", "organism": "Rattus norvegicus BN/NHsdMcwi", @@ -7276,12 +7277,12 @@ "strain": "BN/NHsdMcwi", "supercontigs": 153, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015227675.2", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/227/675/GCA_015227675.2/genes/GCA_015227675.2_mRatBN7.2.augustus.gtf.gz" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/245/375/GCA_015245375.1/genes/GCA_015245375.1_ASM1524537v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_015245375.1", "ncbiTaxonomyId": "5807", "organism": "Cryptosporidium parvum IOWA-ATCC", @@ -7289,12 +7290,12 @@ "strain": "IOWA-ATCC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015245375.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/245/375/GCA_015245375.1/genes/GCA_015245375.1_ASM1524537v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 3, "contigs": 53, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_015732765.1", "ncbiTaxonomyId": "7176", "organism": "Culex quinquefasciatus JHB 2020", @@ -7302,12 +7303,12 @@ "strain": "JHB 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015732765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/832/245/GCA_015832245.1/genes/GCA_015832245.1_ASM1583224v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_015832245.1", "ncbiTaxonomyId": "83296", "organism": "Nosema granulosis Ou3-Ou53", @@ -7315,12 +7316,12 @@ "strain": "Ou3-Ou53", "supercontigs": 1754, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015832245.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/832/245/GCA_015832245.1/genes/GCA_015832245.1_ASM1583224v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 13, "contigs": 31, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/097/395/GCA_016097395.1/genes/GCA_016097395.1_Ncaninum_LIV.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016097395.1", "ncbiTaxonomyId": "29176", "organism": "Neospora caninum Liverpool 2019", @@ -7328,12 +7329,12 @@ "strain": "Liverpool 2019", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016097395.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/097/395/GCA_016097395.1/genes/GCA_016097395.1_Ncaninum_LIV.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/255/985/GCA_016255985.1/genes/GCA_016255985.1_ASM1625598v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016255985.1", "ncbiTaxonomyId": "288439", "organism": "Dictyocoela roeselum Ou19", @@ -7341,12 +7342,12 @@ "strain": "Ou19", "supercontigs": 1033, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016255985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/255/985/GCA_016255985.1/genes/GCA_016255985.1_ASM1625598v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/256/075/GCA_016256075.1/genes/GCA_016256075.1_ASM1625607v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016256075.1", "ncbiTaxonomyId": "279532", "organism": "Dictyocoela muelleri Ou54", @@ -7354,12 +7355,12 @@ "strain": "Ou54", "supercontigs": 11522, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016256075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/256/075/GCA_016256075.1/genes/GCA_016256075.1_ASM1625607v1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/618/375/GCA_016618375.1/genes/GCA_016618375.1_Pcap_4.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016618375.1", "ncbiTaxonomyId": "4784", "organism": "Phytophthora capsici LT1534", @@ -7367,12 +7368,12 @@ "strain": "LT1534", "supercontigs": 782, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016618375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/618/375/GCA_016618375.1/genes/GCA_016618375.1_Pcap_4.1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/772/295/GCA_016772295.1/genes/GCA_016772295.1_ASM1677229v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016772295.1", "ncbiTaxonomyId": "1132390", "organism": "Coprinopsis cinerea #326", @@ -7380,12 +7381,12 @@ "strain": "#326", "supercontigs": 31, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016772295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/772/295/GCA_016772295.1/genes/GCA_016772295.1_ASM1677229v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 23, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/801/405/GCA_016801405.1/genes/GCA_016801405.1_ASM1680140v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016801405.1", "ncbiTaxonomyId": "321614", "organism": "Parastagonospora nodorum SN15", @@ -7393,12 +7394,12 @@ "strain": "SN15", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016801405.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/801/405/GCA_016801405.1/genes/GCA_016801405.1_ASM1680140v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/906/325/GCA_016906325.1/genes/GCA_016906325.1_ASM1690632v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_016906325.1", "ncbiTaxonomyId": "38448", "organism": "Monilinia fructicola CPMC6", @@ -7406,12 +7407,12 @@ "strain": "CPMC6", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016906325.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/906/325/GCA_016906325.1/genes/GCA_016906325.1_ASM1690632v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 17, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/301/755/GCA_017301755.1/genes/GCA_017301755.1_ASM1730175v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017301755.1", "ncbiTaxonomyId": "38082", "organism": "Pneumocystis wakefieldiae 2A", @@ -7419,12 +7420,12 @@ "strain": "2A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017301755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/301/755/GCA_017301755.1/genes/GCA_017301755.1_ASM1730175v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/585/GCA_017310585.1/genes/GCA_017310585.1_ASM1731058v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017310585.1", "ncbiTaxonomyId": "5037", "organism": "Histoplasma capsulatum WU24", @@ -7432,12 +7433,12 @@ "strain": "WU24", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/585/GCA_017310585.1/genes/GCA_017310585.1_ASM1731058v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/615/GCA_017310615.1/genes/GCA_017310615.1_ASM1731061v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017310615.1", "ncbiTaxonomyId": "544711", "organism": "Histoplasma capsulatum H88", @@ -7445,12 +7446,12 @@ "strain": "H88", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/615/GCA_017310615.1/genes/GCA_017310615.1_ASM1731061v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/311/285/GCA_017311285.1/genes/GCA_017311285.1_Pneumocystis_oryctolagi_MERGE_1.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017311285.1", "ncbiTaxonomyId": "42067", "organism": "Pneumocystis oryctolagi CS1", @@ -7458,12 +7459,12 @@ "strain": "CS1", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017311285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/311/285/GCA_017311285.1/genes/GCA_017311285.1_Pneumocystis_oryctolagi_MERGE_1.1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/355/575/GCA_017355575.1/genes/GCA_017355575.1_ASM1735557v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017355575.1", "ncbiTaxonomyId": "447093", "organism": "Histoplasma capsulatum G186AR", @@ -7471,12 +7472,12 @@ "strain": "G186AR", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017355575.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/355/575/GCA_017355575.1/genes/GCA_017355575.1_ASM1735557v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/445/GCA_017607445.1/genes/GCA_017607445.1_ASM1760744v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017607445.1", "ncbiTaxonomyId": "2902605", "organism": "Histoplasma capsulatum G217B", @@ -7484,12 +7485,12 @@ "strain": "G217B", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/445/GCA_017607445.1/genes/GCA_017607445.1_ASM1760744v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/465/GCA_017607465.1/genes/GCA_017607465.1_ASM1760746v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017607465.1", "ncbiTaxonomyId": "5037", "organism": "Histoplasma capsulatum G184AR", @@ -7497,12 +7498,12 @@ "strain": "G184AR", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607465.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/465/GCA_017607465.1/genes/GCA_017607465.1_ASM1760746v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/655/625/GCA_017655625.1/genes/GCA_017655625.1_BP57.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017655625.1", "ncbiTaxonomyId": "273372", "organism": "Candida metapsilosis BP57", @@ -7510,12 +7511,12 @@ "strain": "BP57", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017655625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/655/625/GCA_017655625.1/genes/GCA_017655625.1_BP57.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/788/925/GCA_017788925.1/genes/GCA_017788925.1_ASM1778892v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017788925.1", "ncbiTaxonomyId": "2698477", "organism": "Pneumocystis canis CanA", @@ -7523,12 +7524,12 @@ "strain": "CanA", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017788925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/788/925/GCA_017788925.1/genes/GCA_017788925.1_ASM1778892v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/305/GCA_017916305.1/genes/GCA_017916305.1_LU_Lenr_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017916305.1", "ncbiTaxonomyId": "5663", "organism": "Leishmania enriettii MCAV/BR/2001/CUR178", @@ -7536,12 +7537,12 @@ "strain": "MCAV/BR/2001/CUR178", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017916305.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/305/GCA_017916305.1/genes/GCA_017916305.1_LU_Lenr_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/325/GCA_017916325.1/genes/GCA_017916325.1_LU_Lmar_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017916325.1", "ncbiTaxonomyId": "1580590", "organism": "Leishmania martiniquensis MHOM/TH/2012/LSCM1", @@ -7549,12 +7550,12 @@ "strain": "MHOM/TH/2012/LSCM1", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916325.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/325/GCA_017916325.1/genes/GCA_017916325.1_LU_Lmar_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/335/GCA_017916335.1/genes/GCA_017916335.1_LU_Lori_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017916335.1", "ncbiTaxonomyId": "2249476", "organism": "Leishmania orientalis MHOM/TH/2014/LSCM4", @@ -7562,12 +7563,12 @@ "strain": "MHOM/TH/2014/LSCM4", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/335/GCA_017916335.1/genes/GCA_017916335.1_LU_Lori_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/215/GCA_017918215.1/genes/GCA_017918215.1_LU_Lgha_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017918215.1", "ncbiTaxonomyId": "2803181", "organism": "Leishmania sp. Ghana MHOM/GH/2012/GH5", @@ -7575,12 +7576,12 @@ "strain": "MHOM/GH/2012/GH5", "supercontigs": 80, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918215.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/215/GCA_017918215.1/genes/GCA_017918215.1_LU_Lgha_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/225/GCA_017918225.1/genes/GCA_017918225.1_LU_LNam_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017918225.1", "ncbiTaxonomyId": "2802991", "organism": "Leishmania sp. Namibia MPRO/NA/1975/252/LV425", @@ -7588,12 +7589,12 @@ "strain": "MPRO/NA/1975/252/LV425", "supercontigs": 31, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/225/GCA_017918225.1/genes/GCA_017918225.1_LU_LNam_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/235/GCA_017918235.1/genes/GCA_017918235.1_LU_Pher_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_017918235.1", "ncbiTaxonomyId": "2761500", "organism": "Porcisia hertigi MCOE/PA/1965/C119", @@ -7601,12 +7602,12 @@ "strain": "MCOE/PA/1965/C119", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918235.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/235/GCA_017918235.1/genes/GCA_017918235.1_LU_Pher_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 16, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/127/085/GCA_018127085.1/genes/GCA_018127085.1_P2C.v1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018127085.1", "ncbiTaxonomyId": "2698480", "organism": "Pneumocystis sp. macacae isolate P2C", @@ -7614,12 +7615,12 @@ "strain": "P2C", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018127085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/127/085/GCA_018127085.1/genes/GCA_018127085.1_P2C.v1.0.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/342/045/GCA_018342045.1/genes/GCA_018342045.1_Swiss_hellem_version_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018342045.1", "ncbiTaxonomyId": "27973", "organism": "Encephalitozoon hellem Swiss", @@ -7627,12 +7628,12 @@ "strain": "Swiss", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018342045.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/342/045/GCA_018342045.1/genes/GCA_018342045.1_Swiss_hellem_version_1.augustus.gtf.gz" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/725/GCA_018398725.1/genes/GCA_018398725.1_ASM1839872v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018398725.1", "ncbiTaxonomyId": "32595", "organism": "Babesia divergens strain 1802A", @@ -7640,12 +7641,12 @@ "strain": "strain 1802A", "supercontigs": 79, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398725.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/725/GCA_018398725.1/genes/GCA_018398725.1_ASM1839872v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/765/GCA_018398765.1/genes/GCA_018398765.1_ASM1839876v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018398765.1", "ncbiTaxonomyId": "1169474", "organism": "Chromera velia CCMP2878", @@ -7653,12 +7654,12 @@ "strain": "CCMP2878", "supercontigs": 5963, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398765.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/765/GCA_018398765.1/genes/GCA_018398765.1_ASM1839876v1.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/416/015/GCA_018416015.2/genes/GCA_018416015.2_ASM1841601v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018416015.2", "ncbiTaxonomyId": "443226", "organism": "Coccidioides posadasii strain Silveira 2022", @@ -7666,12 +7667,12 @@ "strain": "strain Silveira 2022", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/416/015/GCA_018416015.2/genes/GCA_018416015.2_ASM1841601v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/466/815/GCA_018466815.1/genes/GCA_018466815.1_ASM1846681v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018466815.1", "ncbiTaxonomyId": "885310", "organism": "Entamoeba histolytica DS4-868", @@ -7679,12 +7680,12 @@ "strain": "DS4-868", "supercontigs": 1177, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018466815.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/466/815/GCA_018466815.1/genes/GCA_018466815.1_ASM1846681v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/691/715/GCA_018691715.1/genes/GCA_018691715.1_ASM1869171v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_018691715.1", "ncbiTaxonomyId": "4785", "organism": "Phytophthora cinnamomi GKB4", @@ -7692,12 +7693,12 @@ "strain": "GKB4", "supercontigs": 133, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018691715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/691/715/GCA_018691715.1/genes/GCA_018691715.1_ASM1869171v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/059/535/GCA_019059535.1/genes/GCA_019059535.1_ASM1905953v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_019059535.1", "ncbiTaxonomyId": "885312", "organism": "Entamoeba histolytica KU48", @@ -7705,12 +7706,12 @@ "strain": "KU48", "supercontigs": 1168, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019059535.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/059/535/GCA_019059535.1/genes/GCA_019059535.1_ASM1905953v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 11, "contigs": 685, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/096/175/GCA_019096175.1/genes/GCA_019096175.1_IZB_EATRO1125_Draft_genome_1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_019096175.1", "ncbiTaxonomyId": "5691", "organism": "Trypanosoma brucei EATRO1125", @@ -7718,12 +7719,12 @@ "strain": "EATRO1125", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019096175.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/096/175/GCA_019096175.1/genes/GCA_019096175.1_IZB_EATRO1125_Draft_genome_1.0.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/844/115/GCA_019844115.2/genes/GCA_019844115.2_ASM1984411v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_019844115.2", "ncbiTaxonomyId": "5807", "organism": "Cryptosporidium parvum 2022", @@ -7731,12 +7732,12 @@ "strain": "2022", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019844115.2", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/844/115/GCA_019844115.2/genes/GCA_019844115.2_ASM1984411v2.augustus.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_019968955.1", "ncbiTaxonomyId": "2853593", "organism": "Porospora cf. gigantea A", @@ -7744,12 +7745,12 @@ "strain": "A", "supercontigs": 787, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_019968955.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/184/695/GCA_020184695.1/genes/GCA_020184695.1_ASM2018469v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020184695.1", "ncbiTaxonomyId": "135588", "organism": "Histomonas meleagridis 2922-C6/04-290x", @@ -7757,12 +7758,12 @@ "strain": "2922-C6/04-290x", "supercontigs": 281, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020184695.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/184/695/GCA_020184695.1/genes/GCA_020184695.1_ASM2018469v1.augustus.gtf.gz" + "vEuPathDbProject": "TrichDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/186/115/GCA_020186115.1/genes/GCA_020186115.1_ASM2018611v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020186115.1", "ncbiTaxonomyId": "135588", "organism": "Histomonas meleagridis 2922-C6/04-10x", @@ -7770,12 +7771,12 @@ "strain": "2922-C6/04-10x", "supercontigs": 187, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020186115.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/186/115/GCA_020186115.1/genes/GCA_020186115.1_ASM2018611v1.augustus.gtf.gz" + "vEuPathDbProject": "TrichDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/535/GCA_020283535.1/genes/GCA_020283535.1_ASM2028353v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020283535.1", "ncbiTaxonomyId": "885313", "organism": "Entamoeba histolytica KU50", @@ -7783,12 +7784,12 @@ "strain": "KU50", "supercontigs": 1063, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283535.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/535/GCA_020283535.1/genes/GCA_020283535.1_ASM2028353v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/715/GCA_020283715.1/genes/GCA_020283715.1_ASM2028371v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020283715.1", "ncbiTaxonomyId": "27996", "organism": "Cytauxzoon felis strain Winnie", @@ -7796,12 +7797,12 @@ "strain": "strain Winnie", "supercontigs": 358, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283715.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/715/GCA_020283715.1/genes/GCA_020283715.1_ASM2028371v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/450/195/GCA_020450195.1/genes/GCA_020450195.1_ASM2045019v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020450195.1", "ncbiTaxonomyId": "5478", "organism": "Nakaseomyces glabratus BG3993", @@ -7809,12 +7810,12 @@ "strain": "BG3993", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020450195.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/450/195/GCA_020450195.1/genes/GCA_020450195.1_ASM2045019v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/509/355/GCA_020509355.1/genes/GCA_020509355.1_ASM2050935v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020509355.1", "ncbiTaxonomyId": "1463230", "organism": "Blechomonas ayalai B08-376", @@ -7822,12 +7823,12 @@ "strain": "B08-376", "supercontigs": 545, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020509355.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/509/355/GCA_020509355.1/genes/GCA_020509355.1_ASM2050935v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 33, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/725/GCA_020716725.1/genes/GCA_020716725.1_ASM2071672v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020716725.1", "ncbiTaxonomyId": "588596", "organism": "Rhizophagus irregularis DAOM 181602=DAOM 197198", @@ -7835,12 +7836,12 @@ "strain": "DAOM 181602=DAOM 197198", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/725/GCA_020716725.1/genes/GCA_020716725.1_ASM2071672v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 33, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/745/GCA_020716745.1/genes/GCA_020716745.1_ASM2071674v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020716745.1", "ncbiTaxonomyId": "588596", "organism": "Rhizophagus irregularis C2", @@ -7848,12 +7849,12 @@ "strain": "C2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/745/GCA_020716745.1/genes/GCA_020716745.1_ASM2071674v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/215/GCA_020800215.1/genes/GCA_020800215.1_PR-102_v3_p.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020800215.1", "ncbiTaxonomyId": "164328", "organism": "Phytophthora ramorum strain Pr102", @@ -7861,12 +7862,12 @@ "strain": "strain Pr102", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/215/GCA_020800215.1/genes/GCA_020800215.1_PR-102_v3_p.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/235/GCA_020800235.1/genes/GCA_020800235.1_ASM2080023v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020800235.1", "ncbiTaxonomyId": "164328", "organism": "Phytophthora ramorum 14567", @@ -7874,12 +7875,12 @@ "strain": "14567", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800235.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/235/GCA_020800235.1/genes/GCA_020800235.1_ASM2080023v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/844/765/GCA_020844765.3/genes/GCA_020844765.3_17XNL_PSU_2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_020844765.3", "ncbiTaxonomyId": "73239", "organism": "Plasmodium yoelii yoelii 17XNL 2023", @@ -7887,12 +7888,12 @@ "strain": "yoelii 17XNL 2023", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020844765.3", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/844/765/GCA_020844765.3/genes/GCA_020844765.3_17XNL_PSU_2.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/595/GCA_021020595.1/genes/GCA_021020595.1_ASM2102059v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_021020595.1", "ncbiTaxonomyId": "5755", "organism": "Acanthamoeba castellanii C3", @@ -7900,12 +7901,12 @@ "strain": "C3", "supercontigs": 174, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020595.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/595/GCA_021020595.1/genes/GCA_021020595.1_ASM2102059v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/605/GCA_021020605.1/genes/GCA_021020605.1_ASM2102060v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_021020605.1", "ncbiTaxonomyId": "5755", "organism": "Acanthamoeba castellanii str. Neff 2021", @@ -7913,12 +7914,12 @@ "strain": "str. Neff 2021", "supercontigs": 111, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020605.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/605/GCA_021020605.1/genes/GCA_021020605.1_ASM2102060v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/527/665/GCA_021527665.1/genes/GCA_021527665.1_ASM2152766v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_021527665.1", "ncbiTaxonomyId": "100861", "organism": "Aphanomyces euteiches MF1", @@ -7926,12 +7927,12 @@ "strain": "MF1", "supercontigs": 7789, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021527665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/527/665/GCA_021527665.1/genes/GCA_021527665.1_ASM2152766v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_021653875.1", "ncbiTaxonomyId": "1912982", "organism": "Nematocida major JUm2507", @@ -7939,12 +7940,12 @@ "strain": "JUm2507", "supercontigs": 111, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021653875.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/653/915/GCA_021653915.1/genes/GCA_021653915.1_ASM2165391v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_021653915.1", "ncbiTaxonomyId": "7159", "organism": "Aedes aegypti Aag2", @@ -7952,12 +7953,12 @@ "strain": "Aag2", "supercontigs": 3752, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021653915.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/653/915/GCA_021653915.1/genes/GCA_021653915.1_ASM2165391v1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_021821965.1", "ncbiTaxonomyId": "3039483", "organism": "Microsporidium sp. FI-F-10", @@ -7965,12 +7966,12 @@ "strain": "FI-F-10", "supercontigs": 22, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021821965.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" + "vEuPathDbProject": "MicrosporidiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/059/095/GCA_022059095.1/genes/GCA_022059095.1_T.mel.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022059095.1", "ncbiTaxonomyId": "715481", "organism": "Trypanosoma melophagium St. Kilda", @@ -7978,12 +7979,12 @@ "strain": "St. Kilda", "supercontigs": 64, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_022059095.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/059/095/GCA_022059095.1/genes/GCA_022059095.1_T.mel.1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/385/695/GCA_022385695.1/genes/GCA_022385695.1_Xylarb124340_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022385695.1", "ncbiTaxonomyId": "114810", "organism": "Xylaria arbuscula CBS 124340", @@ -7991,12 +7992,12 @@ "strain": "CBS 124340", "supercontigs": 89, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022385695.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/385/695/GCA_022385695.1/genes/GCA_022385695.1_Xylarb124340_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/530/875/GCA_022530875.1/genes/GCA_022530875.1_ASM2253087v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022530875.1", "ncbiTaxonomyId": "51637", "organism": "Naegleria lovaniensis NL_76_15_250", @@ -8004,12 +8005,12 @@ "strain": "NL_76_15_250", "supercontigs": 199, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022530875.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/530/875/GCA_022530875.1/genes/GCA_022530875.1_ASM2253087v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/627/015/GCA_022627015.2/genes/GCA_022627015.2_ASM2262701v2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022627015.2", "ncbiTaxonomyId": "79252", "organism": "Podosphaera aphanis DRCT72020", @@ -8017,12 +8018,12 @@ "strain": "DRCT72020", "supercontigs": 12702, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022627015.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/627/015/GCA_022627015.2/genes/GCA_022627015.2_ASM2262701v2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/832/995/GCA_022832995.1/genes/GCA_022832995.1_ASM2283299v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022832995.1", "ncbiTaxonomyId": "5207", "organism": "Cryptococcus neoformans strain:VNII", @@ -8030,12 +8031,12 @@ "strain": "strain:VNII", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022832995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/832/995/GCA_022832995.1/genes/GCA_022832995.1_ASM2283299v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/015/GCA_022985015.1/genes/GCA_022985015.1_USDA_CIA_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022985015.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage A isolate CIA", @@ -8043,12 +8044,12 @@ "strain": "isolate CIA", "supercontigs": 93, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985015.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/015/GCA_022985015.1/genes/GCA_022985015.1_USDA_CIA_1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/025/GCA_022985025.1/genes/GCA_022985025.1_USDA_DID_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_022985025.1", "ncbiTaxonomyId": "5741", "organism": "Giardia Assemblage D isolate DID", @@ -8056,12 +8057,12 @@ "strain": "isolate DID", "supercontigs": 260, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985025.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/025/GCA_022985025.1/genes/GCA_022985025.1_USDA_DID_1.augustus.gtf.gz" + "vEuPathDbProject": "GiardiaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/375/915/GCA_023375915.1/genes/GCA_023375915.1_qqDerAnde1.1_alternate_haplotype.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_023375915.1", "ncbiTaxonomyId": "34620", "organism": "Dermacentor andersoni qqDerAnde1.1", @@ -8069,12 +8070,12 @@ "strain": "qqDerAnde1.1", "supercontigs": 8198, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023375915.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/375/915/GCA_023375915.1/genes/GCA_023375915.1_qqDerAnde1.1_alternate_haplotype.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/920/165/GCA_023920165.1/genes/GCA_023920165.1_ASM2392016v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_023920165.1", "ncbiTaxonomyId": "95742", "organism": "Curvularia clavata yc1106", @@ -8082,12 +8083,12 @@ "strain": "yc1106", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023920165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/920/165/GCA_023920165.1/genes/GCA_023920165.1_ASM2392016v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/969/395/GCA_023969395.1/genes/GCA_023969395.1_ASM2396939v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_023969395.1", "ncbiTaxonomyId": "34609", "organism": "Amblyomma maculatum SK-2019", @@ -8095,12 +8096,12 @@ "strain": "SK-2019", "supercontigs": 125877, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023969395.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/969/395/GCA_023969395.1/genes/GCA_023969395.1_ASM2396939v1.augustus.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_023973825.1", "ncbiTaxonomyId": "5824", "organism": "Plasmodium brasilianum strain Bolivian I", @@ -8108,12 +8109,12 @@ "strain": "strain Bolivian I", "supercontigs": 29, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023973825.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/516/155/GCA_024516155.1/genes/GCA_024516155.1_Pyrom1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_024516155.1", "ncbiTaxonomyId": "337075", "organism": "Pyronema omphalodes CBS 100304", @@ -8121,12 +8122,12 @@ "strain": "CBS 100304", "supercontigs": 260, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024516155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/516/155/GCA_024516155.1/genes/GCA_024516155.1_Pyrom1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/586/265/GCA_024586265.1/genes/GCA_024586265.1_ASM2458626v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_024586265.1", "ncbiTaxonomyId": "323732", "organism": "Babesia duncani strain WA1", @@ -8134,12 +8135,12 @@ "strain": "strain WA1", "supercontigs": 7, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024586265.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/586/265/GCA_024586265.1/genes/GCA_024586265.1_ASM2458626v1.augustus.gtf.gz" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_024862765.1", "ncbiTaxonomyId": "5871", "organism": "Babesia caballi USDA-D6B2", @@ -8147,12 +8148,12 @@ "strain": "USDA-D6B2", "supercontigs": 7, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024862765.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 34, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/025/688/915/GCA_025688915.1/genes/GCA_025688915.1_ASM2568891v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_025688915.1", "ncbiTaxonomyId": "5659", "organism": "Leishmania amazonensis strain PH8", @@ -8160,12 +8161,12 @@ "strain": "strain PH8", "supercontigs": 42, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_025688915.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/025/688/915/GCA_025688915.1/genes/GCA_025688915.1_ASM2568891v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 6, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_026262505.1", "ncbiTaxonomyId": "412133", "organism": "Trichomonas vaginalis G3 2022", @@ -8173,12 +8174,12 @@ "strain": "G3 2022", "supercontigs": 212, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_026262505.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "" + "vEuPathDbProject": "TrichDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/245/GCA_027943245.1/genes/GCA_027943245.1_ASM2794324v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_027943245.1", "ncbiTaxonomyId": "2919604", "organism": "Acanthamoeba sp. SK_2022b", @@ -8186,12 +8187,12 @@ "strain": "SK_2022b", "supercontigs": 1790, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943245.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/245/GCA_027943245.1/genes/GCA_027943245.1_ASM2794324v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/295/GCA_027943295.1/genes/GCA_027943295.1_ASM2794329v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_027943295.1", "ncbiTaxonomyId": "2919605", "organism": "Acanthamoeba sp. SK_2022a", @@ -8199,12 +8200,12 @@ "strain": "SK_2022a", "supercontigs": 2108, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943295.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/295/GCA_027943295.1/genes/GCA_027943295.1_ASM2794329v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/944/975/GCA_027944975.1/genes/GCA_027944975.1_ASM2794497v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_027944975.1", "ncbiTaxonomyId": "2919603", "organism": "Acanthamoeba sp. SK_2022c", @@ -8212,12 +8213,12 @@ "strain": "SK_2022c", "supercontigs": 20778, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027944975.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/944/975/GCA_027944975.1/genes/GCA_027944975.1_ASM2794497v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/028/554/745/GCA_028554745.1/genes/GCA_028554745.1_ASM2855474v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_028554745.1", "ncbiTaxonomyId": "2592485", "organism": "Blastocrithidia nonstop P57", @@ -8225,12 +8226,12 @@ "strain": "P57", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_028554745.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/028/554/745/GCA_028554745.1/genes/GCA_028554745.1_ASM2855474v1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_028658345.1", "ncbiTaxonomyId": "323732", "organism": "Babesia duncani strain WA1 2023", @@ -8238,12 +8239,12 @@ "strain": "strain WA1 2023", "supercontigs": 160, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_028658345.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "vEuPathDbProject": "PiroplasmaDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900002335.2", "ncbiTaxonomyId": "31271", "organism": "Plasmodium chabaudi chabaudi", @@ -8251,12 +8252,12 @@ "strain": "chabaudi", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002335.3", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 5, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900002375.2", "ncbiTaxonomyId": "5823", "organism": "Plasmodium berghei ANKA", @@ -8264,12 +8265,12 @@ "strain": "ANKA", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002375.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900002385.2", "ncbiTaxonomyId": "5861", "organism": "Plasmodium yoelii yoelii 17X", @@ -8277,12 +8278,12 @@ "strain": "yoelii 17X", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/002/395/GCA_900002395.1/genes/GCA_900002395.1_PYYM01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900002395.1", "ncbiTaxonomyId": "5861", "organism": "Plasmodium yoelii yoelii YM", @@ -8290,12 +8291,12 @@ "strain": "yoelii YM", "supercontigs": 181, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900002395.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/002/395/GCA_900002395.1/genes/GCA_900002395.1_PYYM01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 460, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900005765.1", "ncbiTaxonomyId": "85471", "organism": "Plasmodium relictum SGS1-like", @@ -8303,12 +8304,12 @@ "strain": "SGS1-like", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005765.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 152, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900005855.1", "ncbiTaxonomyId": "5849", "organism": "Plasmodium gallinaceum 8A", @@ -8316,12 +8317,12 @@ "strain": "8A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005855.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 155, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/029/915/GCA_900029915.1/genes/GCA_900029915.1_F._proliferatum_NRRL62905_version_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900029915.1", "ncbiTaxonomyId": "948311", "organism": "Fusarium proliferatum strain NRRL62905", @@ -8329,12 +8330,12 @@ "strain": "strain NRRL62905", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900029915.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/029/915/GCA_900029915.1/genes/GCA_900029915.1_F._proliferatum_NRRL62905_version_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900044065.1", "ncbiTaxonomyId": "192010", "organism": "Fusarium mangiferae MRC7560", @@ -8342,12 +8343,12 @@ "strain": "MRC7560", "supercontigs": 254, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900044065.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/044/135/GCA_900044135.1/genes/GCA_900044135.1_GZPH1RResV1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900044135.1", "ncbiTaxonomyId": "5518", "organism": "Fusarium graminearum PH-1", @@ -8355,12 +8356,12 @@ "strain": "PH-1", "supercontigs": 1, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900044135.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/044/135/GCA_900044135.1/genes/GCA_900044135.1_GZPH1RResV1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 32, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900067095.1", "ncbiTaxonomyId": "1227346", "organism": "Fusarium proliferatum ET1", @@ -8368,12 +8369,12 @@ "strain": "ET1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900067095.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 12, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900079805.1", "ncbiTaxonomyId": "1279085", "organism": "Fusarium fujikuroi IMI 58289", @@ -8381,12 +8382,12 @@ "strain": "IMI 58289", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900079805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/025/GCA_900090025.2/genes/GCA_900090025.2_PowCR01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900090025.2", "ncbiTaxonomyId": "36330", "organism": "Plasmodium ovale wallikeri PowCR01", @@ -8394,12 +8395,12 @@ "strain": "wallikeri PowCR01", "supercontigs": 763, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090025.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/025/GCA_900090025.2/genes/GCA_900090025.2_PowCR01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 638, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/035/GCA_900090035.2/genes/GCA_900090035.2_PocGH01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900090035.2", "ncbiTaxonomyId": "36330", "organism": "Plasmodium ovale curtisi GH01", @@ -8407,12 +8408,12 @@ "strain": "curtisi GH01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090035.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/035/GCA_900090035.2/genes/GCA_900090035.2_PocGH01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 47, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900090045.1", "ncbiTaxonomyId": "5858", "organism": "Plasmodium malariae UG01", @@ -8420,12 +8421,12 @@ "strain": "UG01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900090045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 226, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/093/555/GCA_900093555.2/genes/GCA_900093555.2_GCA_900093555.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900093555.2", "ncbiTaxonomyId": "5855", "organism": "Plasmodium vivax P01", @@ -8433,12 +8434,12 @@ "strain": "P01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900093555.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/093/555/GCA_900093555.2/genes/GCA_900093555.2_GCA_900093555.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/095/595/GCA_900095595.1/genes/GCA_900095595.1_PPRFG01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900095595.1", "ncbiTaxonomyId": "880534", "organism": "Plasmodium praefalciparum strain G01", @@ -8446,12 +8447,12 @@ "strain": "strain G01", "supercontigs": 39, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900095595.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/095/595/GCA_900095595.1/genes/GCA_900095595.1_PPRFG01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 68, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900097015.1", "ncbiTaxonomyId": "880535", "organism": "Plasmodium adleri G01", @@ -8459,12 +8460,12 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900097015.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 34, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/025/GCA_900097025.1/genes/GCA_900097025.1_PRG01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900097025.1", "ncbiTaxonomyId": "5854", "organism": "Plasmodium reichenowi G01", @@ -8472,12 +8473,12 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/025/GCA_900097025.1/genes/GCA_900097025.1_PRG01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 83, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/035/GCA_900097035.1/genes/GCA_900097035.1_PBLACG01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900097035.1", "ncbiTaxonomyId": "880536", "organism": "Plasmodium blacklocki G01", @@ -8485,12 +8486,12 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097035.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/035/GCA_900097035.1/genes/GCA_900097035.1_PBLACG01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 82, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/045/GCA_900097045.1/genes/GCA_900097045.1_PGABG01.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900097045.1", "ncbiTaxonomyId": "647221", "organism": "Plasmodium gaboni strain G01", @@ -8498,12 +8499,12 @@ "strain": "strain G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/045/GCA_900097045.1/genes/GCA_900097045.1_PGABG01.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/119/595/GCA_900119595.1/genes/GCA_900119595.1_version_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900119595.1", "ncbiTaxonomyId": "56406", "organism": "Hanseniaspora guilliermondii strain UTAD222", @@ -8511,12 +8512,12 @@ "strain": "strain UTAD222", "supercontigs": 208, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900119595.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/119/595/GCA_900119595.1/genes/GCA_900119595.1_version_1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/149/145/GCA_900149145.1/genes/GCA_900149145.1_Msy_ATCC_42132_Feb2016.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900149145.1", "ncbiTaxonomyId": "1230383", "organism": "Malassezia sympodialis ATCC 42132", @@ -8524,12 +8525,12 @@ "strain": "ATCC 42132", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900149145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/149/145/GCA_900149145.1/genes/GCA_900149145.1_Msy_ATCC_42132_Feb2016.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/162/085/GCA_900162085.1/genes/GCA_900162085.1_PkA1H1_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900162085.1", "ncbiTaxonomyId": "5850", "organism": "Plasmodium knowlesi strain A1H1", @@ -8537,12 +8538,12 @@ "strain": "strain A1H1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900162085.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/162/085/GCA_900162085.1/genes/GCA_900162085.1_PkA1H1_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 40, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/180/395/GCA_900180395.1/genes/GCA_900180395.1_PcyM.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900180395.1", "ncbiTaxonomyId": "5827", "organism": "Plasmodium cynomolgi strain M", @@ -8550,12 +8551,12 @@ "strain": "strain M", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900180395.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/180/395/GCA_900180395.1/genes/GCA_900180395.1_PcyM.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 21, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/184/105/GCA_900184105.1/genes/GCA_900184105.1_ST99CH_3D1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900184105.1", "ncbiTaxonomyId": "1276537", "organism": "Zymoseptoria tritici ST99CH_3D1", @@ -8563,12 +8564,12 @@ "strain": "ST99CH_3D1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900184105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/184/105/GCA_900184105.1/genes/GCA_900184105.1_ST99CH_3D1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/231/805/GCA_900231805.1/genes/GCA_900231805.1_PRJEB22701.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900231805.1", "ncbiTaxonomyId": "43075", "organism": "Trichomonas tenax strain NIH4 ATCC 30207", @@ -8576,12 +8577,12 @@ "strain": "strain NIH4 ATCC 30207", "supercontigs": 4161, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900231805.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/231/805/GCA_900231805.1/genes/GCA_900231805.1_PRJEB22701.augustus.gtf.gz" + "vEuPathDbProject": "TrichDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/237/765/GCA_900237765.1/genes/GCA_900237765.1_BghRACE1_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900237765.1", "ncbiTaxonomyId": "2867405", "organism": "Blumeria hordei strain RACE1", @@ -8589,12 +8590,12 @@ "strain": "strain RACE1", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900237765.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/237/765/GCA_900237765.1/genes/GCA_900237765.1_BghRACE1_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 19, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/248/155/GCA_900248155.1/genes/GCA_900248155.1_Aniger_ATCC_64974_N402.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900248155.1", "ncbiTaxonomyId": "5061", "organism": "Aspergillus niger strain N402 (ATCC64974)", @@ -8602,12 +8603,12 @@ "strain": "strain N402 (ATCC64974)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900248155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/248/155/GCA_900248155.1/genes/GCA_900248155.1_Aniger_ATCC_64974_N402.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 8469, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/252/365/GCA_900252365.1/genes/GCA_900252365.1_TcIII_231rod.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900252365.1", "ncbiTaxonomyId": "5693", "organism": "Trypanosoma cruzi strain 231", @@ -8615,12 +8616,12 @@ "strain": "strain 231", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900252365.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/252/365/GCA_900252365.1/genes/GCA_900252365.1_TcIII_231rod.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/257/145/GCA_900257145.2/genes/GCA_900257145.2_Plasmodium_billcollinsi.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900257145.2", "ncbiTaxonomyId": "720590", "organism": "Plasmodium billcollinsi G01", @@ -8628,12 +8629,12 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900257145.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/257/145/GCA_900257145.2/genes/GCA_900257145.2_Plasmodium_billcollinsi.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/290/415/GCA_900290415.1/genes/GCA_900290415.1_version1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900290415.1", "ncbiTaxonomyId": "48703", "organism": "Podospora comata strain T mat+", @@ -8641,12 +8642,12 @@ "strain": "strain T mat+", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900290415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/290/415/GCA_900290415.1/genes/GCA_900290415.1_version1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/491/785/GCA_900491785.1/genes/GCA_900491785.1_S_ludwigii_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900491785.1", "ncbiTaxonomyId": "36035", "organism": "Saccharomycodes ludwigii UTAD17", @@ -8654,12 +8655,12 @@ "strain": "UTAD17", "supercontigs": 1360, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900491785.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/491/785/GCA_900491785.1/genes/GCA_900491785.1_S_ludwigii_v1.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 44, "contigs": 272, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/497/135/GCA_900497135.1/genes/GCA_900497135.1_HGAP3_Tb427v9.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900497135.1", "ncbiTaxonomyId": "5702", "organism": "Trypanosoma brucei Lister strain 427 2018", @@ -8667,12 +8668,12 @@ "strain": "Lister strain 427 2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900497135.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/497/135/GCA_900497135.1/genes/GCA_900497135.1_HGAP3_Tb427v9.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/500/625/GCA_900500625.2/genes/GCA_900500625.2_LINF.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900500625.2", "ncbiTaxonomyId": "5671", "organism": "Leishmania infantum JPCM5", @@ -8680,12 +8681,12 @@ "strain": "JPCM5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900500625.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/500/625/GCA_900500625.2/genes/GCA_900500625.2_LINF.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 12, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/519/115/GCA_900519115.1/genes/GCA_900519115.1_Bgt_genome_v3.16.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900519115.1", "ncbiTaxonomyId": "62690", "organism": "Blumeria graminis f. sp. tritici 96224", @@ -8693,12 +8694,12 @@ "strain": "f. sp. tritici 96224", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900519115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/519/115/GCA_900519115.1/genes/GCA_900519115.1_Bgt_genome_v3.16.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 14, "contigs": 5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/617/135/GCA_900617135.1/genes/GCA_900617135.1_PfCD01-2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900617135.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum CD01", @@ -8706,12 +8707,12 @@ "strain": "CD01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900617135.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/617/135/GCA_900617135.1/genes/GCA_900617135.1_PfCD01-2.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/975/GCA_900631975.1/genes/GCA_900631975.1_PfKE01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900631975.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum KE01", @@ -8719,12 +8720,12 @@ "strain": "KE01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631975.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/975/GCA_900631975.1/genes/GCA_900631975.1_PfKE01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 12, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/985/GCA_900631985.1/genes/GCA_900631985.1_PfHB3-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900631985.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum HB3", @@ -8732,12 +8733,12 @@ "strain": "HB3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631985.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/985/GCA_900631985.1/genes/GCA_900631985.1_PfHB3-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 3, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/995/GCA_900631995.1/genes/GCA_900631995.1_PfGN01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900631995.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum GN01", @@ -8745,12 +8746,12 @@ "strain": "GN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631995.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/995/GCA_900631995.1/genes/GCA_900631995.1_PfGN01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 4, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/005/GCA_900632005.1/genes/GCA_900632005.1_PfGA01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632005.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum GA01", @@ -8758,12 +8759,12 @@ "strain": "GA01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/005/GCA_900632005.1/genes/GCA_900632005.1_PfGA01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/015/GCA_900632015.1/genes/GCA_900632015.1_PfKH02-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632015.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum KH02", @@ -8771,12 +8772,12 @@ "strain": "KH02", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632015.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/015/GCA_900632015.1/genes/GCA_900632015.1_PfKH02-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 6, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/025/GCA_900632025.1/genes/GCA_900632025.1_PfKH01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632025.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum KH01", @@ -8784,12 +8785,12 @@ "strain": "KH01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/025/GCA_900632025.1/genes/GCA_900632025.1_PfKH01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 10, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/035/GCA_900632035.1/genes/GCA_900632035.1_PfGB4-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632035.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum GB4", @@ -8797,12 +8798,12 @@ "strain": "GB4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632035.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/035/GCA_900632035.1/genes/GCA_900632035.1_PfGB4-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/045/GCA_900632045.1/genes/GCA_900632045.1_PfDd2-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632045.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum Dd2", @@ -8810,12 +8811,12 @@ "strain": "Dd2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/045/GCA_900632045.1/genes/GCA_900632045.1_PfDd2-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 11, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/055/GCA_900632055.1/genes/GCA_900632055.1_PfIT-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632055.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum IT", @@ -8823,12 +8824,12 @@ "strain": "IT", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632055.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/055/GCA_900632055.1/genes/GCA_900632055.1_PfIT-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 63, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/065/GCA_900632065.1/genes/GCA_900632065.1_PfTG01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632065.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum TG01", @@ -8836,12 +8837,12 @@ "strain": "TG01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632065.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/065/GCA_900632065.1/genes/GCA_900632065.1_PfTG01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 20, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/075/GCA_900632075.1/genes/GCA_900632075.1_PfSN01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632075.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum SN01", @@ -8849,12 +8850,12 @@ "strain": "SN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632075.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/075/GCA_900632075.1/genes/GCA_900632075.1_PfSN01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 101, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/085/GCA_900632085.1/genes/GCA_900632085.1_PfML01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632085.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum ML01", @@ -8862,12 +8863,12 @@ "strain": "ML01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632085.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/085/GCA_900632085.1/genes/GCA_900632085.1_PfML01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 13, "contigs": 4, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/095/GCA_900632095.1/genes/GCA_900632095.1_PfSD01-3.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900632095.1", "ncbiTaxonomyId": "5833", "organism": "Plasmodium falciparum SD01", @@ -8875,12 +8876,12 @@ "strain": "SD01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632095.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/095/GCA_900632095.1/genes/GCA_900632095.1_PfSD01-3.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/635/355/GCA_900635355.2/genes/GCA_900635355.2_LDHU3_new.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_900635355.2", "ncbiTaxonomyId": "5661", "organism": "Leishmania donovani HU3", @@ -8888,12 +8889,12 @@ "strain": "HU3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900635355.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/635/355/GCA_900635355.2/genes/GCA_900635355.2_LDHU3_new.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "", "genomeVersionAssemblyId": "GCA_900681995.1", "ncbiTaxonomyId": "54757", "organism": "Plasmodium vinckei vinckei CY", @@ -8901,12 +8902,12 @@ "strain": "vinckei CY", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/459/845/GCA_902459845.2/genes/GCA_902459845.2_HEP1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_902459845.2", "ncbiTaxonomyId": "2600580", "organism": "Hepatocystis sp. ex Piliocolobus tephrosceles 2019", @@ -8914,12 +8915,12 @@ "strain": "2019", "supercontigs": 2439, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902459845.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/459/845/GCA_902459845.2/genes/GCA_902459845.2_HEP1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/651/635/GCA_902651635.1/genes/GCA_902651635.1_mastiga_genome_v5.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_902651635.1", "ncbiTaxonomyId": "108607", "organism": "Mastigamoeba balamuthi ATCC 30984", @@ -8927,12 +8928,12 @@ "strain": "ATCC 30984", "supercontigs": 1925, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902651635.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/651/635/GCA_902651635.1/genes/GCA_902651635.1_mastiga_genome_v5.1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/205/GCA_903994205.1/genes/GCA_903994205.1_PVBDA_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_903994205.1", "ncbiTaxonomyId": "119398", "organism": "Plasmodium vinckei brucechwatti DA", @@ -8940,12 +8941,12 @@ "strain": "brucechwatti DA", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994205.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/205/GCA_903994205.1/genes/GCA_903994205.1_PVBDA_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/225/GCA_903994225.1/genes/GCA_903994225.1_PVLDE_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_903994225.1", "ncbiTaxonomyId": "138297", "organism": "Plasmodium vinckei lentum DE", @@ -8953,12 +8954,12 @@ "strain": "lentum DE", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994225.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/225/GCA_903994225.1/genes/GCA_903994225.1_PVLDE_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/235/GCA_903994235.1/genes/GCA_903994235.1_PVPCR_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_903994235.1", "ncbiTaxonomyId": "138298", "organism": "Plasmodium vinckei petteri CR 2020", @@ -8966,12 +8967,12 @@ "strain": "petteri CR 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994235.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/235/GCA_903994235.1/genes/GCA_903994235.1_PVPCR_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/265/GCA_903994265.1/genes/GCA_903994265.1_PVSEL_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_903994265.1", "ncbiTaxonomyId": "5860", "organism": "Plasmodium vinckei Cameroon EL", @@ -8979,12 +8980,12 @@ "strain": "Cameroon EL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994265.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/265/GCA_903994265.1/genes/GCA_903994265.1_PVSEL_v1.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 29, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/995/115/GCA_903995115.1/genes/GCA_903995115.1_Adeanei_nanopore_chromosomes.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_903995115.1", "ncbiTaxonomyId": "59799", "organism": "Angomonas deanei strain Cavalho ATCC PRA-265", @@ -8992,12 +8993,12 @@ "strain": "strain Cavalho ATCC PRA-265", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903995115.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/995/115/GCA_903995115.1/genes/GCA_903995115.1_Adeanei_nanopore_chromosomes.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/067/625/GCA_905067625.1/genes/GCA_905067625.1_Bgtriticale_THUN12_genome_v1_2.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_905067625.1", "ncbiTaxonomyId": "1689686", "organism": "Blumeria graminis f. sp. triticale THUN-12", @@ -9005,12 +9006,12 @@ "strain": "f. sp. triticale THUN-12", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905067625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/067/625/GCA_905067625.1/genes/GCA_905067625.1_Bgtriticale_THUN12_genome_v1_2.augustus.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 15, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/310/635/GCA_905310635.1/genes/GCA_905310635.1_pEimTen1.1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_905310635.1", "ncbiTaxonomyId": "5802", "organism": "Eimeria tenella Houghton 2021", @@ -9018,12 +9019,12 @@ "strain": "Houghton 2021", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905310635.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/310/635/GCA_905310635.1/genes/GCA_905310635.1_pEimTen1.1.augustus.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/914/969/965/GCA_914969965.1/genes/GCA_914969965.1_5987STDY8548200.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_914969965.1", "ncbiTaxonomyId": "5855", "organism": "Plasmodium vivax PvW1", @@ -9031,12 +9032,12 @@ "strain": "PvW1", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_914969965.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/914/969/965/GCA_914969965.1/genes/GCA_914969965.1_5987STDY8548200.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 36, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/916/722/125/GCA_916722125.1/genes/GCA_916722125.1_LMJFC_annotationDEFINITIVO.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_916722125.1", "ncbiTaxonomyId": "347515", "organism": "Leishmania major Friedlin 2021", @@ -9044,12 +9045,12 @@ "strain": "Friedlin 2021", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_916722125.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/916/722/125/GCA_916722125.1/genes/GCA_916722125.1_LMJFC_annotationDEFINITIVO.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/895/GCA_917563895.1/genes/GCA_917563895.1_Assembly_1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_917563895.1", "ncbiTaxonomyId": "294381", "organism": "Entamoeba histolytica Rahman", @@ -9057,12 +9058,12 @@ "strain": "Rahman", "supercontigs": 18523, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563895.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/895/GCA_917563895.1/genes/GCA_917563895.1_Assembly_1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 13, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/935/GCA_917563935.1/genes/GCA_917563935.1_Assembly1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_917563935.1", "ncbiTaxonomyId": "5697", "organism": "Trypanosoma evansi strain STIB 805", @@ -9070,12 +9071,12 @@ "strain": "strain STIB 805", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563935.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/935/GCA_917563935.1/genes/GCA_917563935.1_Assembly1.augustus.gtf.gz" + "vEuPathDbProject": "TriTrypDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/949/152/365/GCA_949152365.1/genes/GCA_949152365.1_PVPAM.augustus.gtf.gz", "genomeVersionAssemblyId": "GCA_949152365.1", "ncbiTaxonomyId": "5855", "organism": "Plasmodium vivax PAM", @@ -9083,12 +9084,12 @@ "strain": "PAM", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_949152365.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/949/152/365/GCA_949152365.1/genes/GCA_949152365.1_PVPAM.augustus.gtf.gz" + "vEuPathDbProject": "PlasmoDB" }, { "chromosomes": 7, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/004/695/GCF_000004695.1/genes/GCF_000004695.1_dicty_2.7.augustus.gtf.gz", "genomeVersionAssemblyId": "GCF_000004695.1", "ncbiTaxonomyId": "352472", "organism": "Dictyostelium discoideum AX4", @@ -9096,12 +9097,12 @@ "strain": "AX4", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000004695.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/004/695/GCF_000004695.1/genes/GCF_000004695.1_dicty_2.7.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/515/GCF_000006515.1/genes/GCF_000006515.1_JCVI_cmg_v1.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_000006515.1", "ncbiTaxonomyId": "441375", "organism": "Cryptosporidium muris RN66", @@ -9109,12 +9110,12 @@ "strain": "RN66", "supercontigs": 84, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006515.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/515/GCF_000006515.1/genes/GCF_000006515.1_JCVI_cmg_v1.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "CryptoDB" }, { "chromosomes": 14, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_000006565.2", "ncbiTaxonomyId": "508771", "organism": "Toxoplasma gondii ME49", @@ -9122,12 +9123,12 @@ "strain": "ME49", "supercontigs": 2248, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/805/GCF_000182805.3/genes/GCF_000182805.3_ASM18280v2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_000182805.3", "ncbiTaxonomyId": "771870", "organism": "Sordaria macrospora k-hell", @@ -9135,12 +9136,12 @@ "strain": "k-hell", "supercontigs": 1212, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182805.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/805/GCF_000182805.3/genes/GCF_000182805.3_ASM18280v2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/190/715/GCF_000190715.1/genes/GCF_000190715.1_v1.0.augustus.gtf.gz", "genomeVersionAssemblyId": "GCF_000190715.1", "ncbiTaxonomyId": "5786", "organism": "Dictyostelium purpureum QSDP1", @@ -9148,12 +9149,12 @@ "strain": "QSDP1", "supercontigs": 799, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190715.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/190/715/GCF_000190715.1/genes/GCF_000190715.1_v1.0.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/257/125/GCF_000257125.1/genes/GCF_000257125.1_ENU1_v1.augustus.gtf.gz", "genomeVersionAssemblyId": "GCF_000257125.1", "ncbiTaxonomyId": "1076696", "organism": "Entamoeba nuttalli P19", @@ -9161,12 +9162,12 @@ "strain": "P19", "supercontigs": 5233, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000257125.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/257/125/GCF_000257125.1/genes/GCF_000257125.1_ENU1_v1.augustus.gtf.gz" + "vEuPathDbProject": "AmoebaDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/315/645/GCF_000315645.1/genes/GCF_000315645.1_PdigPd1_v1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_000315645.1", "ncbiTaxonomyId": "1170230", "organism": "Penicillium digitatum Pd1", @@ -9174,12 +9175,12 @@ "strain": "Pd1", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000315645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/315/645/GCF_000315645.1/genes/GCF_000315645.1_PdigPd1_v1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 21, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/364/345/GCF_000364345.1/genes/GCF_000364345.1_Macaca_fascicularis_5.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_000364345.1", "ncbiTaxonomyId": "9541", "organism": "Macaca fascicularis REF", @@ -9187,12 +9188,12 @@ "strain": "REF", "supercontigs": 7579, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000364345.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/364/345/GCF_000364345.1/genes/GCF_000364345.1_Macaca_fascicularis_5.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/299/255/GCF_001299255.1/genes/GCF_001299255.1_ASM129925v1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_001299255.1", "ncbiTaxonomyId": "1664694", "organism": "Phialophora attinorum CBS 131958", @@ -9200,12 +9201,12 @@ "strain": "CBS 131958", "supercontigs": 131, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001299255.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/299/255/GCF_001299255.1/genes/GCF_001299255.1_ASM129925v1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 8, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/417/885/GCF_001417885.1/genes/GCF_001417885.1_Kmar_1.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_001417885.1", "ncbiTaxonomyId": "1003335", "organism": "Kluyveromyces marxianus DMKU3-1042", @@ -9213,12 +9214,12 @@ "strain": "DMKU3-1042", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001417885.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/417/885/GCF_001417885.1/genes/GCF_001417885.1_Kmar_1.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/477/545/GCF_001477545.1/genes/GCF_001477545.1_Pneu_cari_B80_V3.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_001477545.1", "ncbiTaxonomyId": "1408658", "organism": "Pneumocystis carinii B80", @@ -9226,12 +9227,12 @@ "strain": "B80", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/477/545/GCF_001477545.1/genes/GCF_001477545.1_Pneu_cari_B80_V3.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/876/365/GCF_001876365.2/genes/GCF_001876365.2_canu_80X_arrow2.2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_001876365.2", "ncbiTaxonomyId": "7160", "organism": "Aedes albopictus C6/36 cell line", @@ -9239,12 +9240,12 @@ "strain": "C6/36 cell line", "supercontigs": 2434, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001876365.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/876/365/GCF_001876365.2/genes/GCF_001876365.2_canu_80X_arrow2.2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 738, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/002/999/335/GCF_002999335.1/genes/GCF_002999335.1_CcayRef3.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_002999335.1", "ncbiTaxonomyId": "88456", "organism": "Cyclospora cayetanensis isolate NF1_C8", @@ -9252,12 +9253,12 @@ "strain": "isolate NF1_C8", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002999335.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/002/999/335/GCF_002999335.1/genes/GCF_002999335.1_CcayRef3.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "ToxoDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/004/022/145/GCF_004022145.1/genes/GCF_004022145.1_Paevar1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_004022145.1", "ncbiTaxonomyId": "264951", "organism": "Paecilomyces variotii CBS 101075", @@ -9265,12 +9266,12 @@ "strain": "CBS 101075", "supercontigs": 86, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004022145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/004/022/145/GCF_004022145.1/genes/GCF_004022145.1_Paevar1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/141/755/GCF_013141755.1/genes/GCF_013141755.1_UCI_ANSTEP_V1.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_013141755.1", "ncbiTaxonomyId": "30069", "organism": "Anopheles stephensi UCISS2018", @@ -9278,12 +9279,12 @@ "strain": "UCISS2018", "supercontigs": 491, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013141755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/141/755/GCF_013141755.1/genes/GCF_013141755.1_UCI_ANSTEP_V1.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 11, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/339/695/GCF_013339695.2/genes/GCF_013339695.2_BIME_Rsan_1.4.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_013339695.2", "ncbiTaxonomyId": "34632", "organism": "Rhipicephalus sanguineus Rsan-2018", @@ -9291,12 +9292,12 @@ "strain": "Rsan-2018", "supercontigs": 2316, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339695.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/339/695/GCF_013339695.2/genes/GCF_013339695.2_BIME_Rsan_1.4.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/758/885/GCF_013758885.1/genes/GCF_013758885.1_VT_AalbS3_pri_1.0.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_013758885.1", "ncbiTaxonomyId": "7167", "organism": "Anopheles albimanus STECLA 2020", @@ -9304,12 +9305,12 @@ "strain": "STECLA 2020", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013758885.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/758/885/GCF_013758885.1/genes/GCF_013758885.1_VT_AalbS3_pri_1.0.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/108/235/GCF_014108235.1/genes/GCF_014108235.1_mMyoMyo1.p.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_014108235.1", "ncbiTaxonomyId": "51298", "organism": "Myotis myotis mMyoMyo1", @@ -9317,12 +9318,12 @@ "strain": "mMyoMyo1", "supercontigs": 92, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014108235.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/108/235/GCF_014108235.1/genes/GCF_014108235.1_mMyoMyo1.p.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/466/165/GCF_014466165.1/genes/GCF_014466165.1_ASM1446616v1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_014466165.1", "ncbiTaxonomyId": "5322", "organism": "Pleurotus ostreatus PC9", @@ -9330,12 +9331,12 @@ "strain": "PC9", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014466165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/466/165/GCF_014466165.1/genes/GCF_014466165.1_ASM1446616v1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 41, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/699/485/GCF_016699485.2/genes/GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_016699485.2", "ncbiTaxonomyId": "9031", "organism": "Gallus gallus isolate bGalGal1", @@ -9343,12 +9344,12 @@ "strain": "isolate bGalGal1", "supercontigs": 172, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016699485.2", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/699/485/GCF_016699485.2/genes/GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "HostDB" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/705/GCF_016920705.1/genes/GCF_016920705.1_AcolMOP1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_016920705.1", "ncbiTaxonomyId": "1518534", "organism": "Anopheles coluzzii MOPTI", @@ -9356,12 +9357,12 @@ "strain": "MOPTI", "supercontigs": 196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920705.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/705/GCF_016920705.1/genes/GCF_016920705.1_AcolMOP1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/715/GCF_016920715.1/genes/GCF_016920715.1_AaraD3.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_016920715.1", "ncbiTaxonomyId": "7173", "organism": "Anopheles arabiensis DONGOLA 2021", @@ -9369,12 +9370,12 @@ "strain": "DONGOLA 2021", "supercontigs": 98, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920715.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/715/GCF_016920715.1/genes/GCF_016920715.1_AaraD3.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/785/GCF_016920785.2/genes/GCF_016920785.2_ASM1692078v2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_016920785.2", "ncbiTaxonomyId": "6945", "organism": "Ixodes scapularis PalLabHiFi", @@ -9382,12 +9383,12 @@ "strain": "PalLabHiFi", "supercontigs": 648, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920785.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/785/GCF_016920785.2/genes/GCF_016920785.2_ASM1692078v2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/017/562/075/GCF_017562075.2/genes/GCF_017562075.2_AmerM5.1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_017562075.2", "ncbiTaxonomyId": "30066", "organism": "Anopheles merus MAF 2021", @@ -9395,12 +9396,12 @@ "strain": "MAF 2021", "supercontigs": 1322, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017562075.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/017/562/075/GCF_017562075.2/genes/GCF_017562075.2_AmerM5.1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/020/744/495/GCF_020744495.1/genes/GCF_020744495.1_Fusso1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_020744495.1", "ncbiTaxonomyId": "169388", "organism": "Fusarium solani FSSC 5 MPI-SDFR-AT-0091", @@ -9408,12 +9409,12 @@ "strain": "FSSC 5 MPI-SDFR-AT-0091", "supercontigs": 74, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_020744495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/020/744/495/GCF_020744495.1/genes/GCF_020744495.1_Fusso1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "FungiDB" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/023/375/885/GCF_023375885.1/genes/GCF_023375885.1_qqDerAnde1.2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_023375885.1", "ncbiTaxonomyId": "34620", "organism": "Dermacentor andersoni qqDerAnde1.2", @@ -9421,12 +9422,12 @@ "strain": "qqDerAnde1.2", "supercontigs": 3118, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023375885.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/023/375/885/GCF_023375885.1/genes/GCF_023375885.1_qqDerAnde1.2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/334/085/GCF_024334085.1/genes/GCF_024334085.1_ASM2433408v1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_024334085.1", "ncbiTaxonomyId": "7200", "organism": "Lutzomyia longipalpis M1", @@ -9434,12 +9435,12 @@ "strain": "M1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024334085.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/334/085/GCF_024334085.1/genes/GCF_024334085.1_ASM2433408v1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 5, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/763/615/GCF_024763615.1/genes/GCF_024763615.1_Ppap_2.1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_024763615.1", "ncbiTaxonomyId": "29031", "organism": "Phlebotomus papatasi M1", @@ -9447,12 +9448,12 @@ "strain": "M1", "supercontigs": 640, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024763615.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/763/615/GCF_024763615.1/genes/GCF_024763615.1_Ppap_2.1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/030/504/385/GCF_030504385.1/genes/GCF_030504385.1_Musca_domestica.polishedcontigs.V.1.1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_030504385.1", "ncbiTaxonomyId": "7370", "organism": "Musca domestica aabys 2023", @@ -9460,12 +9461,12 @@ "strain": "aabys 2023", "supercontigs": 339, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_030504385.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/030/504/385/GCF_030504385.1/genes/GCF_030504385.1_Musca_domestica.polishedcontigs.V.1.1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/635/GCF_943734635.1/genes/GCF_943734635.1_idAnoCruzAS_RS32_06.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734635.1", "ncbiTaxonomyId": "68878", "organism": "Anopheles cruzii AcruBR1", @@ -9473,12 +9474,12 @@ "strain": "AcruBR1", "supercontigs": 5085, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734635.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/635/GCF_943734635.1/genes/GCF_943734635.1_idAnoCruzAS_RS32_06.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/655/GCF_943734655.1/genes/GCF_943734655.1_idSabCyanKW18_F2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734655.1", "ncbiTaxonomyId": "53552", "organism": "Sabethes cyaneus ScyaPA1", @@ -9486,12 +9487,12 @@ "strain": "ScyaPA1", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734655.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/655/GCF_943734655.1/genes/GCF_943734655.1_idSabCyanKW18_F2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 4, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/665/GCF_943734665.1/genes/GCF_943734665.1_idAnoAquaMG_Q_19.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734665.1", "ncbiTaxonomyId": "42839", "organism": "Anopheles aquasalis AaquGF1", @@ -9499,12 +9500,12 @@ "strain": "AaquGF1", "supercontigs": 86, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734665.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/665/GCF_943734665.1/genes/GCF_943734665.1_idAnoAquaMG_Q_19.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/685/GCF_943734685.1/genes/GCF_943734685.1_AcolN3.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734685.1", "ncbiTaxonomyId": "1518534", "organism": "Anopheles coluzzii AcolN3", @@ -9512,12 +9513,12 @@ "strain": "AcolN3", "supercontigs": 125, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734685.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/685/GCF_943734685.1/genes/GCF_943734685.1_AcolN3.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/695/GCF_943734695.1/genes/GCF_943734695.1_idAnoMacuDA_375_x.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734695.1", "ncbiTaxonomyId": "1496333", "organism": "Anopheles maculipalpis AmacGA1", @@ -9525,12 +9526,12 @@ "strain": "AmacGA1", "supercontigs": 167, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734695.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/695/GCF_943734695.1/genes/GCF_943734695.1_idAnoMacuDA_375_x.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/705/GCF_943734705.1/genes/GCF_943734705.1_idAnoCousDA_361_x.2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734705.1", "ncbiTaxonomyId": "139045", "organism": "Anopheles coustani AcouGA1", @@ -9538,12 +9539,12 @@ "strain": "AcouGA1", "supercontigs": 416, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734705.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/705/GCF_943734705.1/genes/GCF_943734705.1_idAnoCousDA_361_x.2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/725/GCF_943734725.1/genes/GCF_943734725.1_idAnoMarsDA_429_01.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734725.1", "ncbiTaxonomyId": "1521116", "organism": "Anopheles marshallii AmarGA1", @@ -9551,12 +9552,12 @@ "strain": "AmarGA1", "supercontigs": 285, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734725.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/725/GCF_943734725.1/genes/GCF_943734725.1_idAnoMarsDA_429_01.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734735.2", "ncbiTaxonomyId": "7165", "organism": "Anopheles gambiae Ifakara", @@ -9564,12 +9565,12 @@ "strain": "Ifakara", "supercontigs": 187, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/745/GCF_943734745.1/genes/GCF_943734745.1_idAnoDarlMG_H_01.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734745.1", "ncbiTaxonomyId": "43151", "organism": "Anopheles darlingi AdarGF1", @@ -9577,12 +9578,12 @@ "strain": "AdarGF1", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734745.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/745/GCF_943734745.1/genes/GCF_943734745.1_idAnoDarlMG_H_01.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/755/GCF_943734755.1/genes/GCF_943734755.1_idAnoMoucSN_F20_07.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734755.1", "ncbiTaxonomyId": "186751", "organism": "Anopheles moucheti AmouCM1", @@ -9590,12 +9591,12 @@ "strain": "AmouCM1", "supercontigs": 342, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/755/GCF_943734755.1/genes/GCF_943734755.1_idAnoMoucSN_F20_07.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/765/GCF_943734765.1/genes/GCF_943734765.1_idAnoZiCoDA_A2_x.2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734765.1", "ncbiTaxonomyId": "345580", "organism": "Anopheles ziemanni AzieGA1", @@ -9603,12 +9604,12 @@ "strain": "AzieGA1", "supercontigs": 416, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/765/GCF_943734765.1/genes/GCF_943734765.1_idAnoZiCoDA_A2_x.2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/845/GCF_943734845.2/genes/GCF_943734845.2_idAnoFuneDA-416_04.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943734845.2", "ncbiTaxonomyId": "62324", "organism": "Anopheles funestus AfunGA1", @@ -9616,12 +9617,12 @@ "strain": "AfunGA1", "supercontigs": 326, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734845.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/845/GCF_943734845.2/genes/GCF_943734845.2_idAnoFuneDA-416_04.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/735/745/GCF_943735745.2/genes/GCF_943735745.2_idAnoBellAS_SP24_06.2.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943735745.2", "ncbiTaxonomyId": "139047", "organism": "Anopheles bellator AbelBR1", @@ -9629,12 +9630,12 @@ "strain": "AbelBR1", "supercontigs": 2982, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943735745.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/735/745/GCF_943735745.2/genes/GCF_943735745.2_idAnoBellAS_SP24_06.2.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 3, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/737/925/GCF_943737925.1/genes/GCF_943737925.1_idAnoNiliSN_F5_01.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_943737925.1", "ncbiTaxonomyId": "185578", "organism": "Anopheles nili AnilCM1", @@ -9642,12 +9643,12 @@ "strain": "AnilCM1", "supercontigs": 153, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943737925.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/737/925/GCF_943737925.1/genes/GCF_943737925.1_idAnoNiliSN_F5_01.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 0, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/086/385/GCF_947086385.1/genes/GCF_947086385.1_Phlebotomus_argentipes_genome_assembly.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_947086385.1", "ncbiTaxonomyId": "94469", "organism": "Phlebotomus argentipes India", @@ -9655,12 +9656,12 @@ "strain": "India", "supercontigs": 64, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947086385.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/086/385/GCF_947086385.1/genes/GCF_947086385.1_Phlebotomus_argentipes_genome_assembly.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" }, { "chromosomes": 18, "contigs": 0, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/242/115/GCF_947242115.1/genes/GCF_947242115.1_xgBioGlab47.1.ncbiRefSeq.gtf.gz", "genomeVersionAssemblyId": "GCF_947242115.1", "ncbiTaxonomyId": "6526", "organism": "Biomphalaria glabrata XG47", @@ -9668,7 +9669,6 @@ "strain": "XG47", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947242115.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/242/115/GCF_947242115.1/genes/GCF_947242115.1_xgBioGlab47.1.ncbiRefSeq.gtf.gz" + "vEuPathDbProject": "VectorBase" } ] diff --git a/package-lock.json b/package-lock.json index 354bd27..6bcc384 100644 --- a/package-lock.json +++ b/package-lock.json @@ -44,7 +44,7 @@ "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^9.2.1", - "csv-parse": "^5.5.6", + "csv-parse": "^5.6.0", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^9.1.0", @@ -7123,9 +7123,9 @@ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" }, "node_modules/csv-parse": { - "version": "5.5.6", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.6.tgz", - "integrity": "sha512-uNpm30m/AGSkLxxy7d9yRXpJQFrZzVWLFBkS+6ngPcZkw/5k3L/jjFuj7tVnEpRn+QgmiXr21nDlhCiUK4ij2A==", + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.6.0.tgz", + "integrity": "sha512-l3nz3euub2QMg5ouu5U09Ew9Wf6/wQ8I++ch1loQ0ljmzhmfZYrH9fflS22i/PQEvsPvxCwxgz5q7UB8K1JO4Q==", "dev": true }, "node_modules/damerau-levenshtein": { diff --git a/package.json b/package.json index 12d0c3e..7a659c4 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "@types/uuid": "8.3.4", "@typescript-eslint/eslint-plugin": "^8.18.0", "babel-loader": "^9.2.1", - "csv-parse": "^5.5.6", + "csv-parse": "^5.6.0", "eslint": "^8.57.1", "eslint-config-next": "^15.0.4", "eslint-config-prettier": "^9.1.0", From f9ca6e278d81d75cc58b773cac5b3c3c40476004 Mon Sep 17 00:00:00 2001 From: jpaten Date: Mon, 9 Dec 2024 19:03:52 -0800 Subject: [PATCH 10/11] chore: updated husky (#195) --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6bcc384..c10448a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -57,7 +57,7 @@ "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", - "husky": "^9.1.5", + "husky": "^9.1.7", "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", "next-mdx-remote": "^4.2.0", @@ -9431,9 +9431,9 @@ } }, "node_modules/husky": { - "version": "9.1.5", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.5.tgz", - "integrity": "sha512-rowAVRUBfI0b4+niA4SJMhfQwc107VLkBUgEYYAOQAbqDCnra1nYh83hF/MDmhYs9t9n1E3DuKOrs2LYNC+0Ag==", + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", + "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", "dev": true, "bin": { "husky": "bin.js" diff --git a/package.json b/package.json index 7a659c4..64b44e2 100644 --- a/package.json +++ b/package.json @@ -63,7 +63,7 @@ "eslint-plugin-typescript-sort-keys": "^3.3.0", "esrun": "^3.2.26", "gray-matter": "^4.0.3", - "husky": "^9.1.5", + "husky": "^9.1.7", "jest": "^29.4.1", "jest-environment-jsdom": "^29.4.1", "next-mdx-remote": "^4.2.0", From a0973e6e8eafd7dc7b04daec772e6374e32397af Mon Sep 17 00:00:00 2001 From: jpaten Date: Thu, 12 Dec 2024 22:09:16 -0800 Subject: [PATCH 11/11] chore: removed empty Props interface from figure.styles.tsx (#195) --- .eslintrc.json | 1 - app/components/common/Figure/figure.styles.ts | 4 +--- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index bc39777..a1ad41b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -58,7 +58,6 @@ "jsdoc/check-alignment": "error", "jsdoc/check-param-names": "error", "react-hooks/exhaustive-deps": "error", - "@typescript-eslint/no-empty-object-type": "warn", "sonarjs/redundant-type-aliases": "warn" }, "overrides": [ diff --git a/app/components/common/Figure/figure.styles.ts b/app/components/common/Figure/figure.styles.ts index bbf82e5..b2d9251 100644 --- a/app/components/common/Figure/figure.styles.ts +++ b/app/components/common/Figure/figure.styles.ts @@ -3,9 +3,7 @@ import { inkLight } from "@databiosphere/findable-ui/lib/styles/common/mixins/co import { textBodyLarge4002Lines } from "@databiosphere/findable-ui/lib/styles/common/mixins/fonts"; import styled from "@emotion/styled"; -interface Props {} - -export const Figure = styled.figure` +export const Figure = styled.figure` margin: 16px 0; img {