From 93db4ad3781ec2a0ed27f952e99f80e0a833cbc1 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sun, 20 Oct 2024 17:23:40 -0700 Subject: [PATCH 01/15] feat: make analysis buttons open workflow landing pages (#137) --- .../brc-analytics-catalog/common/constants.ts | 8 ++++ .../brc-analytics-catalog/common/entities.ts | 9 +++++ .../AnalysisMethod/analysisMethod.tsx | 29 ++++++++++++--- app/utils/galaxy-api.ts | 37 +++++++++++++++++++ .../common/viewModelBuilders.ts | 16 ++++++-- package-lock.json | 12 ++++++ package.json | 1 + .../entity/genome/analysisMethodMainColumn.ts | 13 ++++--- 8 files changed, 110 insertions(+), 15 deletions(-) create mode 100644 app/apis/catalog/brc-analytics-catalog/common/constants.ts create mode 100644 app/utils/galaxy-api.ts diff --git a/app/apis/catalog/brc-analytics-catalog/common/constants.ts b/app/apis/catalog/brc-analytics-catalog/common/constants.ts new file mode 100644 index 0000000..37cbeef --- /dev/null +++ b/app/apis/catalog/brc-analytics-catalog/common/constants.ts @@ -0,0 +1,8 @@ +import { ANALYSIS_METHOD } from "./entities"; + +export const WORKFLOW_IDS_BY_ANALYSIS_METHOD: Partial< + Record +> = { + [ANALYSIS_METHOD.REGULATION]: + "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", +}; diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 1dfd08e..eaf085e 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -1,3 +1,12 @@ +export enum ANALYSIS_METHOD { + ASSEMBLY = "ASSEMBLY", + GENOME_COMPARISONS = "GENOME_COMPARISONS", + PROTEIN_FOLDING = "PROTEIN_FOLDING", + REGULATION = "REGULATION", + TRANSCRIPTOMICS = "TRANSCRIPTOMICS", + VARIANT_CALLING = "VARIANT_CALLING", +} + export type BRCCatalog = BRCDataCatalogGenome; export interface BRCDataCatalogGenome { diff --git a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx index 4c7de8c..1b9343a 100644 --- a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx +++ b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx @@ -8,21 +8,32 @@ import { REL_ATTRIBUTE, } from "@databiosphere/findable-ui/lib/components/Links/common/entities"; import { Card } from "@mui/material"; +import { WORKFLOW_IDS_BY_ANALYSIS_METHOD } from "app/apis/catalog/brc-analytics-catalog/common/constants"; +import { getWorkflowLandingId } from "app/utils/galaxy-api"; +import { useState } from "react"; +import { ANALYSIS_METHOD } from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; import { StyledButtonPrimary, StyledCardContent, } from "./analysisMethod.styles"; export interface AnalysisMethodProps extends CardProps { - url: string; + analysisMethod: ANALYSIS_METHOD; + genomeVersionAssemblyId: string; } +const WORKFLOW_LANDING_URL_PREFIX = + "https://test.galaxyproject.org/workflow_landings/"; + export const AnalysisMethod = ({ + analysisMethod, + genomeVersionAssemblyId, Paper = FluidPaper, text, title, - url, }: AnalysisMethodProps): JSX.Element => { + const workflowId = WORKFLOW_IDS_BY_ANALYSIS_METHOD[analysisMethod]; + const [urlIsLoading, setUrlIsLoading] = useState(false); return ( @@ -31,8 +42,16 @@ export const AnalysisMethod = ({ {text} { + disabled={!workflowId || urlIsLoading} + onClick={async (): Promise => { + if (!workflowId) return; + setUrlIsLoading(true); + const url = + WORKFLOW_LANDING_URL_PREFIX + + encodeURIComponent( + await getWorkflowLandingId(workflowId, genomeVersionAssemblyId) + ); + setUrlIsLoading(false); window.open( url, ANCHOR_TARGET.BLANK, @@ -40,7 +59,7 @@ export const AnalysisMethod = ({ ); }} > - Analyze + {urlIsLoading ? "Loading..." : "Analyze"} diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts new file mode 100644 index 0000000..5ad1c6a --- /dev/null +++ b/app/utils/galaxy-api.ts @@ -0,0 +1,37 @@ +import ky from "ky"; + +interface WorkflowLandingsBody { + request_state: { reference_genome: string }; + workflow_id: string; + workflow_target_type: "trs_url"; +} + +interface WorkflowLanding { + uuid: string; +} + +const WORKFLOW_LANDINGS_URL = + "https://test.galaxyproject.org/api/workflow_landings"; + +/** + * Get the ID of the workflow landing page for the given genome workflow. + * @param workflowId - Value for the `workflow_id` parameter sent to the API. + * @param referenceGenome - Genome version/assembly ID. + * @returns workflow landing UUID. + */ +export async function getWorkflowLandingId( + workflowId: string, + referenceGenome: string +): Promise { + const body: WorkflowLandingsBody = { + request_state: { + reference_genome: referenceGenome, + }, + workflow_id: workflowId, + workflow_target_type: "trs_url", + }; + const res = await ky.post(WORKFLOW_LANDINGS_URL, { + json: body, + }); + return (await res.json()).uuid; +} diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index cd02fe5..8a2b54f 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -7,7 +7,10 @@ import { import { ViewContext } from "@databiosphere/findable-ui/lib/config/entities"; import { ComponentProps } from "react"; import { ROUTES } from "../../../../../routes/constants"; -import { BRCDataCatalogGenome } from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; +import { + ANALYSIS_METHOD, + BRCDataCatalogGenome, +} from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; import * as C from "../../../../components"; import { GENOME_BROWSER } from "./constants"; @@ -62,17 +65,22 @@ export const buildContigs = ( * @param cardProps - Card properties. * @param cardProps.text - Card text. * @param cardProps.title - Card title. - * @param cardProps.url - Card url. + * @param cardProps.analysisMethod - Analysis method. * @returns Props to be used for the AnalysisMethod component. */ export const buildGenomeAnalysisMethod = ( genome: BRCDataCatalogGenome, - { text, title, url }: Partial & { url: string } + { + analysisMethod, + text, + title, + }: Partial & { analysisMethod: ANALYSIS_METHOD } ): ComponentProps => { return { + analysisMethod, + genomeVersionAssemblyId: genome.genomeVersionAssemblyId, text, title, - url, }; }; diff --git a/package-lock.json b/package-lock.json index a694ecc..46f8e3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18,6 +18,7 @@ "@next/mdx": "^14.1.0", "@tanstack/react-table": "^8.19.2", "copy-to-clipboard": "^3.3.1", + "ky": "^1.7.2", "next": "^14.1.0", "next-compose-plugins": "^2.2.1", "react": "^18.3.1", @@ -11578,6 +11579,17 @@ "node": ">=6" } }, + "node_modules/ky": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/ky/-/ky-1.7.2.tgz", + "integrity": "sha512-OzIvbHKKDpi60TnF9t7UUVAF1B4mcqc02z5PIvrm08Wyb+yOcz63GRvEuVxNT18a9E1SrNouhB4W2NNLeD7Ykg==", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sindresorhus/ky?sponsor=1" + } + }, "node_modules/language-subtag-registry": { "version": "0.3.23", "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz", diff --git a/package.json b/package.json index 361f638..d407163 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "@next/mdx": "^14.1.0", "@tanstack/react-table": "^8.19.2", "copy-to-clipboard": "^3.3.1", + "ky": "^1.7.2", "next": "^14.1.0", "next-compose-plugins": "^2.2.1", "react": "^18.3.1", diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index 4128b7e..dcee6b8 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -1,4 +1,5 @@ import { ComponentsConfig } from "@databiosphere/findable-ui/lib/config/entities"; +import { ANALYSIS_METHOD } from "../../../../../app/apis/catalog/brc-analytics-catalog/common/entities"; import * as C from "../../../../../app/components"; import * as MDX from "../../../../../app/components/Entity/components/AnalysisMethod/content"; import * as V from "../../../../../app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders"; @@ -19,54 +20,54 @@ export const mainColumn: ComponentsConfig = [ component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.VARIANT_CALLING, text: MDX.VariantCalling({}), title: "Variant calling", - url: "", }), }, { component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.TRANSCRIPTOMICS, text: MDX.Transcriptomics({}), title: "Transcriptomics", - url: "", }), }, { component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.REGULATION, text: MDX.Regulation({}), title: "Regulation", - url: "", }), }, { component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.ASSEMBLY, text: MDX.Assembly({}), title: "Assembly", - url: "", }), }, { component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.GENOME_COMPARISONS, text: MDX.GenomeComparisons({}), title: "Genome comparisons", - url: "", }), }, { component: C.AnalysisMethod, viewBuilder: (r) => V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.PROTEIN_FOLDING, text: MDX.ProteinFolding({}), title: "Protein folding", - url: "", }), }, ], From 813fc0ddd60878bd5c24eda7bf6cd899a8f23987 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sun, 20 Oct 2024 17:27:26 -0700 Subject: [PATCH 02/15] feat: enable retry for workflow landing api request (#137) --- app/utils/galaxy-api.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 5ad1c6a..faddd6a 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -32,6 +32,9 @@ export async function getWorkflowLandingId( }; const res = await ky.post(WORKFLOW_LANDINGS_URL, { json: body, + retry: { + methods: ["post"], + }, }); return (await res.json()).uuid; } From 93902bc893875d0841e16f7cd22bb5a5d8cabb94 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:13:03 -0700 Subject: [PATCH 03/15] refactor: return workflow landing url instead of id (#137) --- .../components/AnalysisMethod/analysisMethod.tsx | 14 +++++--------- app/utils/galaxy-api.ts | 16 ++++++++++------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx index 1b9343a..d9f56c9 100644 --- a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx +++ b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx @@ -9,7 +9,7 @@ import { } from "@databiosphere/findable-ui/lib/components/Links/common/entities"; import { Card } from "@mui/material"; import { WORKFLOW_IDS_BY_ANALYSIS_METHOD } from "app/apis/catalog/brc-analytics-catalog/common/constants"; -import { getWorkflowLandingId } from "app/utils/galaxy-api"; +import { getWorkflowLandingUrl } from "app/utils/galaxy-api"; import { useState } from "react"; import { ANALYSIS_METHOD } from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; import { @@ -22,9 +22,6 @@ export interface AnalysisMethodProps extends CardProps { genomeVersionAssemblyId: string; } -const WORKFLOW_LANDING_URL_PREFIX = - "https://test.galaxyproject.org/workflow_landings/"; - export const AnalysisMethod = ({ analysisMethod, genomeVersionAssemblyId, @@ -46,11 +43,10 @@ export const AnalysisMethod = ({ onClick={async (): Promise => { if (!workflowId) return; setUrlIsLoading(true); - const url = - WORKFLOW_LANDING_URL_PREFIX + - encodeURIComponent( - await getWorkflowLandingId(workflowId, genomeVersionAssemblyId) - ); + const url = await getWorkflowLandingUrl( + workflowId, + genomeVersionAssemblyId + ); setUrlIsLoading(false); window.open( url, diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index faddd6a..fe42b42 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -10,16 +10,19 @@ interface WorkflowLanding { uuid: string; } -const WORKFLOW_LANDINGS_URL = +const WORKFLOW_LANDINGS_API_URL = "https://test.galaxyproject.org/api/workflow_landings"; +const WORKFLOW_LANDING_URL_PREFIX = + "https://test.galaxyproject.org/workflow_landings/"; + /** - * Get the ID of the workflow landing page for the given genome workflow. + * Get the URL of the workflow landing page for the given genome workflow. * @param workflowId - Value for the `workflow_id` parameter sent to the API. * @param referenceGenome - Genome version/assembly ID. - * @returns workflow landing UUID. + * @returns workflow landing URL. */ -export async function getWorkflowLandingId( +export async function getWorkflowLandingUrl( workflowId: string, referenceGenome: string ): Promise { @@ -30,11 +33,12 @@ export async function getWorkflowLandingId( workflow_id: workflowId, workflow_target_type: "trs_url", }; - const res = await ky.post(WORKFLOW_LANDINGS_URL, { + const res = await ky.post(WORKFLOW_LANDINGS_API_URL, { json: body, retry: { methods: ["post"], }, }); - return (await res.json()).uuid; + const id = (await res.json()).uuid; + return WORKFLOW_LANDING_URL_PREFIX + encodeURIComponent(id); } From aebedc51eecd1e828dc996f9a8c24de5e9c4eb5f Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Mon, 21 Oct 2024 17:33:19 -0700 Subject: [PATCH 04/15] feat: use `useAsync` for getting workflow landing url (#137) --- .../AnalysisMethod/analysisMethod.tsx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx index d9f56c9..07ae843 100644 --- a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx +++ b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx @@ -7,10 +7,10 @@ import { ANCHOR_TARGET, REL_ATTRIBUTE, } from "@databiosphere/findable-ui/lib/components/Links/common/entities"; +import { useAsync } from "@databiosphere/findable-ui/src/hooks/useAsync"; import { Card } from "@mui/material"; import { WORKFLOW_IDS_BY_ANALYSIS_METHOD } from "app/apis/catalog/brc-analytics-catalog/common/constants"; import { getWorkflowLandingUrl } from "app/utils/galaxy-api"; -import { useState } from "react"; import { ANALYSIS_METHOD } from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; import { StyledButtonPrimary, @@ -30,7 +30,7 @@ export const AnalysisMethod = ({ title, }: AnalysisMethodProps): JSX.Element => { const workflowId = WORKFLOW_IDS_BY_ANALYSIS_METHOD[analysisMethod]; - const [urlIsLoading, setUrlIsLoading] = useState(false); + const { data: landingUrl, isLoading, run } = useAsync(); return ( @@ -39,15 +39,14 @@ export const AnalysisMethod = ({ {text} => { if (!workflowId) return; - setUrlIsLoading(true); - const url = await getWorkflowLandingUrl( - workflowId, - genomeVersionAssemblyId - ); - setUrlIsLoading(false); + const url = + landingUrl ?? + (await run( + getWorkflowLandingUrl(workflowId, genomeVersionAssemblyId) + )); window.open( url, ANCHOR_TARGET.BLANK, @@ -55,7 +54,7 @@ export const AnalysisMethod = ({ ); }} > - {urlIsLoading ? "Loading..." : "Analyze"} + {isLoading ? "Loading..." : "Analyze"} From 132fef65f1ae51004cf417dbff79a6ee9c191b28 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Mon, 21 Oct 2024 19:02:08 -0700 Subject: [PATCH 05/15] feat: separate analysis methods into preview and coming soon (#137) --- .../analysisMethodsTitle.tsx | 16 ++++++++ app/components/index.ts | 1 + .../entity/genome/analysisMethodMainColumn.ts | 38 ++++++++++++++----- 3 files changed, 46 insertions(+), 9 deletions(-) create mode 100644 app/components/Entity/components/AnalysisMethodsTitle/analysisMethodsTitle.tsx diff --git a/app/components/Entity/components/AnalysisMethodsTitle/analysisMethodsTitle.tsx b/app/components/Entity/components/AnalysisMethodsTitle/analysisMethodsTitle.tsx new file mode 100644 index 0000000..ee1b6bb --- /dev/null +++ b/app/components/Entity/components/AnalysisMethodsTitle/analysisMethodsTitle.tsx @@ -0,0 +1,16 @@ +import { TEXT_HEADING } from "@databiosphere/findable-ui/lib/theme/common/typography"; +import { Typography } from "@mui/material"; + +interface AnalysisMethodsTitleProps { + title: React.ReactNode; +} + +export const AnalysisMethodsTitle = ({ + title, +}: AnalysisMethodsTitleProps): JSX.Element => { + return ( + + {title} + + ); +}; diff --git a/app/components/index.ts b/app/components/index.ts index df54e92..feea23d 100644 --- a/app/components/index.ts +++ b/app/components/index.ts @@ -23,6 +23,7 @@ export { Link } from "@databiosphere/findable-ui/lib/components/Links/components export { BasicCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/BasicCell/basicCell"; export { CopyText } from "./common/CopyText/copyText"; export { AnalysisMethod } from "./Entity/components/AnalysisMethod/analysisMethod"; +export { AnalysisMethodsTitle } from "./Entity/components/AnalysisMethodsTitle/analysisMethodsTitle"; export { AnalysisPortals } from "./Entity/components/AnalysisPortals/analysisPortals"; export { DetailViewHero } from "./Layout/components/Detail/components/DetailViewHero/detailViewHero"; export { GridPaperSection } from "./Layout/components/Detail/components/Section/section.styles"; diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index dcee6b8..82df273 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -7,6 +7,35 @@ import * as V from "../../../../../app/viewModelBuilders/catalog/brc-analytics-c export const mainColumn: ComponentsConfig = [ { children: [ + { + component: C.AnalysisMethodsTitle, + props: { + title: "Preview", + }, + }, + { + component: C.FluidAlert, + props: { + severity: "warning", + title: "Preview.", + variant: "banner", + }, + }, + { + component: C.AnalysisMethod, + viewBuilder: (r) => + V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.REGULATION, + text: MDX.Regulation({}), + title: "Regulation", + }), + }, + { + component: C.AnalysisMethodsTitle, + props: { + title: "Coming Soon", + }, + }, { component: C.FluidAlert, props: { @@ -34,15 +63,6 @@ export const mainColumn: ComponentsConfig = [ title: "Transcriptomics", }), }, - { - component: C.AnalysisMethod, - viewBuilder: (r) => - V.buildGenomeAnalysisMethod(r, { - analysisMethod: ANALYSIS_METHOD.REGULATION, - text: MDX.Regulation({}), - title: "Regulation", - }), - }, { component: C.AnalysisMethod, viewBuilder: (r) => From 2e84f9632c419a3e0eb7159b4f73fdf7e6282d33 Mon Sep 17 00:00:00 2001 From: Dave Rogers Date: Mon, 21 Oct 2024 22:12:23 -0700 Subject: [PATCH 06/15] feat: tweak preview text (#137) --- .../local/entity/genome/analysisMethodMainColumn.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index 82df273..1f0fe40 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -16,8 +16,8 @@ export const mainColumn: ComponentsConfig = [ { component: C.FluidAlert, props: { - severity: "warning", - title: "Preview.", + severity: "info", + title: "Preview the worklows below in a test enviornment.", variant: "banner", }, }, @@ -39,7 +39,7 @@ export const mainColumn: ComponentsConfig = [ { component: C.FluidAlert, props: { - severity: "warning", + severity: "info", title: "We are in the process of adopting these workflows to the needs of the pathogen community.", variant: "banner", From 7e558a1573b06cd331136934767282851cba60ea Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:31:58 -0700 Subject: [PATCH 07/15] refactor: prepare `getWorkflowLandingUrl` for alternative genome keys (#137) --- .../brc-analytics-catalog/common/constants.ts | 7 +++--- .../brc-analytics-catalog/common/entities.ts | 4 ++++ app/utils/galaxy-api.ts | 24 +++++++++++++++---- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/constants.ts b/app/apis/catalog/brc-analytics-catalog/common/constants.ts index 37cbeef..6beab74 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/constants.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/constants.ts @@ -1,8 +1,7 @@ -import { ANALYSIS_METHOD } from "./entities"; +import { ANALYSIS_METHOD, WORKFLOW_ID } from "./entities"; export const WORKFLOW_IDS_BY_ANALYSIS_METHOD: Partial< - Record + Record > = { - [ANALYSIS_METHOD.REGULATION]: - "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", + [ANALYSIS_METHOD.REGULATION]: WORKFLOW_ID.REGULATION, }; diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index eaf085e..496055c 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -34,3 +34,7 @@ export interface EntitiesResponsePagination { size: number; total: number; } + +export enum WORKFLOW_ID { + REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", +} diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index fe42b42..75f79e1 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -1,11 +1,14 @@ import ky from "ky"; +import { WORKFLOW_ID } from "../apis/catalog/brc-analytics-catalog/common/entities"; interface WorkflowLandingsBody { - request_state: { reference_genome: string }; + request_state: WorkflowLandingsBodyRequestState; workflow_id: string; workflow_target_type: "trs_url"; } +type WorkflowLandingsBodyRequestState = { reference_genome: string }; + interface WorkflowLanding { uuid: string; } @@ -23,13 +26,11 @@ const WORKFLOW_LANDING_URL_PREFIX = * @returns workflow landing URL. */ export async function getWorkflowLandingUrl( - workflowId: string, + workflowId: WORKFLOW_ID, referenceGenome: string ): Promise { const body: WorkflowLandingsBody = { - request_state: { - reference_genome: referenceGenome, - }, + request_state: getWorkflowLandingsRequestState(workflowId, referenceGenome), workflow_id: workflowId, workflow_target_type: "trs_url", }; @@ -42,3 +43,16 @@ export async function getWorkflowLandingUrl( const id = (await res.json()).uuid; return WORKFLOW_LANDING_URL_PREFIX + encodeURIComponent(id); } + +/** + * Get the appropriate `request_state` object for the given workflow ID and reference genome. + * @param workflowId - Workflow ID. + * @param referenceGenome - Reference genome. + * @returns `request_state` value for the workflow landings request body. + */ +function getWorkflowLandingsRequestState( + workflowId: WORKFLOW_ID, + referenceGenome: string +): WorkflowLandingsBodyRequestState { + return { reference_genome: referenceGenome }; +} From c3d1c63103131e577827dd2b2bdf6ef6979b8517 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:37:21 -0700 Subject: [PATCH 08/15] fix: add `public: true` to workflow landings request body (#137) --- app/utils/galaxy-api.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 75f79e1..37f0b2f 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -2,6 +2,7 @@ import ky from "ky"; import { WORKFLOW_ID } from "../apis/catalog/brc-analytics-catalog/common/entities"; interface WorkflowLandingsBody { + public: true; request_state: WorkflowLandingsBodyRequestState; workflow_id: string; workflow_target_type: "trs_url"; @@ -30,6 +31,7 @@ export async function getWorkflowLandingUrl( referenceGenome: string ): Promise { const body: WorkflowLandingsBody = { + public: true, request_state: getWorkflowLandingsRequestState(workflowId, referenceGenome), workflow_id: workflowId, workflow_target_type: "trs_url", From c374774b972af25f4dc467c958881363e424050b Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:38:36 -0700 Subject: [PATCH 09/15] feat: fix typo in preview workflows message (#137) --- .../local/entity/genome/analysisMethodMainColumn.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index 1f0fe40..ea23cf6 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -17,7 +17,7 @@ export const mainColumn: ComponentsConfig = [ component: C.FluidAlert, props: { severity: "info", - title: "Preview the worklows below in a test enviornment.", + title: "Preview the worklows below in a test environment.", variant: "banner", }, }, From 67729d67a463d7254b7f80cb5a4f9aad44161e0e Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:43:10 -0700 Subject: [PATCH 10/15] fix: add `?public=true` to workflow landing urls (#137) --- app/utils/galaxy-api.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 37f0b2f..175aeaa 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -43,7 +43,7 @@ export async function getWorkflowLandingUrl( }, }); const id = (await res.json()).uuid; - return WORKFLOW_LANDING_URL_PREFIX + encodeURIComponent(id); + return `${WORKFLOW_LANDING_URL_PREFIX}${encodeURIComponent(id)}?public=true`; } /** From 814b35200658adb44af255b6e08e944ebbb4412f Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Fri, 25 Oct 2024 20:37:34 -0700 Subject: [PATCH 11/15] feat: update regulation workflow id and add transcriptomics (#144) --- .../brc-analytics-catalog/common/constants.ts | 1 + .../brc-analytics-catalog/common/entities.ts | 3 ++- .../entity/genome/analysisMethodMainColumn.ts | 18 +++++++++--------- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/constants.ts b/app/apis/catalog/brc-analytics-catalog/common/constants.ts index 6beab74..b937437 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/constants.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/constants.ts @@ -4,4 +4,5 @@ export const WORKFLOW_IDS_BY_ANALYSIS_METHOD: Partial< Record > = { [ANALYSIS_METHOD.REGULATION]: WORKFLOW_ID.REGULATION, + [ANALYSIS_METHOD.TRANSCRIPTOMICS]: WORKFLOW_ID.TRANSCRIPTOMICS, }; diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 496055c..c3013a8 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -36,5 +36,6 @@ export interface EntitiesResponsePagination { } export enum WORKFLOW_ID { - REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", + REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/ChIPseq_PE/main", + TRANSCRIPTOMICS = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/rnaseq-pe/main", } diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index ea23cf6..9015d1e 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -21,6 +21,15 @@ export const mainColumn: ComponentsConfig = [ variant: "banner", }, }, + { + component: C.AnalysisMethod, + viewBuilder: (r) => + V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.TRANSCRIPTOMICS, + text: MDX.Transcriptomics({}), + title: "Transcriptomics", + }), + }, { component: C.AnalysisMethod, viewBuilder: (r) => @@ -54,15 +63,6 @@ export const mainColumn: ComponentsConfig = [ title: "Variant calling", }), }, - { - component: C.AnalysisMethod, - viewBuilder: (r) => - V.buildGenomeAnalysisMethod(r, { - analysisMethod: ANALYSIS_METHOD.TRANSCRIPTOMICS, - text: MDX.Transcriptomics({}), - title: "Transcriptomics", - }), - }, { component: C.AnalysisMethod, viewBuilder: (r) => From 094875930143ac9b8d82ae7bd47f020a6f53dcd3 Mon Sep 17 00:00:00 2001 From: Hunter Craft <118154470+hunterckx@users.noreply.github.com> Date: Mon, 28 Oct 2024 12:58:49 -0700 Subject: [PATCH 12/15] fix: update workflow ids (#137) Co-authored-by: Marius van den Beek --- app/apis/catalog/brc-analytics-catalog/common/entities.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index c3013a8..326f42b 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -36,6 +36,6 @@ export interface EntitiesResponsePagination { } export enum WORKFLOW_ID { - REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/ChIPseq_PE/main", - TRANSCRIPTOMICS = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/rnaseq-pe/main", + REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", + TRANSCRIPTOMICS = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/rnaseq-pe/main/versions/v0.9", } From c825c54eea747b20ad071fad555bb41a4ddb1e4b Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Tue, 29 Oct 2024 22:14:29 +0100 Subject: [PATCH 13/15] feat: chip-seq workflow with gtf url input (#137) --- .../brc-analytics-catalog/common/constants.ts | 1 + .../brc-analytics-catalog/common/entities.ts | 2 + .../AnalysisMethod/analysisMethod.tsx | 8 +- app/utils/galaxy-api.ts | 23 +- .../common/viewModelBuilders.ts | 5 +- files/build-catalog.ts | 1 + files/build-genomes-files.py | 41 +- files/entities.ts | 1 + files/out/genomes.json | 2234 +++++++++++------ files/source/genomes.tsv | 1490 +++++------ 10 files changed, 2308 insertions(+), 1498 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/constants.ts b/app/apis/catalog/brc-analytics-catalog/common/constants.ts index b937437..11aa778 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/constants.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/constants.ts @@ -5,4 +5,5 @@ export const WORKFLOW_IDS_BY_ANALYSIS_METHOD: Partial< > = { [ANALYSIS_METHOD.REGULATION]: WORKFLOW_ID.REGULATION, [ANALYSIS_METHOD.TRANSCRIPTOMICS]: WORKFLOW_ID.TRANSCRIPTOMICS, + [ANALYSIS_METHOD.VARIANT_CALLING]: WORKFLOW_ID.VARIANT_CALLING, }; diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 326f42b..6ec031a 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -12,6 +12,7 @@ export type BRCCatalog = BRCDataCatalogGenome; export interface BRCDataCatalogGenome { chromosomes: number; contigs: number; + geneModelUrl: string; genomeVersionAssemblyId: string; ncbiTaxonomyId: string; organism: string; @@ -38,4 +39,5 @@ export interface EntitiesResponsePagination { export enum WORKFLOW_ID { REGULATION = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/chipseq-pe/main/versions/v0.12", TRANSCRIPTOMICS = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/rnaseq-pe/main/versions/v0.9", + VARIANT_CALLING = "https://dockstore.org/api/ga4gh/trs/v2/tools/#workflow/github.com/iwc-workflows/haploid-variant-calling-wgs-pe/main/versions/v0.1", } diff --git a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx index 07ae843..977c5c0 100644 --- a/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx +++ b/app/components/Entity/components/AnalysisMethod/analysisMethod.tsx @@ -19,11 +19,13 @@ import { export interface AnalysisMethodProps extends CardProps { analysisMethod: ANALYSIS_METHOD; + geneModelUrl: string; genomeVersionAssemblyId: string; } export const AnalysisMethod = ({ analysisMethod, + geneModelUrl, genomeVersionAssemblyId, Paper = FluidPaper, text, @@ -45,7 +47,11 @@ export const AnalysisMethod = ({ const url = landingUrl ?? (await run( - getWorkflowLandingUrl(workflowId, genomeVersionAssemblyId) + getWorkflowLandingUrl( + workflowId, + genomeVersionAssemblyId, + geneModelUrl + ) )); window.open( url, diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 175aeaa..5236239 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -8,7 +8,9 @@ interface WorkflowLandingsBody { workflow_target_type: "trs_url"; } -type WorkflowLandingsBodyRequestState = { reference_genome: string }; +type WorkflowLandingsBodyRequestState = { + [key: string]: { [key: string]: string } | string; +}; interface WorkflowLanding { uuid: string; @@ -24,15 +26,21 @@ const WORKFLOW_LANDING_URL_PREFIX = * Get the URL of the workflow landing page for the given genome workflow. * @param workflowId - Value for the `workflow_id` parameter sent to the API. * @param referenceGenome - Genome version/assembly ID. + * @param geneModelUrl - URL for gene model parameter sent to the API. * @returns workflow landing URL. */ export async function getWorkflowLandingUrl( workflowId: WORKFLOW_ID, - referenceGenome: string + referenceGenome: string, + geneModelUrl: string ): Promise { const body: WorkflowLandingsBody = { public: true, - request_state: getWorkflowLandingsRequestState(workflowId, referenceGenome), + request_state: getWorkflowLandingsRequestState( + workflowId, + referenceGenome, + geneModelUrl + ), workflow_id: workflowId, workflow_target_type: "trs_url", }; @@ -50,11 +58,18 @@ export async function getWorkflowLandingUrl( * Get the appropriate `request_state` object for the given workflow ID and reference genome. * @param workflowId - Workflow ID. * @param referenceGenome - Reference genome. + * @param geneModelUrl - URL for gene model parameter. * @returns `request_state` value for the workflow landings request body. */ function getWorkflowLandingsRequestState( workflowId: WORKFLOW_ID, - referenceGenome: string + referenceGenome: string, + geneModelUrl: string ): WorkflowLandingsBodyRequestState { + if (workflowId === WORKFLOW_ID.VARIANT_CALLING && geneModelUrl) { + return { + "Annotation GTF": { ext: "gtf.gz", src: "url", url: geneModelUrl }, + }; + } return { reference_genome: referenceGenome }; } diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 8a2b54f..e175fd8 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -74,10 +74,13 @@ export const buildGenomeAnalysisMethod = ( analysisMethod, text, title, - }: Partial & { analysisMethod: ANALYSIS_METHOD } + }: Partial & { + analysisMethod: ANALYSIS_METHOD; + } ): ComponentProps => { return { analysisMethod, + geneModelUrl: genome.geneModelUrl, genomeVersionAssemblyId: genome.genomeVersionAssemblyId, text, title, diff --git a/files/build-catalog.ts b/files/build-catalog.ts index c2f06d2..8573975 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -22,6 +22,7 @@ async function buildGenomes(): Promise { (row): BRCDataCatalogGenome => ({ chromosomes: parseNumber(row.Chromosomes), contigs: parseNumber(row.Contigs), + geneModelUrl: row.geneModelUrl, genomeVersionAssemblyId: row["Genome Version/Assembly ID"], ncbiTaxonomyId: row.taxId, organism: row.Organism, diff --git a/files/build-genomes-files.py b/files/build-genomes-files.py index 2ee77a5..7b5ef09 100644 --- a/files/build-genomes-files.py +++ b/files/build-genomes-files.py @@ -1,6 +1,7 @@ import pandas as pd import re import requests +import urllib.parse GENOMES_SOURCE_URL = "https://docs.google.com/spreadsheets/d/1NRfTvebPl6zJ0l9tCqBtq6YCrwV6_XDBlheq3L5HcvQ/gviz/tq?tqx=out:csv&sheet=GenomeDataTypes_Summary.csv" ASSEMBLIES_URL = "https://hgdownload.soe.ucsc.edu/hubs/BRC/assemblyList.json" @@ -14,6 +15,40 @@ def get_duplicate_ids(genomes_df): def get_unmatched_assemblies(assemblies_df, result_df): return set(assemblies_df["asmId"]) - set(result_df["asmId"]) +def _id_to_gene_model_url(asm_id): + hubs_url = "https://hgdownload.soe.ucsc.edu/hubs/" + components = [asm_id[0:3], asm_id[4:7], asm_id[7:10], asm_id[10:13], asm_id, "genes"] + url = urllib.parse.urljoin(hubs_url, "/".join(components)) + # url looks something like https://hgdownload.soe.ucsc.edu/hubs/GCF/030/504/385/GCF_030504385.1/genes/ + # and contains html content with links to gene models. + # we need to scrape this to get the gtf + print(f"fetching url {url}") + response = requests.get(url) + try: + response.raise_for_status() + except Exception: + # FIXME?: Some accessions don't have a gene folder + return None + # find link to gtf, should ideally be ncbiRefSeq, but augustus will do + html_content = response.text + pattern = rf"{asm_id.replace('.', r'\.')}.*?\.gtf\.gz" + augustus_file = None + for match in re.findall(pattern, html_content): + if "ncbiRefSeq" in match: + return urllib.parse.urljoin(f"{url}/", match) + elif "augustus" in match: + augustus_file = match + if augustus_file: + return urllib.parse.urljoin(f"{url}/", augustus_file) + # No match, I guess that's OK ? + return None + + +def add_gene_model_url(result_df: pd.DataFrame): + "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/189/475/GCF_001189475.1" + result_df["geneModelUrl"] = result_df["Genome Version/Assembly ID"].apply(_id_to_gene_model_url) + + def build_genomes_files(): print("Building files") @@ -21,7 +56,7 @@ def build_genomes_files(): assemblies_df = pd.DataFrame(requests.get(ASSEMBLIES_URL).json()["data"]) duplicate_ids = get_duplicate_ids(genomes_source_df) - print(f"Removing rows with duplicate Genome Version/Assembly ID values of: {", ".join(duplicate_ids)}") + print(f"Removing rows with duplicate Genome Version/Assembly ID values of: {', '.join(duplicate_ids)}") deduped_genomes_df = genomes_source_df.drop_duplicates(subset=["Genome Version/Assembly ID"]) @@ -30,9 +65,11 @@ def build_genomes_files(): result_df = gen_bank_merge_df.combine_first(ref_seq_merge_df).dropna(subset=["ucscBrowser"]) + add_gene_model_url(result_df) + unmatched_assemblies = get_unmatched_assemblies(assemblies_df, result_df) if (len(unmatched_assemblies) != 0): - print(f"Omitted {len(unmatched_assemblies)} assemblies that had no matches: {", ".join(unmatched_assemblies)}") + print(f"Omitted {len(unmatched_assemblies)} assemblies that had no matches: {', '.join(unmatched_assemblies)}") result_df["taxId"] = result_df["taxId"].astype(int) diff --git a/files/entities.ts b/files/entities.ts index 828cf4c..dad7cc1 100644 --- a/files/entities.ts +++ b/files/entities.ts @@ -4,6 +4,7 @@ export interface SourceGenome { comName: string; Contigs: string; genBank: string; + geneModelUrl: string; "Genome Source": string; "Genome Version/Assembly ID": string; identical: string; diff --git a/files/out/genomes.json b/files/out/genomes.json index 842d745..14bb70e 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -9,7 +9,8 @@ "strain": "iso-1", "supercontigs": 1862, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001215.4", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -21,7 +22,8 @@ "strain": "ATCC 18224", "supercontigs": 452, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001985.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 14, @@ -33,7 +35,8 @@ "strain": "Sal-1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 5, @@ -45,7 +48,8 @@ "strain": "isolate WB 2019", "supercontigs": 30, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002435.2", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "" }, { "chromosomes": 16, @@ -57,7 +61,8 @@ "strain": "brucei TREU927", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 7, @@ -69,7 +74,8 @@ "strain": "70-15", "supercontigs": 46, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002495.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 6, @@ -81,7 +87,8 @@ "strain": "NRRL Y-1140", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002515.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 6, @@ -93,7 +100,8 @@ "strain": "CLIB122", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002525.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/525/GCA_000002525.1/genes/GCA_000002525.1_ASM252v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -105,7 +113,8 @@ "strain": "CBS 138", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002545.3", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/545/GCA_000002545.2/genes/GCA_000002545.2_ASM254v2.augustus.gtf.gz" }, { "chromosomes": 8, @@ -117,7 +126,8 @@ "strain": "Af293", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -129,7 +139,8 @@ "strain": "NRRL 1", "supercontigs": 143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002715.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 36, @@ -141,7 +152,8 @@ "strain": "strain Friedlin", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/725/GCA_000002725.2/genes/GCA_000002725.2_ASM272v2.augustus.gtf.gz" }, { "chromosomes": 14, @@ -153,7 +165,8 @@ "strain": "3D7", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -165,7 +178,8 @@ "strain": "G3", "supercontigs": 64764, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002825.2", - "vEuPathDbProject": "TrichDB" + "vEuPathDbProject": "TrichDB", + "geneModelUrl": "" }, { "chromosomes": 36, @@ -177,7 +191,8 @@ "strain": "MHOM/BR/75/M2904", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -189,7 +204,8 @@ "strain": "CBS 513.88", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002855.4", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -201,7 +217,8 @@ "strain": "yoelii 17XNL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003085.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -213,7 +230,8 @@ "strain": "ATCC 10500", "supercontigs": 820, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003125.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 4, @@ -225,7 +243,8 @@ "strain": "strain Ankara", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000003225.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/225/GCA_000003225.1/genes/GCA_000003225.1_ASM322v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -237,7 +256,8 @@ "strain": "1704", "supercontigs": 44, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003515.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -249,7 +269,8 @@ "strain": "ER-3", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003525.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -261,7 +282,8 @@ "strain": "ATCC 42720", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003835.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/835/GCA_000003835.1/genes/GCA_000003835.1_ASM383v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -273,7 +295,8 @@ "strain": "SLH14081", "supercontigs": 100, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003855.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -285,7 +308,8 @@ "strain": "strain NEG-M", "supercontigs": 784, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000004985.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -297,7 +321,8 @@ "strain": "NRRL3357", "supercontigs": 282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000006275.3", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -309,7 +334,8 @@ "strain": "USDA", "supercontigs": 1882, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006295.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -321,7 +347,8 @@ "strain": "MYA-3404", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006335.3", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -333,7 +360,8 @@ "strain": "strain H", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006355.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -345,7 +373,8 @@ "strain": "TU502", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006425.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 7, @@ -357,7 +386,8 @@ "strain": "CBS767", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006445.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 8, @@ -369,7 +399,8 @@ "strain": "CD36", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000026945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -381,7 +412,8 @@ "strain": "var. neoformans JEC21", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/091/045/GCA_000091045.1/genes/GCA_000091045.1_ASM9104v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -393,7 +425,8 @@ "strain": "GB-M1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091225.2", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -405,7 +438,8 @@ "strain": "T30-4", "supercontigs": 4921, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000142945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -417,7 +451,8 @@ "strain": "DAOM BR144", "supercontigs": 975, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000143045.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/143/045/GCA_000143045.1/genes/GCA_000143045.1_pug.augustus.gtf.gz" }, { "chromosomes": 0, @@ -429,7 +464,8 @@ "strain": "H4-8", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143185.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -441,7 +477,8 @@ "strain": "CBS 148.51", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143365.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 18, @@ -453,7 +490,8 @@ "strain": "B05.10", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143535.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -465,7 +503,8 @@ "strain": "R3-111a-1", "supercontigs": 513, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000145635.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 16, @@ -477,7 +516,8 @@ "strain": "S288C", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146045.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 11, @@ -489,7 +529,8 @@ "strain": "ATCC 50506", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146465.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -501,7 +542,8 @@ "strain": "M1.001", "supercontigs": 653, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149035.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 8, @@ -513,7 +555,8 @@ "strain": "FGSC A4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149205.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/205/GCA_000149205.2/genes/GCA_000149205.2_ASM14920v2.augustus.gtf.gz" }, { "chromosomes": 14, @@ -525,7 +568,8 @@ "strain": "var. grubii H99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149245.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -537,7 +581,8 @@ "strain": "RA 99-880", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149305.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/305/GCA_000149305.1/genes/GCA_000149305.1_RO3.augustus.gtf.gz" }, { "chromosomes": 0, @@ -549,7 +594,8 @@ "strain": "RS", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -561,7 +607,8 @@ "strain": "var. neoformans B-3501A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149385.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -573,7 +620,8 @@ "strain": "ATCC 6260", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149425.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -585,7 +633,8 @@ "strain": "WO-1", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149445.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/445/GCA_000149445.2/genes/GCA_000149445.2_ASM14944v2.augustus.gtf.gz" }, { "chromosomes": 11, @@ -597,7 +646,8 @@ "strain": "7600", "supercontigs": 10, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149555.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -609,7 +659,8 @@ "strain": "NAm1", "supercontigs": 276, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149585.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -621,7 +672,8 @@ "strain": "NIH2624", "supercontigs": 26, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149615.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -633,7 +685,8 @@ "strain": "NRRL 181", "supercontigs": 163, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149645.3", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -645,7 +698,8 @@ "strain": "NRRL YB-4239", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149685.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/685/GCA_000149685.1/genes/GCA_000149685.1_ASM14968v1.augustus.gtf.gz" }, { "chromosomes": 14, @@ -657,7 +711,8 @@ "strain": "GT1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149715.2", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/715/GCA_000149715.2/genes/GCA_000149715.2_TGGT1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -669,7 +724,8 @@ "strain": "strain P6497", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149755.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -681,7 +737,8 @@ "strain": "H538.4", "supercontigs": 553, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149815.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/815/GCA_000149815.1/genes/GCA_000149815.1_ASM14981v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -693,7 +750,8 @@ "strain": "yFS275", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149845.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -705,7 +763,8 @@ "strain": "JEL423", "supercontigs": 69, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149865.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -717,7 +776,8 @@ "strain": "RMSCC 2394", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149895.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/895/GCA_000149895.1/genes/GCA_000149895.1_ASM14989v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -729,7 +789,8 @@ "strain": "f. sp. tritici CRL 75-36-700-3", "supercontigs": 392, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149925.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 15, @@ -741,7 +802,8 @@ "strain": "f. sp. lycopersici 4287", "supercontigs": 70, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149955.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -753,7 +815,8 @@ "strain": "VEG", "supercontigs": 1290, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150015.2", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/015/GCA_000150015.2/genes/GCA_000150015.2_TGVEG.augustus.gtf.gz" }, { "chromosomes": 0, @@ -765,7 +828,8 @@ "strain": "RMSCC 3488", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150055.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/055/GCA_000150055.1/genes/GCA_000150055.1_ASM15005v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -777,7 +841,8 @@ "strain": "RMSCC 3703", "supercontigs": 286, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150085.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/085/GCA_000150085.1/genes/GCA_000150085.1_ASM15008v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -789,7 +854,8 @@ "strain": "A1163", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150145.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/145/GCA_000150145.1/genes/GCA_000150145.1_ASM15014v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -801,7 +867,8 @@ "strain": "RMSCC 2133", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150185.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/185/GCA_000150185.1/genes/GCA_000150185.1_ASM15018v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -813,7 +880,8 @@ "strain": "RMSCC 3700", "supercontigs": 241, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150215.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/215/GCA_000150215.1/genes/GCA_000150215.1_ASM15021v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -825,7 +893,8 @@ "strain": "CPA 0001", "supercontigs": 255, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150245.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/245/GCA_000150245.1/genes/GCA_000150245.1_ASM15024v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -837,7 +906,8 @@ "strain": "Pb03", "supercontigs": 65, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150475.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -849,7 +919,8 @@ "strain": "yFS286", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150505.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -861,7 +932,8 @@ "strain": "RMSCC 1037", "supercontigs": 633, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150555.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/555/GCA_000150555.1/genes/GCA_000150555.1_ASM15055v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -873,7 +945,8 @@ "strain": "RMSCC 1038", "supercontigs": 551, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150585.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/585/GCA_000150585.1/genes/GCA_000150585.1_ASM15058v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -885,7 +958,8 @@ "strain": "CPA 0020", "supercontigs": 620, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150615.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/615/GCA_000150615.1/genes/GCA_000150615.1_ASM15061v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -897,7 +971,8 @@ "strain": "CPA 0066", "supercontigs": 473, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150645.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/645/GCA_000150645.1/genes/GCA_000150645.1_ASM15064v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -909,7 +984,8 @@ "strain": "Pb01", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150705.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -921,7 +997,8 @@ "strain": "Pb18", "supercontigs": 57, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150735.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -933,7 +1010,8 @@ "strain": "Mali-NIH", "supercontigs": 10521, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150765.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/765/GCA_000150765.1/genes/GCA_000150765.1_m5.augustus.gtf.gz" }, { "chromosomes": 0, @@ -945,7 +1023,8 @@ "strain": "Pimperena", "supercontigs": 13042, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150785.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/785/GCA_000150785.1/genes/GCA_000150785.1_g4.augustus.gtf.gz" }, { "chromosomes": 0, @@ -957,7 +1036,8 @@ "strain": "CBS 118893", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150975.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -969,7 +1049,8 @@ "strain": "H143", "supercontigs": 48, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151035.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/035/GCA_000151035.1/genes/GCA_000151035.1_ASM15103v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -981,7 +1062,8 @@ "strain": "CBS 113480", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151145.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -993,7 +1075,8 @@ "strain": "CBS 127.97", "supercontigs": 123, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151175.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/175/GCA_000151175.1/genes/GCA_000151175.1_ASM15117v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1005,7 +1088,8 @@ "strain": "ATCC 38327", "supercontigs": 101, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151295.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1017,7 +1101,8 @@ "strain": "C735 delta SOWgp", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151335.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1029,7 +1114,8 @@ "strain": "77-13-4", "supercontigs": 209, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151355.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1041,7 +1127,8 @@ "strain": "CBS 118892", "supercontigs": 35, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151425.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1053,7 +1140,8 @@ "strain": "CBS 112818", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151455.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/455/GCA_000151455.1/genes/GCA_000151455.1_ASM15145v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1065,7 +1153,8 @@ "strain": "1-1 BBBD Race 1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151525.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1077,7 +1166,8 @@ "strain": "CBS 223.65", "supercontigs": 1442, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151545.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1089,7 +1179,8 @@ "strain": "2N", "supercontigs": 3143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151735.1", - "vEuPathDbProject": "HostDB" + "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" }, { "chromosomes": 8, @@ -1101,7 +1192,8 @@ "strain": "Iowa II", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165345.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 2, @@ -1113,7 +1205,8 @@ "strain": "strain Muguga", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165365.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 3, @@ -1125,7 +1218,8 @@ "strain": "T2Bo", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165395.2", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1137,7 +1231,8 @@ "strain": "ATCC 26199", "supercontigs": 3282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000166155.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1149,7 +1244,8 @@ "strain": "RP-78", "supercontigs": 232, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000167175.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/167/175/GCA_000167175.1/genes/GCA_000167175.1_ASM16717v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1161,7 +1257,8 @@ "strain": "QM6a", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000167675.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1173,7 +1270,8 @@ "strain": "str. Silveira", "supercontigs": 54, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000170175.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/170/175/GCA_000170175.2/genes/GCA_000170175.2_CPS2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1185,7 +1283,8 @@ "strain": "Gv29-8", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000170995.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1197,7 +1296,8 @@ "strain": "Emoy2", "supercontigs": 3044, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000173235.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1209,7 +1309,8 @@ "strain": "CDC", "supercontigs": 16537, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000181055.3", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -1221,7 +1322,8 @@ "strain": "isolate GS", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182405.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/405/GCA_000182405.1/genes/GCA_000182405.1_ASM18240v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1233,7 +1335,8 @@ "strain": "DAOM BR117", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182565.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1245,7 +1348,8 @@ "strain": "isolate P15", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182665.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/665/GCA_000182665.1/genes/GCA_000182665.1_ASM18266v1.augustus.gtf.gz" }, { "chromosomes": 8, @@ -1257,7 +1361,8 @@ "strain": "CDC317", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182765.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1269,7 +1374,8 @@ "strain": "okayama7#130", "supercontigs": 67, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182895.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/895/GCA_000182895.1/genes/GCA_000182895.1_CC3.augustus.gtf.gz" }, { "chromosomes": 7, @@ -1281,7 +1387,8 @@ "strain": "OR74A", "supercontigs": 13, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182925.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 8, @@ -1293,7 +1400,8 @@ "strain": "SC5314", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1305,7 +1413,8 @@ "strain": "BRL01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182985.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/985/GCA_000182985.1/genes/GCA_000182985.1_ASM18298v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1317,7 +1426,8 @@ "strain": "20631-21", "supercontigs": 1846, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184105.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 8, @@ -1329,7 +1439,8 @@ "strain": "RIB40", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184455.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -1341,7 +1452,8 @@ "strain": "WM276", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000185945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1353,7 +1465,8 @@ "strain": "Sylvio X10/1-2012", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000188675.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -1365,7 +1478,8 @@ "strain": "ERTm3", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190615.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -1377,7 +1491,8 @@ "strain": "subsp. floridensis", "supercontigs": 379, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000192795.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1389,7 +1504,8 @@ "strain": "ATCC 64411", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000193285.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1401,7 +1517,8 @@ "strain": "98AG31", "supercontigs": 462, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000204055.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1413,7 +1530,8 @@ "strain": "Wikel", "supercontigs": 369492, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208615.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 14, @@ -1425,7 +1543,8 @@ "strain": "Liverpool", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208865.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1437,7 +1556,8 @@ "strain": "HM-1:IMSS", "supercontigs": 1496, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208925.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1449,7 +1569,8 @@ "strain": "strain CL Brener", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1461,7 +1582,8 @@ "strain": "SAW760", "supercontigs": 3312, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209125.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1473,7 +1595,8 @@ "strain": "Johannesburg", "supercontigs": 3171, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209185.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -1485,7 +1608,8 @@ "strain": "H348", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209485.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/485/GCA_000209485.1/genes/GCA_000209485.1_ASM20948v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -1497,7 +1621,8 @@ "strain": "gambiense DAL972", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000210295.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1509,7 +1634,8 @@ "strain": "Coari", "supercontigs": 2220, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000211455.3", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -1521,7 +1647,8 @@ "strain": "FGSC 2508", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000213175.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 21, @@ -1533,7 +1660,8 @@ "strain": "IPO323", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000219625.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 15, @@ -1545,7 +1673,8 @@ "strain": "EC3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221245.2", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 16, @@ -1557,7 +1686,8 @@ "strain": "EC2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221265.2", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 12, @@ -1569,7 +1699,8 @@ "strain": "EC1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221285.2", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -1581,7 +1712,8 @@ "strain": "Unknown strain", "supercontigs": 469, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000223845.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1593,7 +1725,8 @@ "strain": "RUB", "supercontigs": 2424, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224805.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1605,7 +1738,8 @@ "strain": "TgCATBr9", "supercontigs": 2452, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224825.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1617,7 +1751,8 @@ "strain": "VAND", "supercontigs": 2137, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224845.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1629,7 +1764,8 @@ "strain": "MAS", "supercontigs": 2180, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224865.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1641,7 +1777,8 @@ "strain": "p89", "supercontigs": 2150, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224885.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1653,7 +1790,8 @@ "strain": "FOU", "supercontigs": 2869, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224905.2", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/905/GCA_000224905.2/genes/GCA_000224905.2_TGFOU1v02.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1665,7 +1803,8 @@ "strain": "E277", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000225285.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1677,7 +1816,8 @@ "strain": "CM01", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000225605.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 7, @@ -1689,7 +1829,8 @@ "strain": "ATCC 42464", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226095.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1701,7 +1842,8 @@ "strain": "Wisconsin 54-1255", "supercontigs": 49, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226395.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1713,7 +1855,8 @@ "strain": "S mat+", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226545.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 36, @@ -1725,7 +1868,8 @@ "strain": "BPK282A1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 11, @@ -1737,7 +1881,8 @@ "strain": "Y486", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227375.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/375/GCA_000227375.1/genes/GCA_000227375.1_ASM22737v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -1749,7 +1894,8 @@ "strain": "IL3000", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227395.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/395/GCA_000227395.2/genes/GCA_000227395.2_ASM22739v2.augustus.gtf.gz" }, { "chromosomes": 23, @@ -1761,7 +1907,8 @@ "strain": "SRZ2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230245.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/245/GCA_000230245.1/genes/GCA_000230245.1_ASM23024v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1773,7 +1920,8 @@ "strain": "JN3", "supercontigs": 76, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230375.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1785,7 +1933,8 @@ "strain": "ATCC 1015", "supercontigs": 24, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230395.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1797,7 +1946,8 @@ "strain": "USNM 41457", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230595.3", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -1809,7 +1959,8 @@ "strain": "NIH/UT8656", "supercontigs": 10, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230625.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1821,7 +1972,8 @@ "strain": "ATCC 50505", "supercontigs": 220, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000231115.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 34, @@ -1833,7 +1985,8 @@ "strain": "MHOM/GT/2001/U1103", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000234665.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1845,7 +1998,8 @@ "strain": "IFO 4308", "supercontigs": 146, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000239835.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1857,7 +2011,8 @@ "strain": "INRA-310", "supercontigs": 708, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000247585.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1869,7 +2024,8 @@ "strain": "ERTm2", "supercontigs": 202, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250695.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -1881,7 +2037,8 @@ "strain": "strain SD 75.1", "supercontigs": 36, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250755.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -1893,7 +2050,8 @@ "strain": "ARI", "supercontigs": 2723, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250965.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1905,7 +2063,8 @@ "strain": "ERTm1", "supercontigs": 65, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000250985.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1917,7 +2076,8 @@ "strain": "CAST", "supercontigs": 2656, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256705.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1929,7 +2089,8 @@ "strain": "TgCatPRC2", "supercontigs": 3060, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256725.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -1941,7 +2102,8 @@ "strain": "strain H.H.34", "supercontigs": 14860, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000258005.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1953,7 +2115,8 @@ "strain": "TgCATBr5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000259835.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/259/835/GCA_000259835.1/genes/GCA_000259835.1_TGCATBR5.augustus.gtf.gz" }, { "chromosomes": 0, @@ -1965,7 +2128,8 @@ "strain": "NRRL 54006", "supercontigs": 418, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000260195.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -1977,7 +2141,8 @@ "strain": "f. sp. melonis 26406", "supercontigs": 1146, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000260495.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -1989,7 +2154,8 @@ "strain": "Israel", "supercontigs": 106826, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000262795.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2001,7 +2167,8 @@ "strain": "Jacobina", "supercontigs": 11532, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000265325.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2013,7 +2180,8 @@ "strain": "DSM 1558", "supercontigs": 45, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271645.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2025,7 +2193,8 @@ "strain": "Fo47", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000271705.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2037,7 +2206,8 @@ "strain": "NRRL 32931", "supercontigs": 168, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271745.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 12, @@ -2049,7 +2219,8 @@ "strain": "ATCC 50504", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277815.2", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2061,7 +2232,8 @@ "strain": "CtCo5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000278365.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/278/365/GCA_000278365.1/genes/GCA_000278365.1_ASM27836v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -2073,7 +2245,8 @@ "strain": "SJ-2008", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000280035.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2085,7 +2258,8 @@ "strain": "VS20", "supercontigs": 390, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000281045.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2097,7 +2271,8 @@ "strain": "var. asahii CBS 2479", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000293215.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2109,7 +2284,8 @@ "strain": "marinkellei strain B7", "supercontigs": 16783, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300495.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/495/GCA_000300495.1/genes/GCA_000300495.1_ASM30049v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2121,7 +2297,8 @@ "strain": "Indian", "supercontigs": 23371, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300775.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/775/GCA_000300775.2/genes/GCA_000300775.2_ASM30077v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2133,7 +2310,8 @@ "strain": "MS6", "supercontigs": 1506, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000302655.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2145,7 +2323,8 @@ "strain": "PYCC 5710", "supercontigs": 394, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000312925.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/312/925/GCA_000312925.2/genes/GCA_000312925.2_ASM31292v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2157,7 +2336,8 @@ "strain": "str. Neff", "supercontigs": 384, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000313135.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2169,7 +2349,8 @@ "strain": "Undeen", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000313815.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/313/815/GCA_000313815.1/genes/GCA_000313815.1_ASM31381v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2181,7 +2362,8 @@ "strain": "Unknown strain", "supercontigs": 310, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000316135.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/316/135/GCA_000316135.1/genes/GCA_000316135.1_ASM31613v1.augustus.gtf.gz" }, { "chromosomes": 14, @@ -2193,7 +2375,8 @@ "strain": "strain B", "supercontigs": 1649, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000321355.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2205,7 +2388,8 @@ "strain": "GAB2-2007-GAL-DOM2", "supercontigs": 2481, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000325525.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -2217,19 +2401,21 @@ "strain": "strain Esmeraldo", "supercontigs": 796, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000327425.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 23, "contigs": 0, "genomeVersionAssemblyId": "GCA_000328475.2", - "ncbiTaxonomyId": "237631", + "ncbiTaxonomyId": "5270", "organism": "Ustilago maydis 521", "species": "Ustilago maydis", "strain": "521", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000328475.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2241,7 +2427,8 @@ "strain": "IP1", "supercontigs": 1144, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000330505.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 30, @@ -2253,7 +2440,8 @@ "strain": "strain Cf-Cl", "supercontigs": 427, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331325.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2265,7 +2453,8 @@ "strain": "strain LV39c5", "supercontigs": 773, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331345.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2277,7 +2466,8 @@ "strain": "JR cl. 4", "supercontigs": 560, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331405.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2289,7 +2479,8 @@ "strain": "strain LV88", "supercontigs": 1925, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333855.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2301,7 +2492,8 @@ "strain": "SE8", "supercontigs": 328, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333975.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/975/GCA_000333975.2/genes/GCA_000333975.2_ASM33397v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2313,7 +2505,8 @@ "strain": "COUG", "supercontigs": 105, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338675.2", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -2325,7 +2518,8 @@ "strain": "KU27", "supercontigs": 1796, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338855.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -2337,7 +2531,8 @@ "strain": "CIRAD86", "supercontigs": 56, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000340215.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 35, @@ -2349,7 +2544,8 @@ "strain": "MHOM/BR/75/M2903", "supercontigs": 709, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340355.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2361,7 +2557,8 @@ "strain": "MHOM/COL/81/L13", "supercontigs": 820, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340495.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 2, @@ -2373,7 +2570,8 @@ "strain": "strain WA", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000342415.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2385,7 +2583,8 @@ "strain": "HM-1:IMSS-B", "supercontigs": 1938, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000344925.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -2397,7 +2596,8 @@ "strain": "HM-3:IMSS", "supercontigs": 1880, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000346345.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -2409,7 +2609,8 @@ "strain": "20.1", "supercontigs": 191, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000347355.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/347/355/GCA_000347355.1/genes/GCA_000347355.1_ASM34735v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2421,7 +2622,8 @@ "strain": "B123", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000349005.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2433,7 +2635,8 @@ "strain": "MINIMUS1", "supercontigs": 678, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349025.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2445,7 +2648,8 @@ "strain": "SDA-500", "supercontigs": 1110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349045.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2457,7 +2661,8 @@ "strain": "SANGWE", "supercontigs": 2823, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349065.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2469,7 +2674,8 @@ "strain": "Epiroticus2", "supercontigs": 2673, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349105.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 5, @@ -2481,7 +2687,8 @@ "strain": "STECLA", "supercontigs": 196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349125.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2493,7 +2700,8 @@ "strain": "WRAIR2", "supercontigs": 1266, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349145.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2505,7 +2713,8 @@ "strain": "ACHKN1017", "supercontigs": 30369, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349165.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2517,7 +2726,8 @@ "strain": "Dongola", "supercontigs": 1214, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349185.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2529,7 +2739,8 @@ "strain": "f. sp. cubense race 1", "supercontigs": 1341, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350345.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2541,7 +2752,8 @@ "strain": "strain race 4", "supercontigs": 840, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350365.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2553,7 +2765,8 @@ "strain": "CBS 101466", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365145.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2565,7 +2778,8 @@ "strain": "CBS 160.54", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365165.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -2577,7 +2791,8 @@ "strain": "Tula cl2", "supercontigs": 1780, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365225.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2589,7 +2804,8 @@ "strain": "HM-1:IMSS-A", "supercontigs": 1685, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365475.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -2601,7 +2817,8 @@ "strain": "aabys", "supercontigs": 20487, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000371365.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2613,7 +2830,8 @@ "strain": "CQ1", "supercontigs": 1607, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000383075.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -2625,7 +2843,8 @@ "strain": "PRA109", "supercontigs": 7113, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385855.2", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -2637,7 +2856,8 @@ "strain": "PRA339", "supercontigs": 431, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385875.2", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -2649,7 +2869,8 @@ "strain": "DAOM BR486", "supercontigs": 5887, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387425.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2661,7 +2882,8 @@ "strain": "DAOM BR444", "supercontigs": 1774, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387445.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2673,7 +2895,8 @@ "strain": "DAOM BR242034", "supercontigs": 11542, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387465.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2685,7 +2908,8 @@ "strain": "ATCC 12531", "supercontigs": 10972, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387505.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2697,7 +2921,8 @@ "strain": "var. sporangiiferum BR650", "supercontigs": 5482, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387525.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2709,7 +2934,8 @@ "strain": "DAOM BR484", "supercontigs": 3685, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387545.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 8, @@ -2721,7 +2947,8 @@ "strain": "JR2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000400815.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -2733,7 +2960,8 @@ "strain": "1006PhL", "supercontigs": 470, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000401635.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 36, @@ -2745,7 +2973,8 @@ "strain": "LEM2494", "supercontigs": 215, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000409445.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2757,7 +2986,8 @@ "strain": "strain LEM1108", "supercontigs": 132, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410695.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2769,7 +2999,8 @@ "strain": "L590", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410715.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2781,7 +3012,8 @@ "strain": "UAMH 11346", "supercontigs": 45, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410735.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 36, @@ -2793,7 +3025,8 @@ "strain": "strain LEM3045", "supercontigs": 459, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410755.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2805,7 +3038,8 @@ "strain": "42_110", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000430065.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -2817,7 +3051,8 @@ "strain": "MHOM/BR/71973/M2269", "supercontigs": 2627, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000438535.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2829,7 +3064,8 @@ "strain": "China", "supercontigs": 9592, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441895.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/895/GCA_000441895.2/genes/GCA_000441895.2_AS2.augustus.gtf.gz" }, { "chromosomes": 36, @@ -2841,7 +3077,8 @@ "strain": "strain LEM423", "supercontigs": 183, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441995.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2853,7 +3090,8 @@ "strain": "strain LEM452", "supercontigs": 106, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000443025.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -2865,7 +3103,8 @@ "strain": "L147", "supercontigs": 124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000444285.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2877,7 +3116,8 @@ "strain": "BRL 01", "supercontigs": 554, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000447185.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/447/185/GCA_000447185.1/genes/GCA_000447185.1_NapisBRLv01.augustus.gtf.gz" }, { "chromosomes": 36, @@ -2889,7 +3129,8 @@ "strain": "strain BHU 1220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000470725.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/470/725/GCA_000470725.1/genes/GCA_000470725.1_BHU1220.augustus.gtf.gz" }, { "chromosomes": 0, @@ -2901,7 +3142,8 @@ "strain": "SINENSIS", "supercontigs": 10448, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000472065.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2913,7 +3155,8 @@ "strain": "maculatus3", "supercontigs": 47797, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473185.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2925,7 +3168,8 @@ "strain": "A-37", "supercontigs": 16162, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473375.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2937,7 +3181,8 @@ "strain": "FAR1", "supercontigs": 310, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473445.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 5, @@ -2949,7 +3194,8 @@ "strain": "EBRO", "supercontigs": 1315, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473505.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2961,7 +3207,8 @@ "strain": "CM1001059_A", "supercontigs": 20229, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473525.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2973,7 +3220,8 @@ "strain": "MAF", "supercontigs": 2027, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473845.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -2985,7 +3233,8 @@ "strain": "SC58", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000492115.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -2997,7 +3246,8 @@ "strain": "Dm28c 2014", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000496795.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -3009,7 +3259,8 @@ "strain": "2 isolate DH", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498715.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/715/GCA_000498715.1/genes/GCA_000498715.1_ASM49871v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3021,7 +3272,8 @@ "strain": "isolate GS_B", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498735.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/735/GCA_000498735.1/genes/GCA_000498735.1_ASM49873v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3033,7 +3285,8 @@ "strain": "ATCC 30863", "supercontigs": 1124, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499105.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3045,7 +3298,8 @@ "strain": "Houghton", "supercontigs": 3707, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499385.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3057,7 +3311,8 @@ "strain": "Houghton", "supercontigs": 3415, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499425.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3069,7 +3324,8 @@ "strain": "Houghton", "supercontigs": 21348, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499445.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/445/GCA_000499445.1/genes/GCA_000499445.1_EPH001.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3081,7 +3337,8 @@ "strain": "strain Houghton", "supercontigs": 4664, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499545.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/545/GCA_000499545.1/genes/GCA_000499545.1_ETH001.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3093,7 +3350,8 @@ "strain": "Weybridge", "supercontigs": 3564, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499605.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3105,7 +3363,8 @@ "strain": "Houghton", "supercontigs": 8575, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499725.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/725/GCA_000499725.1/genes/GCA_000499725.1_EBH001.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3117,7 +3376,8 @@ "strain": "Houghton", "supercontigs": 15978, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499745.2", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3129,7 +3389,8 @@ "strain": "CBS 569", "supercontigs": 242, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000507425.3", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3141,7 +3402,8 @@ "strain": "strain APO3", "supercontigs": 835, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520075.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3153,7 +3415,8 @@ "strain": "NJM9701", "supercontigs": 481, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520115.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3165,7 +3428,8 @@ "strain": "San Antonio 1", "supercontigs": 323, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000524495.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3177,7 +3441,8 @@ "strain": "petteri strain CR", "supercontigs": 66, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000524515.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -3189,7 +3454,8 @@ "strain": "CBS 114405", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585515.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3201,7 +3467,8 @@ "strain": "CBS 110553", "supercontigs": 123, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585535.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3213,7 +3480,8 @@ "strain": "Harlan", "supercontigs": 417, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000648675.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3225,7 +3493,8 @@ "strain": "IAEA", "supercontigs": 2395, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671735.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3237,7 +3506,8 @@ "strain": "IAEA", "supercontigs": 1651, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671755.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3249,7 +3519,8 @@ "strain": "IAEA", "supercontigs": 1726, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688715.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3261,7 +3532,8 @@ "strain": "TTRI", "supercontigs": 2205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688735.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3273,7 +3545,8 @@ "strain": "ANR4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691245.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 4, @@ -3285,7 +3558,8 @@ "strain": "strain RI", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691945.2", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3297,7 +3571,8 @@ "strain": "PC15", "supercontigs": 12, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000697685.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3309,7 +3584,8 @@ "strain": "vinckei strain vinckei", "supercontigs": 49, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709005.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3321,7 +3597,8 @@ "strain": "CBS 119918", "supercontigs": 151, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709125.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 5, @@ -3333,7 +3610,8 @@ "strain": "strain BOND", "supercontigs": 478, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723445.1", - "vEuPathDbProject": "PiroplasmaDB" + "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" }, { "chromosomes": 0, @@ -3345,7 +3623,8 @@ "strain": "JMRC:FSU:9682", "supercontigs": 209, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723665.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/665/GCA_000723665.1/genes/GCA_000723665.1_454Minimus.augustus.gtf.gz" }, { "chromosomes": 14, @@ -3357,7 +3636,8 @@ "strain": "CDC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000723685.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3369,7 +3649,8 @@ "strain": "SN3", "supercontigs": 171, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000727475.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/727/475/GCA_000727475.1/genes/GCA_000727475.1_ASM72747v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3381,7 +3662,8 @@ "strain": "IHEM 14462", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000732125.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3393,7 +3675,8 @@ "strain": "IBT 40293", "supercontigs": 2342, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000732565.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/732/565/GCA_000732565.1/genes/GCA_000732565.1_S40293v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3405,7 +3688,8 @@ "strain": "ERTm6", "supercontigs": 22, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000738915.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 4, @@ -3417,7 +3701,8 @@ "strain": "strain Shintoku", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000740895.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 35, @@ -3429,7 +3714,8 @@ "strain": "strain MHOM/PA/94/PSC-1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000755165.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3441,7 +3727,8 @@ "strain": "UGP3", "supercontigs": 610, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000760515.2", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3453,7 +3740,8 @@ "strain": "strain CHN_HEN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000769155.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3465,7 +3753,8 @@ "strain": "d1", "supercontigs": 270, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000769735.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/769/735/GCA_000769735.1/genes/GCA_000769735.1_ASM76973v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3477,7 +3766,8 @@ "strain": "OC4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000803265.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3489,7 +3779,8 @@ "strain": "37999", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000804495.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/804/495/GCA_000804495.1/genes/GCA_000804495.1_ASM80449v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3501,7 +3792,8 @@ "strain": "ARSEF 549", "supercontigs": 74, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000814975.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3513,7 +3805,8 @@ "strain": "IAEA", "supercontigs": 3926, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000818775.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3525,7 +3818,8 @@ "strain": "5110", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000820605.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3537,7 +3831,8 @@ "strain": "Unknown", "supercontigs": 98248, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826245.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3549,7 +3844,8 @@ "strain": "A1", "supercontigs": 72411, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826265.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3561,7 +3857,8 @@ "strain": "PD2S", "supercontigs": 79048, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826285.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3573,7 +3870,8 @@ "strain": "Reich", "supercontigs": 26188, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826305.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3585,7 +3883,8 @@ "strain": "SH621", "supercontigs": 56742, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826325.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3597,7 +3896,8 @@ "strain": "T4B-type", "supercontigs": 224482, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826345.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3609,7 +3909,8 @@ "strain": "Incertae_sedis", "supercontigs": 24098, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826365.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3621,7 +3922,8 @@ "strain": "Singh", "supercontigs": 62836, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826385.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3633,7 +3935,8 @@ "strain": "L3a", "supercontigs": 67459, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826425.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3645,7 +3948,8 @@ "strain": "Vil3", "supercontigs": 60490, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826445.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3657,7 +3961,8 @@ "strain": "1652", "supercontigs": 67233, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826465.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3669,7 +3974,8 @@ "strain": "Ma", "supercontigs": 221748, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826485.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3681,7 +3987,8 @@ "strain": "Galka", "supercontigs": 224137, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826505.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -3693,7 +4000,8 @@ "strain": "Arlian", "supercontigs": 18859, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000828355.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3705,7 +4013,8 @@ "strain": "chipmunk LX-2015", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000831705.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/831/705/GCA_000831705.1/genes/GCA_000831705.1_ASM83170v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3717,7 +4026,8 @@ "strain": "CBS 271.37", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835455.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3729,7 +4039,8 @@ "strain": "CBS 173.52", "supercontigs": 60, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835475.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3741,7 +4052,8 @@ "strain": "strain CBS 83496", "supercontigs": 277, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835495.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3753,7 +4065,8 @@ "strain": "strain CBS 72588", "supercontigs": 143, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835515.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3765,7 +4078,8 @@ "strain": "CBS 650.93", "supercontigs": 17, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835555.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3777,7 +4091,8 @@ "strain": "EJB2", "supercontigs": 282, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000835745.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3789,7 +4104,8 @@ "strain": "CBS 89968", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836115.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3801,7 +4117,8 @@ "strain": "strain CBS 40295", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836275.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3813,7 +4130,8 @@ "strain": "strain CBS 43764", "supercontigs": 367, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836295.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3825,7 +4143,8 @@ "strain": "CBS 102226", "supercontigs": 67, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836435.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3837,7 +4156,8 @@ "strain": "CA1873", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000855695.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3849,7 +4169,8 @@ "strain": "SO SN1", "supercontigs": 3066, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000875885.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/875/885/GCA_000875885.1/genes/GCA_000875885.1_ASM87588v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3861,7 +4182,8 @@ "strain": "NT10", "supercontigs": 226, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000935105.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3873,7 +4195,8 @@ "strain": "strain nilgiri", "supercontigs": 247, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000956335.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3885,7 +4208,8 @@ "strain": "1099-18", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000961545.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3897,7 +4221,8 @@ "strain": "DAOM 233423", "supercontigs": 869, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000966635.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -3909,7 +4234,8 @@ "strain": "Charles River", "supercontigs": 204516, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000973045.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/973/045/GCA_000973045.2/genes/GCA_000973045.2_ASM97304v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3921,7 +4247,8 @@ "strain": "strain PA08_1199", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000988165.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -3933,7 +4260,8 @@ "strain": "UAMH 3008", "supercontigs": 1734, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001008285.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/008/285/GCA_001008285.1/genes/GCA_001008285.1_ASM100828v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3945,7 +4273,8 @@ "strain": "USDA", "supercontigs": 12042, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001015335.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -3957,7 +4286,8 @@ "strain": "Yale", "supercontigs": 13807, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077435.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/435/GCA_001077435.1/genes/GCA_001077435.1_ASM107743v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3969,7 +4299,8 @@ "strain": "strain Rouen 1987", "supercontigs": 141, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077455.2", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/455/GCA_001077455.2/genes/GCA_001077455.2_ASM107745v2.augustus.gtf.gz" }, { "chromosomes": 15, @@ -3981,7 +4312,8 @@ "strain": "EcunIII-L", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001078035.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/078/035/GCA_001078035.1/genes/GCA_001078035.1_ECIIIL.augustus.gtf.gz" }, { "chromosomes": 0, @@ -3993,7 +4325,8 @@ "strain": "CCMP3155", "supercontigs": 1064, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001179505.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/179/505/GCA_001179505.1/genes/GCA_001179505.1_Vbrassicaformis.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4005,7 +4338,8 @@ "strain": "CDC-V039", "supercontigs": 1604, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001185145.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/185/145/GCA_001185145.1/genes/GCA_001185145.1_ASM118514v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4017,7 +4351,8 @@ "strain": "6684", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001189475.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/189/475/GCA_001189475.1/genes/GCA_001189475.1_ASM118947v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4029,7 +4364,8 @@ "strain": "strain 2046", "supercontigs": 14699, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001262475.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/262/475/GCA_001262475.1/genes/GCA_001262475.1_ASM126247v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4041,7 +4377,8 @@ "strain": "strain RO10H11247", "supercontigs": 15715, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001263375.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/263/375/GCA_001263375.1/genes/GCA_001263375.1_ASM126337v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4053,7 +4390,8 @@ "strain": "mm55", "supercontigs": 804, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001275765.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/275/765/GCA_001275765.2/genes/GCA_001275765.2_ASM127576v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4065,7 +4403,8 @@ "strain": "CBS 1879", "supercontigs": 91, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001278385.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 35, @@ -4077,7 +4416,8 @@ "strain": "H10", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001293395.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4089,7 +4429,8 @@ "strain": "ATCC 30220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001299535.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/299/535/GCA_001299535.1/genes/GCA_001299535.1_ASM129953v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4101,7 +4442,8 @@ "strain": "isolate UAMH 5669", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430925.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/925/GCA_001430925.1/genes/GCA_001430925.1_ASM143092v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4113,7 +4455,8 @@ "strain": "isolate UAMH 3576", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430935.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/935/GCA_001430935.1/genes/GCA_001430935.1_ASM143093v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4125,7 +4468,8 @@ "strain": "isolate UAMH 3544", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/945/GCA_001430945.1/genes/GCA_001430945.1_ASM143094v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4137,7 +4481,8 @@ "strain": "isolate CBS 280.77", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430955.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/955/GCA_001430955.1/genes/GCA_001430955.1_ASM143095v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4149,7 +4494,8 @@ "strain": "strain MK1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001432165.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/432/165/GCA_001432165.1/genes/GCA_001432165.1_ASM143216v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4161,7 +4507,8 @@ "strain": "NRRL Y-1402", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001444555.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/444/555/GCA_001444555.1/genes/GCA_001444555.1_ASM144455v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4173,7 +4520,8 @@ "strain": "strain IFM 54703", "supercontigs": 12, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001445615.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4185,7 +4533,8 @@ "strain": "CBS 789", "supercontigs": 534, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001447935.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4197,7 +4546,8 @@ "strain": "OVI", "supercontigs": 2026, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001457755.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -4209,7 +4559,8 @@ "strain": "strain Lake Konstanz", "supercontigs": 2256, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001460835.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/460/835/GCA_001460835.1/genes/GCA_001460835.1_BSAL.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4221,7 +4572,8 @@ "strain": "RU7", "supercontigs": 70, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477535.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4233,7 +4585,8 @@ "strain": "isolate 30976", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001483515.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/483/515/GCA_001483515.1/genes/GCA_001483515.1_ASM148351v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4245,7 +4598,8 @@ "strain": "AS175", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001493575.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/493/575/GCA_001493575.1/genes/GCA_001493575.1_GIAS175.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4257,7 +4611,8 @@ "strain": "isolate BAH15c1", "supercontigs": 508, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001543975.1", - "vEuPathDbProject": "GiardiaDB" + "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" }, { "chromosomes": 0, @@ -4269,7 +4624,8 @@ "strain": "A1 (DAOM-664342)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593125.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/125/GCA_001593125.1/genes/GCA_001593125.1_ASM159312v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4281,7 +4637,8 @@ "strain": "RH 2016", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593265.1", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -4293,7 +4650,8 @@ "strain": "strain UKMEL1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593445.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 0, @@ -4305,7 +4663,8 @@ "strain": "TAMU-09Q1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593455.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 0, @@ -4317,7 +4676,8 @@ "strain": "isolate TU502_2012", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593465.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 0, @@ -4329,7 +4689,8 @@ "strain": "UKH1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593475.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 0, @@ -4341,7 +4702,8 @@ "strain": "JCM 9937", "supercontigs": 61, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001598995.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4353,7 +4715,8 @@ "strain": "strain JCM 9410", "supercontigs": 23, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599035.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4365,7 +4728,8 @@ "strain": "JCM2334", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599735.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 14, @@ -4377,7 +4741,8 @@ "strain": "strain SY75", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001602025.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4389,7 +4754,8 @@ "strain": "strain SISKIN1", "supercontigs": 2982, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001625125.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/625/125/GCA_001625125.1/genes/GCA_001625125.1_ASM162512v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4401,7 +4767,8 @@ "strain": "ARSEF 7405", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001636715.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4413,7 +4780,8 @@ "strain": "CBS 277.49", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001638945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/638/945/GCA_001638945.1/genes/GCA_001638945.1_Mucci2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4425,7 +4793,8 @@ "strain": "NRRL 1555(-)", "supercontigs": 80, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001638985.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4437,7 +4806,8 @@ "strain": "SRC1lrK2f", "supercontigs": 79, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001642055.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4449,7 +4819,8 @@ "strain": "strain JUm2807", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642395.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/395/GCA_001642395.1/genes/GCA_001642395.1_ASM164239v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4461,7 +4832,8 @@ "strain": "ERTm5", "supercontigs": 186, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642415.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/415/GCA_001642415.1/genes/GCA_001642415.1_ASM164241v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4473,7 +4845,8 @@ "strain": "PA203", "supercontigs": 101, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001643675.2", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/643/675/GCA_001643675.2/genes/GCA_001643675.2_ASM164367v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4485,7 +4858,8 @@ "strain": "strain ATCC 30222", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650055.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/055/GCA_001650055.1/genes/GCA_001650055.1_ASM165005v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4497,7 +4871,8 @@ "strain": "strain ATCC PRA-99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650065.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/065/GCA_001650065.1/genes/GCA_001650065.1_ASM165006v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4509,7 +4884,8 @@ "strain": "strain GreenwichYale_Lab_strain_1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650075.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/075/GCA_001650075.1/genes/GCA_001650075.1_ASM165007v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4521,7 +4897,8 @@ "strain": "strain GI", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650105.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/105/GCA_001650105.1/genes/GCA_001650105.1_ASM165010v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4533,7 +4910,8 @@ "strain": "strain Naushon", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650135.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/135/GCA_001650135.1/genes/GCA_001650135.1_ASM165013v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4545,7 +4923,8 @@ "strain": "Nan_Hs_2011_N11-50", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650145.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/145/GCA_001650145.1/genes/GCA_001650145.1_ASM165014v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4557,7 +4936,8 @@ "strain": "CBS 136260", "supercontigs": 4444, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001660665.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 11, @@ -4569,7 +4949,8 @@ "strain": "IMI 349063", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001672515.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -4581,7 +4962,8 @@ "strain": "Hackeri", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001680005.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4593,7 +4975,8 @@ "strain": "1.58", "supercontigs": 268, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001692895.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4605,7 +4988,8 @@ "strain": "KSF", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001700775.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/700/775/GCA_001700775.1/genes/GCA_001700775.1_ASM170077v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4617,7 +5001,8 @@ "strain": "GZAAS20.1005", "supercontigs": 68, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001717485.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/717/485/GCA_001717485.1/genes/GCA_001717485.1_ASM171748v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4629,7 +5014,8 @@ "strain": "strain AWRI3580", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001747055.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/747/055/GCA_001747055.1/genes/GCA_001747055.1_ASM174705v1.augustus.gtf.gz" }, { "chromosomes": 6, @@ -4641,7 +5027,8 @@ "strain": "CLIB89 (W29)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001761485.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/761/485/GCA_001761485.1/genes/GCA_001761485.1_ASM176148v1.augustus.gtf.gz" }, { "chromosomes": 16, @@ -4653,7 +5040,8 @@ "strain": "1980 UF-70", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001857865.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/857/865/GCA_001857865.1/genes/GCA_001857865.1_ASM185786v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4665,7 +5053,8 @@ "strain": "isolate 39726", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865345.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4677,7 +5066,8 @@ "strain": "isolate 30847", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865355.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4689,7 +5079,8 @@ "strain": "WSBS2006", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001875675.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/875/675/GCA_001875675.1/genes/GCA_001875675.1_ASM187567v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4701,7 +5092,8 @@ "strain": "strain EI222", "supercontigs": 3868, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883805.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4713,7 +5105,8 @@ "strain": "Ep9510", "supercontigs": 1643, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883825.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4725,7 +5118,8 @@ "strain": "CBS 101740", "supercontigs": 103, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001889945.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/889/945/GCA_001889945.1/genes/GCA_001889945.1_Aspbr1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4737,7 +5131,8 @@ "strain": "CBS 506.65", "supercontigs": 246, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890105.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4749,7 +5144,8 @@ "strain": "CBS 583.65", "supercontigs": 51, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890125.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4761,7 +5157,8 @@ "strain": "CBS 106.47", "supercontigs": 100, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890685.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/685/GCA_001890685.1/genes/GCA_001890685.1_Aspfo1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4773,7 +5170,8 @@ "strain": "CBS 593.65", "supercontigs": 97, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890705.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4785,7 +5183,8 @@ "strain": "DTO 134E9", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890725.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4797,7 +5196,8 @@ "strain": "CBS 134.48", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890745.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/745/GCA_001890745.1/genes/GCA_001890745.1_Asptu1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4809,7 +5209,8 @@ "strain": "CBS 516.65", "supercontigs": 82, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890805.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4821,7 +5222,8 @@ "strain": "ATCC 16872", "supercontigs": 660, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890905.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4833,7 +5235,8 @@ "strain": "65", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001983305.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/983/305/GCA_001983305.1/genes/GCA_001983305.1_ASM198330v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4845,7 +5248,8 @@ "strain": "ITEM 5010", "supercontigs": 829, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001990825.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/990/825/GCA_001990825.1/genes/GCA_001990825.1_Aspca3.augustus.gtf.gz" }, { "chromosomes": 7, @@ -4857,7 +5261,8 @@ "strain": "QM6a 2017", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002006585.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/006/585/GCA_002006585.1/genes/GCA_002006585.1_ASM200658v1.augustus.gtf.gz" }, { "chromosomes": 16, @@ -4869,7 +5274,8 @@ "strain": "CBS432", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002079055.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4881,7 +5287,8 @@ "strain": "strain TH1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002081675.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/081/675/GCA_002081675.1/genes/GCA_002081675.1_ASM208167v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4893,7 +5300,8 @@ "strain": "var. microsporus ATCC 52814", "supercontigs": 560, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002083745.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -4905,7 +5313,8 @@ "strain": "isolate Edinburgh", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002087225.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4917,7 +5326,8 @@ "strain": "strain canceri", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087875.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/875/GCA_002087875.1/genes/GCA_002087875.1_ASM208787v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4929,7 +5339,8 @@ "strain": "strain GB1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087885.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/885/GCA_002087885.1/genes/GCA_002087885.1_ASM208788v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4941,7 +5352,8 @@ "strain": "strain GB1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087915.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/915/GCA_002087915.1/genes/GCA_002087915.1_ASM208791v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4953,7 +5365,8 @@ "strain": "Xinjiang", "supercontigs": 215, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002095265.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -4965,7 +5378,8 @@ "strain": "5z489", "supercontigs": 108, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002110485.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/110/485/GCA_002110485.1/genes/GCA_002110485.1_ASM211048v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4977,7 +5391,8 @@ "strain": "EXF-2000", "supercontigs": 628, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002127715.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/127/715/GCA_002127715.1/genes/GCA_002127715.1_HwerPB1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -4989,7 +5404,8 @@ "strain": "strain Malayan Strain Pk1 A", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002140095.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/140/095/GCA_002140095.1/genes/GCA_002140095.1_PKNOHv1.augustus.gtf.gz" }, { "chromosomes": 3, @@ -5001,7 +5417,8 @@ "strain": "LVP_AGWG", "supercontigs": 2306, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002204515.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 5, @@ -5013,7 +5430,8 @@ "strain": "var. neoformans XL280", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216205.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/205/GCA_002216205.1/genes/GCA_002216205.1_ASM221620v1.augustus.gtf.gz" }, { "chromosomes": 14, @@ -5025,7 +5443,8 @@ "strain": "var. grubii KN99", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216725.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/725/GCA_002216725.1/genes/GCA_002216725.1_ASM221672v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5037,7 +5456,8 @@ "strain": "Dm28c 2017", "supercontigs": 1029, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219105.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/105/GCA_002219105.2/genes/GCA_002219105.2_TcruziDm28cPB1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -5049,7 +5469,8 @@ "strain": "DSY562", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219185.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/185/GCA_002219185.1/genes/GCA_002219185.1_ASM221918v1.augustus.gtf.gz" }, { "chromosomes": 8, @@ -5061,7 +5482,8 @@ "strain": "UdeA01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002223825.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 0, @@ -5073,7 +5495,8 @@ "strain": "strain HMR AF 39", "supercontigs": 647, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002237265.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5085,7 +5508,8 @@ "strain": "AV1007", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002247145.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5097,7 +5521,8 @@ "strain": "Bayer Haberkorn 1970", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002271815.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/271/815/GCA_002271815.1/genes/GCA_002271815.1_ASM227181v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5109,7 +5534,8 @@ "strain": "JHH-5317", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002276285.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5121,7 +5547,8 @@ "strain": "Tc1/148", "supercontigs": 536, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002287245.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/287/245/GCA_002287245.1/genes/GCA_002287245.1_ASM228724v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -5133,7 +5560,8 @@ "strain": "strain Bb-Ger1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002563875.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5145,7 +5573,8 @@ "strain": "strain Wien I", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002600585.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5157,7 +5586,8 @@ "strain": "Bug2148", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749415.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/415/GCA_002749415.1/genes/GCA_002749415.1_ASM274941v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5169,7 +5599,8 @@ "strain": "strain Y", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749425.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/425/GCA_002749425.1/genes/GCA_002749425.1_ASM274942v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5181,7 +5612,8 @@ "strain": "NCCPF 102052", "supercontigs": 411, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749535.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/535/GCA_002749535.1/genes/GCA_002749535.1_ASM274953v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5193,7 +5625,8 @@ "strain": "B11221", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002775015.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5205,7 +5638,8 @@ "strain": "IBT 24754", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002846915.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5217,7 +5651,8 @@ "strain": "IBT 16806", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847465.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5229,7 +5664,8 @@ "strain": "IBT 28561", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847485.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5241,7 +5677,8 @@ "strain": "IBT 23096", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002849105.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5253,7 +5690,8 @@ "strain": "ISE6", "supercontigs": 6476, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002892825.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5265,7 +5703,8 @@ "strain": "strain Miyake", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002897235.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5277,7 +5716,8 @@ "strain": "var. palmivora strain sbr112.9", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002911725.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/911/725/GCA_002911725.1/genes/GCA_002911725.1_ASM291172v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5289,7 +5729,8 @@ "strain": "Laredo", "supercontigs": 1147, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002914575.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/914/575/GCA_002914575.1/genes/GCA_002914575.1_ASM291457v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5301,7 +5742,8 @@ "strain": "strain 93-210", "supercontigs": 492, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920065.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/065/GCA_002920065.1/genes/GCA_002920065.1_ASM292006v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5313,7 +5755,8 @@ "strain": "93TX-2", "supercontigs": 561, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920205.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/205/GCA_002920205.1/genes/GCA_002920205.1_ASM292020v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5325,7 +5768,8 @@ "strain": "CUL13", "supercontigs": 266, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002921335.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/921/335/GCA_002921335.1/genes/GCA_002921335.1_ASM292133v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5337,7 +5781,8 @@ "strain": "B11899", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926055.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5349,7 +5794,8 @@ "strain": "B09383", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926085.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -5361,7 +5807,8 @@ "strain": "R265", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002954075.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5373,7 +5820,8 @@ "strain": "var. grubii H99 2018", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003011985.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/011/985/GCA_003011985.1/genes/GCA_003011985.1_ASM301198v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -5385,7 +5833,8 @@ "strain": "IL3000 2019", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003013265.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/013/265/GCA_003013265.1/genes/GCA_003013265.1_ASM301326v1.augustus.gtf.gz" }, { "chromosomes": 7, @@ -5397,7 +5846,8 @@ "strain": "B11220", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013715.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5409,7 +5859,8 @@ "strain": "B12108", "supercontigs": 36, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013735.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5421,7 +5872,8 @@ "strain": "B11243", "supercontigs": 238, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003014415.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 5, @@ -5433,7 +5885,8 @@ "strain": "strain CBS5147", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003054405.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/054/405/GCA_003054405.1/genes/GCA_003054405.1_ASM305440v1.augustus.gtf.gz" }, { "chromosomes": 5, @@ -5445,7 +5898,8 @@ "strain": "strain CBS573", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003054445.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5457,7 +5911,8 @@ "strain": "TIMM 2789", "supercontigs": 16543, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003118255.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5469,7 +5924,8 @@ "strain": "TCC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177095.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -5481,7 +5937,8 @@ "strain": "Dm28c 2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177105.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/105/GCA_003177105.1/genes/GCA_003177105.1_ASM317710v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5493,7 +5950,8 @@ "strain": "CBS 122712", "supercontigs": 131, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184535.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5505,7 +5963,8 @@ "strain": "CBS 117.55", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184545.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5517,7 +5976,8 @@ "strain": "CBS 121057", "supercontigs": 166, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184635.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/635/GCA_003184635.1/genes/GCA_003184635.1_Aspscle1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5529,7 +5989,8 @@ "strain": "CBS 707.79", "supercontigs": 518, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184645.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/645/GCA_003184645.1/genes/GCA_003184645.1_Aspell1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5541,7 +6002,8 @@ "strain": "CBS 121591", "supercontigs": 172, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184745.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5553,7 +6015,8 @@ "strain": "CBS 313.89", "supercontigs": 149, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184825.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5565,7 +6028,8 @@ "strain": "CBS 121593", "supercontigs": 116, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184845.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5577,7 +6041,8 @@ "strain": "CBS 101889", "supercontigs": 152, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184865.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5589,7 +6054,8 @@ "strain": "10300", "supercontigs": 4623, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003287315.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 9, @@ -5601,7 +6067,8 @@ "strain": "KCTC 27527", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003290485.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5613,7 +6080,8 @@ "strain": "strain ATCC 30569", "supercontigs": 109, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003324165.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 22, @@ -5625,7 +6093,8 @@ "strain": "isolate AG07107", "supercontigs": 2916, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003339765.1", - "vEuPathDbProject": "HostDB" + "vEuPathDbProject": "HostDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -5637,7 +6106,8 @@ "strain": "ATCC 13496", "supercontigs": 133, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003344705.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5649,7 +6119,8 @@ "strain": "PvSY56", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003402215.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -5661,7 +6132,8 @@ "strain": "strain S11", "supercontigs": 7855, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594385.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/385/GCA_003594385.1/genes/GCA_003594385.1_ASM359438v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5673,7 +6145,8 @@ "strain": "strain Ycl4", "supercontigs": 6664, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594405.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/405/GCA_003594405.1/genes/GCA_003594405.1_ASM359440v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5685,7 +6158,8 @@ "strain": "strain S23b", "supercontigs": 7145, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594425.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/425/GCA_003594425.1/genes/GCA_003594425.1_ASM359442v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5697,7 +6171,8 @@ "strain": "strain S92a", "supercontigs": 7134, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594445.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/445/GCA_003594445.1/genes/GCA_003594445.1_ASM359444v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5709,7 +6184,8 @@ "strain": "strain Ycl6", "supercontigs": 6967, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594465.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/465/GCA_003594465.1/genes/GCA_003594465.1_ASM359446v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5721,7 +6197,8 @@ "strain": "strain Ycl2", "supercontigs": 6884, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594485.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/485/GCA_003594485.1/genes/GCA_003594485.1_ASM359448v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5733,7 +6210,8 @@ "strain": "strain S15", "supercontigs": 9197, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594585.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/585/GCA_003594585.1/genes/GCA_003594585.1_ASM359458v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5745,7 +6223,8 @@ "strain": "strain S162a", "supercontigs": 8588, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594605.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/605/GCA_003594605.1/genes/GCA_003594605.1_ASM359460v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5757,7 +6236,8 @@ "strain": "strain S44a", "supercontigs": 4971, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594705.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/705/GCA_003594705.1/genes/GCA_003594705.1_ASM359470v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5769,7 +6249,8 @@ "strain": "strain S154a", "supercontigs": 6946, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594715.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/715/GCA_003594715.1/genes/GCA_003594715.1_ASM359471v1.augustus.gtf.gz" }, { "chromosomes": 9, @@ -5781,7 +6262,8 @@ "strain": "CBS 7877", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003691605.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/691/605/GCA_003691605.1/genes/GCA_003691605.1_ASM369160v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5793,7 +6275,8 @@ "strain": "EHP-ID16", "supercontigs": 162, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709115.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/115/GCA_003709115.1/genes/GCA_003709115.1_ASM370911v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5805,7 +6288,8 @@ "strain": "CBS 132003", "supercontigs": 118, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709865.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/865/GCA_003709865.1/genes/GCA_003709865.1_ASM370986v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5817,7 +6301,8 @@ "strain": "strain CL", "supercontigs": 7764, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719155.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/155/GCA_003719155.1/genes/GCA_003719155.1_ASM371915v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5829,7 +6314,8 @@ "strain": "strain G", "supercontigs": 1450, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719455.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/455/GCA_003719455.1/genes/GCA_003719455.1_ASM371945v1.augustus.gtf.gz" }, { "chromosomes": 36, @@ -5841,7 +6327,8 @@ "strain": "CL-SL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719575.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/575/GCA_003719575.1/genes/GCA_003719575.1_ASM371957v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5853,7 +6340,8 @@ "strain": "ALCF2SS1-7", "supercontigs": 207, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003813185.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 7, @@ -5865,7 +6353,8 @@ "strain": "Fl1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003814445.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/814/445/GCA_003814445.1/genes/GCA_003814445.1_ASM381444v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5877,7 +6366,8 @@ "strain": "R13", "supercontigs": 784, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003843895.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/843/895/GCA_003843895.1/genes/GCA_003843895.1_ASM384389v1.augustus.gtf.gz" }, { "chromosomes": 3, @@ -5889,7 +6379,8 @@ "strain": "FUMOZ", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003951495.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/951/495/GCA_003951495.1/genes/GCA_003951495.1_AfunF3.augustus.gtf.gz" }, { "chromosomes": 8, @@ -5901,7 +6392,8 @@ "strain": "TM4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003971505.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/971/505/GCA_003971505.1/genes/GCA_003971505.1_ASM397150v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5913,7 +6405,8 @@ "strain": "CBS H-5679", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000055.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5925,7 +6418,8 @@ "strain": "Franzen", "supercontigs": 952, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000155.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/155/GCA_004000155.1/genes/GCA_004000155.1_ASM400015v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5937,7 +6431,8 @@ "strain": "WA_211", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004115165.2", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -5949,7 +6444,8 @@ "strain": "Race XXXIII", "supercontigs": 116756, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004125335.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/125/335/GCA_004125335.1/genes/GCA_004125335.1_ASM412533v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5961,7 +6457,8 @@ "strain": "Ngousso", "supercontigs": 205, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004136515.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/136/515/GCA_004136515.2/genes/GCA_004136515.2_ASM413651v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -5973,7 +6470,8 @@ "strain": "GB-EP-1", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324935.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -5985,7 +6483,8 @@ "strain": "NO-V-7", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324945.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -5997,7 +6496,8 @@ "strain": "IL-BN-2", "supercontigs": 3833, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325035.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/035/GCA_004325035.1/genes/GCA_004325035.1_ASM432503v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6009,7 +6509,8 @@ "strain": "FI-OER-3-3", "supercontigs": 2915, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325045.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -6021,7 +6522,8 @@ "strain": "FI-SK-17-1", "supercontigs": 26, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325055.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -6033,7 +6535,8 @@ "strain": "BE-OM-2", "supercontigs": 3550, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325065.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -6045,7 +6548,8 @@ "strain": "IL-G-3", "supercontigs": 2738, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325075.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 5, @@ -6057,7 +6561,8 @@ "strain": "Br36", "supercontigs": 103, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004337985.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/337/985/GCA_004337985.1/genes/GCA_004337985.1_PpBr36.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6069,7 +6574,8 @@ "strain": "Ricmel1", "supercontigs": 848, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004355085.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/355/085/GCA_004355085.1/genes/GCA_004355085.1_Ricmel1.augustus.gtf.gz" }, { "chromosomes": 19, @@ -6081,7 +6587,8 @@ "strain": "strain SF5", "supercontigs": 201, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004359215.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/359/215/GCA_004359215.2/genes/GCA_004359215.2_BlacSF5v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6093,7 +6600,8 @@ "strain": "NIH1004", "supercontigs": 1715, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004798825.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/798/825/GCA_004798825.1/genes/GCA_004798825.1_ASM479882v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6105,7 +6613,8 @@ "strain": "BRL", "supercontigs": 110, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004919615.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -6117,7 +6626,8 @@ "strain": "strain 37763", "supercontigs": 50, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004936735.2", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 5, @@ -6129,7 +6639,8 @@ "strain": "strain Roberts-Thomson", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006247105.1", - "vEuPathDbProject": "GiardiaDB" + "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" }, { "chromosomes": 0, @@ -6141,7 +6652,8 @@ "strain": "Foshan FPA", "supercontigs": 2196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_006496715.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -6153,7 +6665,8 @@ "strain": "MB42", "supercontigs": 786, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006535955.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/535/955/GCA_006535955.1/genes/GCA_006535955.1_ASM653595v1.augustus.gtf.gz" }, { "chromosomes": 8, @@ -6165,7 +6678,8 @@ "strain": "isolate UGA55", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007210665.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 17, @@ -6177,7 +6691,8 @@ "strain": "CLX", "supercontigs": 1, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007674295.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/674/295/GCA_007674295.1/genes/GCA_007674295.1_ASM767429v1.augustus.gtf.gz" }, { "chromosomes": 7, @@ -6189,7 +6704,8 @@ "strain": "ATCC 34164", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008080495.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/080/495/GCA_008080495.1/genes/GCA_008080495.1_ASM808049v1.augustus.gtf.gz" }, { "chromosomes": 7, @@ -6201,7 +6717,8 @@ "strain": "B11245", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008275145.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/275/145/GCA_008275145.1/genes/GCA_008275145.1_ASM827514v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6213,7 +6730,8 @@ "strain": "strain ATCC 30894", "supercontigs": 81, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008403515.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6225,7 +6743,8 @@ "strain": "CBS 613", "supercontigs": 169, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008704595.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6237,7 +6756,8 @@ "strain": "CBS 4856", "supercontigs": 583, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008704605.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/704/605/GCA_008704605.1/genes/GCA_008704605.1_ASM870460v1.augustus.gtf.gz" }, { "chromosomes": 10, @@ -6249,7 +6769,8 @@ "strain": "KPH11", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008728235.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/728/235/GCA_008728235.1/genes/GCA_008728235.1_ASM872823v1.augustus.gtf.gz" }, { "chromosomes": 8, @@ -6261,7 +6782,8 @@ "strain": "NRRL3357 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009017415.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/017/415/GCA_009017415.1/genes/GCA_009017415.1_ASM901741v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6273,7 +6795,8 @@ "strain": "CBS 117618", "supercontigs": 270, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009176385.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/176/385/GCA_009176385.1/genes/GCA_009176385.1_Asppar1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -6285,7 +6808,8 @@ "strain": "MF34", "supercontigs": 2, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009650685.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -6297,7 +6821,8 @@ "strain": "Parrot Tar II 2019", "supercontigs": 179, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009731335.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -6309,7 +6834,8 @@ "strain": "NF135.C10", "supercontigs": 21, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761425.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -6321,7 +6847,8 @@ "strain": "NF54", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761475.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -6333,7 +6860,8 @@ "strain": "NF166", "supercontigs": 30, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761515.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -6345,7 +6873,8 @@ "strain": "7G8 2019", "supercontigs": 20, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761555.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -6357,7 +6886,8 @@ "strain": "isolate 45015", "supercontigs": 55, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009768925.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6369,7 +6899,8 @@ "strain": "45019", "supercontigs": 93, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009792415.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6381,7 +6912,8 @@ "strain": "strain LDM3", "supercontigs": 14, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009812365.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/812/365/GCA_009812365.1/genes/GCA_009812365.1_ASM981236v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -6393,7 +6925,8 @@ "strain": "CBS138 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_010111755.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6405,7 +6938,8 @@ "strain": "isolate FIOC_28", "supercontigs": 14951, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011037195.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -6417,7 +6951,8 @@ "strain": "isolate WB Calgary", "supercontigs": 37, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634545.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/545/GCA_011634545.1/genes/GCA_011634545.1_ASM1163454v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6429,7 +6964,8 @@ "strain": "Beaver", "supercontigs": 8, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634555.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/555/GCA_011634555.1/genes/GCA_011634555.1_ASM1163455v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6441,7 +6977,8 @@ "strain": "isolate GS Calgary", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634595.1", - "vEuPathDbProject": "GiardiaDB" + "vEuPathDbProject": "GiardiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/595/GCA_011634595.1/genes/GCA_011634595.1_ASM1163459v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -6453,7 +6990,8 @@ "strain": "RH-88", "supercontigs": 183, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013099955.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/099/955/GCA_013099955.1/genes/GCA_013099955.1_tgrh88.augustus.gtf.gz" }, { "chromosomes": 7, @@ -6465,7 +7003,8 @@ "strain": "MYA-3404 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013177555.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/177/555/GCA_013177555.1/genes/GCA_013177555.1_ASM1317755v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -6477,7 +7016,8 @@ "strain": "Hyas-2018", "supercontigs": 6308, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339685.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 11, @@ -6489,7 +7029,8 @@ "strain": "Rmic-2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339725.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 11, @@ -6501,7 +7042,8 @@ "strain": "Dsil-2018", "supercontigs": 1653, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339745.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 11, @@ -6513,7 +7055,8 @@ "strain": "HaeL-2018", "supercontigs": 3874, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339765.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -6525,7 +7068,8 @@ "strain": "Berenice", "supercontigs": 923, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358655.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/655/GCA_013358655.1/genes/GCA_013358655.1_ASM1335865v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6537,7 +7081,8 @@ "strain": "Iper-2018", "supercontigs": 11596, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358835.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -6549,7 +7094,8 @@ "strain": "NRRL 25331", "supercontigs": 1222, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013396185.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/396/185/GCA_013396185.1/genes/GCA_013396185.1_ASM1339618v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6561,7 +7107,8 @@ "strain": "KleinGrass", "supercontigs": 16339, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013436015.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 15, @@ -6573,7 +7120,8 @@ "strain": "f. sp. conglutinans Fo5176", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014154955.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -6585,7 +7133,8 @@ "strain": "RL4", "supercontigs": 169, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014183025.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/183/025/GCA_014183025.1/genes/GCA_014183025.1_ASM1418302v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -6597,7 +7146,8 @@ "strain": "BG2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014217725.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/217/725/GCA_014217725.1/genes/GCA_014217725.1_ASM1421772v1.augustus.gtf.gz" }, { "chromosomes": 40, @@ -6609,7 +7159,8 @@ "strain": "familiaris isolate SID07034", "supercontigs": 336, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014441545.1", - "vEuPathDbProject": "HostDB" + "vEuPathDbProject": "HostDB", + "geneModelUrl": "" }, { "chromosomes": 12, @@ -6621,7 +7172,8 @@ "strain": "HN6", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014607475.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/607/475/GCA_014607475.1/genes/GCA_014607475.1_ASM1460747v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6633,7 +7185,8 @@ "strain": "T1", "supercontigs": 1391, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805555.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/555/GCA_014805555.1/genes/GCA_014805555.1_ASM1480555v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6645,7 +7198,8 @@ "strain": "IAEA 2018", "supercontigs": 7986, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014805625.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6657,7 +7211,8 @@ "strain": "Dv6", "supercontigs": 7783, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805705.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/705/GCA_014805705.1/genes/GCA_014805705.1_ASM1480570v1.augustus.gtf.gz" }, { "chromosomes": 37, @@ -6669,7 +7224,8 @@ "strain": "strain Ty", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014843625.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/843/625/GCA_014843625.1/genes/GCA_014843625.1_ASM1484362v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6681,7 +7237,8 @@ "strain": "strain ME49xCTG F1 S27", "supercontigs": 48, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014898695.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/898/695/GCA_014898695.1/genes/GCA_014898695.1_ASM1489869v1.augustus.gtf.gz" }, { "chromosomes": 43, @@ -6693,7 +7250,8 @@ "strain": "Brazil A4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033625.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/625/GCA_015033625.1/genes/GCA_015033625.1_ASM1503362v1.augustus.gtf.gz" }, { "chromosomes": 40, @@ -6705,7 +7263,8 @@ "strain": "Y C6", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033655.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/655/GCA_015033655.1/genes/GCA_015033655.1_ASM1503365v1.augustus.gtf.gz" }, { "chromosomes": 22, @@ -6717,7 +7276,8 @@ "strain": "BN/NHsdMcwi", "supercontigs": 153, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015227675.2", - "vEuPathDbProject": "HostDB" + "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" }, { "chromosomes": 8, @@ -6729,7 +7289,8 @@ "strain": "IOWA-ATCC", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015245375.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/245/375/GCA_015245375.1/genes/GCA_015245375.1_ASM1524537v1.augustus.gtf.gz" }, { "chromosomes": 3, @@ -6741,7 +7302,8 @@ "strain": "JHB 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015732765.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -6753,7 +7315,8 @@ "strain": "Ou3-Ou53", "supercontigs": 1754, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015832245.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/832/245/GCA_015832245.1/genes/GCA_015832245.1_ASM1583224v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -6765,7 +7328,8 @@ "strain": "Liverpool 2019", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016097395.1", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -6777,7 +7341,8 @@ "strain": "Ou19", "supercontigs": 1033, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016255985.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/255/985/GCA_016255985.1/genes/GCA_016255985.1_ASM1625598v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6789,7 +7354,8 @@ "strain": "Ou54", "supercontigs": 11522, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016256075.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/256/075/GCA_016256075.1/genes/GCA_016256075.1_ASM1625607v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6801,7 +7367,8 @@ "strain": "LT1534", "supercontigs": 782, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016618375.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -6813,7 +7380,8 @@ "strain": "#326", "supercontigs": 31, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016772295.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/772/295/GCA_016772295.1/genes/GCA_016772295.1_ASM1677229v1.augustus.gtf.gz" }, { "chromosomes": 23, @@ -6825,7 +7393,8 @@ "strain": "SN15", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016801405.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/801/405/GCA_016801405.1/genes/GCA_016801405.1_ASM1680140v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6837,7 +7406,8 @@ "strain": "CPMC6", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016906325.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/906/325/GCA_016906325.1/genes/GCA_016906325.1_ASM1690632v1.augustus.gtf.gz" }, { "chromosomes": 17, @@ -6849,7 +7419,8 @@ "strain": "2A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017301755.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/301/755/GCA_017301755.1/genes/GCA_017301755.1_ASM1730175v1.augustus.gtf.gz" }, { "chromosomes": 7, @@ -6861,7 +7432,8 @@ "strain": "WU24", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310585.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/585/GCA_017310585.1/genes/GCA_017310585.1_ASM1731058v1.augustus.gtf.gz" }, { "chromosomes": 6, @@ -6873,7 +7445,8 @@ "strain": "H88", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310615.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/615/GCA_017310615.1/genes/GCA_017310615.1_ASM1731061v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6885,7 +7458,8 @@ "strain": "CS1", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017311285.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 6, @@ -6897,7 +7471,8 @@ "strain": "G186AR", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017355575.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/355/575/GCA_017355575.1/genes/GCA_017355575.1_ASM1735557v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6909,7 +7484,8 @@ "strain": "G217B", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607445.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/445/GCA_017607445.1/genes/GCA_017607445.1_ASM1760744v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6921,7 +7497,8 @@ "strain": "G184AR", "supercontigs": 11, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607465.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/465/GCA_017607465.1/genes/GCA_017607465.1_ASM1760746v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6933,7 +7510,8 @@ "strain": "BP57", "supercontigs": 9, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017655625.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/655/625/GCA_017655625.1/genes/GCA_017655625.1_BP57.augustus.gtf.gz" }, { "chromosomes": 0, @@ -6945,7 +7523,8 @@ "strain": "CanA", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017788925.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/788/925/GCA_017788925.1/genes/GCA_017788925.1_ASM1778892v1.augustus.gtf.gz" }, { "chromosomes": 36, @@ -6957,7 +7536,8 @@ "strain": "MCAV/BR/2001/CUR178", "supercontigs": 18, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017916305.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -6969,7 +7549,8 @@ "strain": "MHOM/TH/2012/LSCM1", "supercontigs": 6, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916325.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -6981,7 +7562,8 @@ "strain": "MHOM/TH/2014/LSCM4", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916335.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -6993,7 +7575,8 @@ "strain": "MHOM/GH/2012/GH5", "supercontigs": 80, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918215.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -7005,7 +7588,8 @@ "strain": "MPRO/NA/1975/252/LV425", "supercontigs": 31, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918225.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -7017,7 +7601,8 @@ "strain": "MCOE/PA/1965/C119", "supercontigs": 38, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918235.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 16, @@ -7029,7 +7614,8 @@ "strain": "P2C", "supercontigs": 3, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018127085.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7041,7 +7627,8 @@ "strain": "Swiss", "supercontigs": 32, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018342045.1", - "vEuPathDbProject": "MicrosporidiaDB" + "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" }, { "chromosomes": 0, @@ -7053,7 +7640,8 @@ "strain": "strain 1802A", "supercontigs": 79, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398725.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/725/GCA_018398725.1/genes/GCA_018398725.1_ASM1839872v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7065,7 +7653,8 @@ "strain": "CCMP2878", "supercontigs": 5963, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398765.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/765/GCA_018398765.1/genes/GCA_018398765.1_ASM1839876v1.augustus.gtf.gz" }, { "chromosomes": 8, @@ -7077,7 +7666,8 @@ "strain": "strain Silveira 2022", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/416/015/GCA_018416015.2/genes/GCA_018416015.2_ASM1841601v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7089,7 +7679,8 @@ "strain": "DS4-868", "supercontigs": 1177, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018466815.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/466/815/GCA_018466815.1/genes/GCA_018466815.1_ASM1846681v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7101,7 +7692,8 @@ "strain": "GKB4", "supercontigs": 133, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018691715.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/691/715/GCA_018691715.1/genes/GCA_018691715.1_ASM1869171v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7113,7 +7705,8 @@ "strain": "KU48", "supercontigs": 1168, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019059535.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/059/535/GCA_019059535.1/genes/GCA_019059535.1_ASM1905953v1.augustus.gtf.gz" }, { "chromosomes": 11, @@ -7125,7 +7718,8 @@ "strain": "EATRO1125", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019096175.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 8, @@ -7137,7 +7731,8 @@ "strain": "2022", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019844115.2", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/844/115/GCA_019844115.2/genes/GCA_019844115.2_ASM1984411v2.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7149,7 +7744,8 @@ "strain": "A", "supercontigs": 787, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_019968955.1", - "vEuPathDbProject": "CryptoDB" + "vEuPathDbProject": "CryptoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7161,7 +7757,8 @@ "strain": "2922-C6/04-290x", "supercontigs": 281, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020184695.1", - "vEuPathDbProject": "TrichDB" + "vEuPathDbProject": "TrichDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/184/695/GCA_020184695.1/genes/GCA_020184695.1_ASM2018469v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7173,7 +7770,8 @@ "strain": "2922-C6/04-10x", "supercontigs": 187, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020186115.1", - "vEuPathDbProject": "TrichDB" + "vEuPathDbProject": "TrichDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/186/115/GCA_020186115.1/genes/GCA_020186115.1_ASM2018611v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7185,7 +7783,8 @@ "strain": "KU50", "supercontigs": 1063, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283535.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/535/GCA_020283535.1/genes/GCA_020283535.1_ASM2028353v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7197,7 +7796,8 @@ "strain": "strain Winnie", "supercontigs": 358, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283715.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/715/GCA_020283715.1/genes/GCA_020283715.1_ASM2028371v1.augustus.gtf.gz" }, { "chromosomes": 13, @@ -7209,7 +7809,8 @@ "strain": "BG3993", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020450195.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/450/195/GCA_020450195.1/genes/GCA_020450195.1_ASM2045019v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7221,7 +7822,8 @@ "strain": "B08-376", "supercontigs": 545, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020509355.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/509/355/GCA_020509355.1/genes/GCA_020509355.1_ASM2050935v1.augustus.gtf.gz" }, { "chromosomes": 33, @@ -7233,7 +7835,8 @@ "strain": "DAOM 181602=DAOM 197198", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716725.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/725/GCA_020716725.1/genes/GCA_020716725.1_ASM2071672v1.augustus.gtf.gz" }, { "chromosomes": 33, @@ -7245,7 +7848,8 @@ "strain": "C2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716745.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/745/GCA_020716745.1/genes/GCA_020716745.1_ASM2071674v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7257,7 +7861,8 @@ "strain": "strain Pr102", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800215.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7269,7 +7874,8 @@ "strain": "14567", "supercontigs": 27, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800235.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/235/GCA_020800235.1/genes/GCA_020800235.1_ASM2080023v1.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7281,7 +7887,8 @@ "strain": "yoelii 17XNL 2023", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020844765.3", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 0, @@ -7293,7 +7900,8 @@ "strain": "C3", "supercontigs": 174, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020595.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/595/GCA_021020595.1/genes/GCA_021020595.1_ASM2102059v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7305,7 +7913,8 @@ "strain": "str. Neff 2021", "supercontigs": 111, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020605.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/605/GCA_021020605.1/genes/GCA_021020605.1_ASM2102060v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7317,7 +7926,8 @@ "strain": "MF1", "supercontigs": 7789, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021527665.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/527/665/GCA_021527665.1/genes/GCA_021527665.1_ASM2152766v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7329,7 +7939,8 @@ "strain": "JUm2507", "supercontigs": 111, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021653875.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7341,7 +7952,8 @@ "strain": "Aag2", "supercontigs": 3752, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021653915.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/653/915/GCA_021653915.1/genes/GCA_021653915.1_ASM2165391v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7353,7 +7965,8 @@ "strain": "FI-F-10", "supercontigs": 22, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021821965.1", - "vEuPathDbProject": "MicrosporidiaDB" + "vEuPathDbProject": "MicrosporidiaDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7365,7 +7978,8 @@ "strain": "St. Kilda", "supercontigs": 64, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_022059095.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -7377,7 +7991,8 @@ "strain": "CBS 124340", "supercontigs": 89, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022385695.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7389,7 +8004,8 @@ "strain": "NL_76_15_250", "supercontigs": 199, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022530875.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/530/875/GCA_022530875.1/genes/GCA_022530875.1_ASM2253087v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7401,7 +8017,8 @@ "strain": "DRCT72020", "supercontigs": 12702, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022627015.2", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/627/015/GCA_022627015.2/genes/GCA_022627015.2_ASM2262701v2.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7413,7 +8030,8 @@ "strain": "strain:VNII", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022832995.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/832/995/GCA_022832995.1/genes/GCA_022832995.1_ASM2283299v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7425,7 +8043,8 @@ "strain": "isolate CIA", "supercontigs": 93, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985015.1", - "vEuPathDbProject": "GiardiaDB" + "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" }, { "chromosomes": 0, @@ -7437,7 +8056,8 @@ "strain": "isolate DID", "supercontigs": 260, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985025.1", - "vEuPathDbProject": "GiardiaDB" + "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" }, { "chromosomes": 0, @@ -7449,7 +8069,8 @@ "strain": "qqDerAnde1.1", "supercontigs": 8198, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023375915.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 8, @@ -7461,7 +8082,8 @@ "strain": "yc1106", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023920165.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/920/165/GCA_023920165.1/genes/GCA_023920165.1_ASM2392016v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7473,7 +8095,8 @@ "strain": "SK-2019", "supercontigs": 125877, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023969395.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/969/395/GCA_023969395.1/genes/GCA_023969395.1_ASM2396939v1.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7485,7 +8108,8 @@ "strain": "strain Bolivian I", "supercontigs": 29, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023973825.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7497,7 +8121,8 @@ "strain": "CBS 100304", "supercontigs": 260, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024516155.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/516/155/GCA_024516155.1/genes/GCA_024516155.1_Pyrom1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7509,7 +8134,8 @@ "strain": "strain WA1", "supercontigs": 7, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024586265.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/586/265/GCA_024586265.1/genes/GCA_024586265.1_ASM2458626v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7521,7 +8147,8 @@ "strain": "USDA-D6B2", "supercontigs": 7, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024862765.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 34, @@ -7533,7 +8160,8 @@ "strain": "strain PH8", "supercontigs": 42, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_025688915.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/025/688/915/GCA_025688915.1/genes/GCA_025688915.1_ASM2568891v1.augustus.gtf.gz" }, { "chromosomes": 6, @@ -7545,7 +8173,8 @@ "strain": "G3 2022", "supercontigs": 212, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_026262505.1", - "vEuPathDbProject": "TrichDB" + "vEuPathDbProject": "TrichDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7557,7 +8186,8 @@ "strain": "SK_2022b", "supercontigs": 1790, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943245.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/245/GCA_027943245.1/genes/GCA_027943245.1_ASM2794324v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7569,7 +8199,8 @@ "strain": "SK_2022a", "supercontigs": 2108, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943295.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/295/GCA_027943295.1/genes/GCA_027943295.1_ASM2794329v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7581,7 +8212,8 @@ "strain": "SK_2022c", "supercontigs": 20778, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027944975.1", - "vEuPathDbProject": "AmoebaDB" + "vEuPathDbProject": "AmoebaDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/944/975/GCA_027944975.1/genes/GCA_027944975.1_ASM2794497v1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7593,7 +8225,8 @@ "strain": "P57", "supercontigs": 77, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_028554745.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/028/554/745/GCA_028554745.1/genes/GCA_028554745.1_ASM2855474v1.augustus.gtf.gz" }, { "chromosomes": 5, @@ -7605,7 +8238,8 @@ "strain": "strain WA1 2023", "supercontigs": 160, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_028658345.1", - "vEuPathDbProject": "PiroplasmaDB" + "vEuPathDbProject": "PiroplasmaDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7617,7 +8251,8 @@ "strain": "chabaudi", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002335.3", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7629,7 +8264,8 @@ "strain": "ANKA", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002375.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7641,7 +8277,8 @@ "strain": "yoelii 17X", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7653,7 +8290,8 @@ "strain": "yoelii YM", "supercontigs": 181, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900002395.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/002/395/GCA_900002395.1/genes/GCA_900002395.1_PYYM01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7665,7 +8303,8 @@ "strain": "SGS1-like", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005765.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7677,7 +8316,8 @@ "strain": "8A", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005855.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -7689,7 +8329,8 @@ "strain": "strain NRRL62905", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900029915.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7701,7 +8342,8 @@ "strain": "MRC7560", "supercontigs": 254, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900044065.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 4, @@ -7713,7 +8355,8 @@ "strain": "PH-1", "supercontigs": 1, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900044135.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/044/135/GCA_900044135.1/genes/GCA_900044135.1_GZPH1RResV1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7725,7 +8368,8 @@ "strain": "ET1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900067095.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 12, @@ -7737,7 +8381,8 @@ "strain": "IMI 58289", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900079805.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7749,7 +8394,8 @@ "strain": "wallikeri PowCR01", "supercontigs": 763, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090025.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/025/GCA_900090025.2/genes/GCA_900090025.2_PowCR01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7761,7 +8407,8 @@ "strain": "curtisi GH01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090035.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/035/GCA_900090035.2/genes/GCA_900090035.2_PocGH01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7773,7 +8420,8 @@ "strain": "UG01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900090045.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7785,7 +8433,8 @@ "strain": "P01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900093555.2", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -7797,7 +8446,8 @@ "strain": "strain G01", "supercontigs": 39, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900095595.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/095/595/GCA_900095595.1/genes/GCA_900095595.1_PPRFG01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7809,7 +8459,8 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900097015.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 14, @@ -7821,7 +8472,8 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097025.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/025/GCA_900097025.1/genes/GCA_900097025.1_PRG01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7833,7 +8485,8 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097035.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/035/GCA_900097035.1/genes/GCA_900097035.1_PBLACG01.augustus.gtf.gz" }, { "chromosomes": 14, @@ -7845,7 +8498,8 @@ "strain": "strain G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097045.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/045/GCA_900097045.1/genes/GCA_900097045.1_PGABG01.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7857,7 +8511,8 @@ "strain": "strain UTAD222", "supercontigs": 208, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900119595.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 8, @@ -7869,7 +8524,8 @@ "strain": "ATCC 42132", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900149145.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 14, @@ -7881,7 +8537,8 @@ "strain": "strain A1H1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900162085.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -7893,7 +8550,8 @@ "strain": "strain M", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900180395.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/180/395/GCA_900180395.1/genes/GCA_900180395.1_PcyM.augustus.gtf.gz" }, { "chromosomes": 21, @@ -7905,7 +8563,8 @@ "strain": "ST99CH_3D1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900184105.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7917,7 +8576,8 @@ "strain": "strain NIH4 ATCC 30207", "supercontigs": 4161, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900231805.1", - "vEuPathDbProject": "TrichDB" + "vEuPathDbProject": "TrichDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/231/805/GCA_900231805.1/genes/GCA_900231805.1_PRJEB22701.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7929,7 +8589,8 @@ "strain": "strain RACE1", "supercontigs": 99, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900237765.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7941,7 +8602,8 @@ "strain": "strain N402 (ATCC64974)", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900248155.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -7953,7 +8615,8 @@ "strain": "strain 231", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900252365.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 14, @@ -7965,7 +8628,8 @@ "strain": "G01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900257145.2", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 7, @@ -7977,7 +8641,8 @@ "strain": "strain T mat+", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900290415.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/290/415/GCA_900290415.1/genes/GCA_900290415.1_version1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -7989,7 +8654,8 @@ "strain": "UTAD17", "supercontigs": 1360, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900491785.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 44, @@ -8001,7 +8667,8 @@ "strain": "Lister strain 427 2018", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900497135.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 36, @@ -8013,7 +8680,8 @@ "strain": "JPCM5", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900500625.2", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/500/625/GCA_900500625.2/genes/GCA_900500625.2_LINF.augustus.gtf.gz" }, { "chromosomes": 12, @@ -8025,7 +8693,8 @@ "strain": "f. sp. tritici 96224", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900519115.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 14, @@ -8037,7 +8706,8 @@ "strain": "CD01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900617135.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8049,7 +8719,8 @@ "strain": "KE01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631975.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8061,7 +8732,8 @@ "strain": "HB3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631985.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8073,7 +8745,8 @@ "strain": "GN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631995.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8085,7 +8758,8 @@ "strain": "GA01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632005.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8097,7 +8771,8 @@ "strain": "KH02", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632015.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8109,7 +8784,8 @@ "strain": "KH01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632025.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8121,7 +8797,8 @@ "strain": "GB4", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632035.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8133,7 +8810,8 @@ "strain": "Dd2", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632045.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8145,7 +8823,8 @@ "strain": "IT", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632055.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8157,7 +8836,8 @@ "strain": "TG01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632065.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8169,7 +8849,8 @@ "strain": "SN01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632075.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8181,7 +8862,8 @@ "strain": "ML01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632085.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 13, @@ -8193,7 +8875,8 @@ "strain": "SD01", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632095.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 36, @@ -8205,7 +8888,8 @@ "strain": "HU3", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900635355.2", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 14, @@ -8217,7 +8901,8 @@ "strain": "vinckei CY", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "" }, { "chromosomes": 0, @@ -8229,7 +8914,8 @@ "strain": "2019", "supercontigs": 2439, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902459845.2", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/459/845/GCA_902459845.2/genes/GCA_902459845.2_HEP1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -8241,7 +8927,8 @@ "strain": "ATCC 30984", "supercontigs": 1925, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902651635.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 14, @@ -8253,7 +8940,8 @@ "strain": "brucechwatti DA", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994205.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8265,7 +8953,8 @@ "strain": "lentum DE", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994225.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8277,7 +8966,8 @@ "strain": "petteri CR 2020", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994235.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 14, @@ -8289,7 +8979,8 @@ "strain": "Cameroon EL", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994265.1", - "vEuPathDbProject": "PlasmoDB" + "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" }, { "chromosomes": 29, @@ -8301,7 +8992,8 @@ "strain": "strain Cavalho ATCC PRA-265", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903995115.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 11, @@ -8313,7 +9005,8 @@ "strain": "f. sp. triticale THUN-12", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905067625.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 15, @@ -8325,7 +9018,8 @@ "strain": "Houghton 2021", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905310635.1", - "vEuPathDbProject": "ToxoDB" + "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" }, { "chromosomes": 0, @@ -8337,7 +9031,8 @@ "strain": "PvW1", "supercontigs": 19, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_914969965.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/914/969/965/GCA_914969965.1/genes/GCA_914969965.1_5987STDY8548200.augustus.gtf.gz" }, { "chromosomes": 36, @@ -8349,7 +9044,8 @@ "strain": "Friedlin 2021", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_916722125.1", - "vEuPathDbProject": "TriTrypDB" + "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" }, { "chromosomes": 0, @@ -8361,7 +9057,8 @@ "strain": "Rahman", "supercontigs": 18523, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563895.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 13, @@ -8373,7 +9070,8 @@ "strain": "strain STIB 805", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563935.1", - "vEuPathDbProject": "TriTrypDB" + "vEuPathDbProject": "TriTrypDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/935/GCA_917563935.1/genes/GCA_917563935.1_Assembly1.augustus.gtf.gz" }, { "chromosomes": 0, @@ -8385,7 +9083,8 @@ "strain": "PAM", "supercontigs": 28, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_949152365.1", - "vEuPathDbProject": "PlasmoDB" + "vEuPathDbProject": "PlasmoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/949/152/365/GCA_949152365.1/genes/GCA_949152365.1_PVPAM.augustus.gtf.gz" }, { "chromosomes": 7, @@ -8397,7 +9096,8 @@ "strain": "AX4", "supercontigs": 33, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000004695.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -8409,7 +9109,8 @@ "strain": "RN66", "supercontigs": 84, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006515.1", - "vEuPathDbProject": "CryptoDB" + "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" }, { "chromosomes": 14, @@ -8421,7 +9122,8 @@ "strain": "ME49", "supercontigs": 2248, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz" }, { "chromosomes": 0, @@ -8433,7 +9135,8 @@ "strain": "k-hell", "supercontigs": 1212, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182805.3", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/805/GCF_000182805.3/genes/GCF_000182805.3_ASM18280v2.ncbiRefSeq.gtf.gz" }, { "chromosomes": 0, @@ -8445,7 +9148,8 @@ "strain": "QSDP1", "supercontigs": 799, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190715.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -8457,7 +9161,8 @@ "strain": "P19", "supercontigs": 5233, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000257125.1", - "vEuPathDbProject": "AmoebaDB" + "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" }, { "chromosomes": 0, @@ -8469,7 +9174,8 @@ "strain": "Pd1", "supercontigs": 53, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000315645.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 21, @@ -8481,7 +9187,8 @@ "strain": "REF", "supercontigs": 7579, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000364345.1", - "vEuPathDbProject": "HostDB" + "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" }, { "chromosomes": 0, @@ -8493,7 +9200,8 @@ "strain": "CBS 131958", "supercontigs": 131, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001299255.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/299/255/GCF_001299255.1/genes/GCF_001299255.1_ASM129925v1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 8, @@ -8505,7 +9213,8 @@ "strain": "DMKU3-1042", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001417885.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -8517,7 +9226,8 @@ "strain": "B80", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477545.1", - "vEuPathDbProject": "FungiDB" + "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" }, { "chromosomes": 0, @@ -8529,7 +9239,8 @@ "strain": "C6/36 cell line", "supercontigs": 2434, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001876365.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -8541,7 +9252,8 @@ "strain": "isolate NF1_C8", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002999335.1", - "vEuPathDbProject": "ToxoDB" + "vEuPathDbProject": "ToxoDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/002/999/335/GCF_002999335.1/genes/GCF_002999335.1_CcayRef3.ncbiRefSeq.gtf.gz" }, { "chromosomes": 0, @@ -8553,7 +9265,8 @@ "strain": "CBS 101075", "supercontigs": 86, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004022145.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/004/022/145/GCF_004022145.1/genes/GCF_004022145.1_Paevar1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 3, @@ -8565,7 +9278,8 @@ "strain": "UCISS2018", "supercontigs": 491, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013141755.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 11, @@ -8577,7 +9291,8 @@ "strain": "Rsan-2018", "supercontigs": 2316, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339695.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8589,7 +9304,8 @@ "strain": "STECLA 2020", "supercontigs": 4, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013758885.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -8601,7 +9317,8 @@ "strain": "mMyoMyo1", "supercontigs": 92, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014108235.1", - "vEuPathDbProject": "HostDB" + "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" }, { "chromosomes": 0, @@ -8613,7 +9330,8 @@ "strain": "PC9", "supercontigs": 16, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014466165.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/466/165/GCF_014466165.1/genes/GCF_014466165.1_ASM1446616v1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 41, @@ -8625,7 +9343,8 @@ "strain": "isolate bGalGal1", "supercontigs": 172, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016699485.2", - "vEuPathDbProject": "HostDB" + "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" }, { "chromosomes": 3, @@ -8637,7 +9356,8 @@ "strain": "MOPTI", "supercontigs": 196, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920705.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/705/GCF_016920705.1/genes/GCF_016920705.1_AcolMOP1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 3, @@ -8649,7 +9369,8 @@ "strain": "DONGOLA 2021", "supercontigs": 98, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920715.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/715/GCF_016920715.1/genes/GCF_016920715.1_AaraD3.ncbiRefSeq.gtf.gz" }, { "chromosomes": 0, @@ -8661,7 +9382,8 @@ "strain": "PalLabHiFi", "supercontigs": 648, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920785.2", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/785/GCF_016920785.2/genes/GCF_016920785.2_ASM1692078v2.ncbiRefSeq.gtf.gz" }, { "chromosomes": 5, @@ -8673,7 +9395,8 @@ "strain": "MAF 2021", "supercontigs": 1322, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017562075.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -8685,7 +9408,8 @@ "strain": "FSSC 5 MPI-SDFR-AT-0091", "supercontigs": 74, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_020744495.1", - "vEuPathDbProject": "FungiDB" + "vEuPathDbProject": "FungiDB", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/020/744/495/GCF_020744495.1/genes/GCF_020744495.1_Fusso1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 0, @@ -8697,7 +9421,8 @@ "strain": "qqDerAnde1.2", "supercontigs": 3118, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023375885.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 4, @@ -8709,7 +9434,8 @@ "strain": "M1", "supercontigs": 0, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024334085.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/334/085/GCF_024334085.1/genes/GCF_024334085.1_ASM2433408v1.ncbiRefSeq.gtf.gz" }, { "chromosomes": 5, @@ -8721,7 +9447,8 @@ "strain": "M1", "supercontigs": 640, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024763615.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -8733,7 +9460,8 @@ "strain": "aabys 2023", "supercontigs": 339, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_030504385.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8745,7 +9473,8 @@ "strain": "AcruBR1", "supercontigs": 5085, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734635.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8757,7 +9486,8 @@ "strain": "ScyaPA1", "supercontigs": 5, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734655.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 4, @@ -8769,7 +9499,8 @@ "strain": "AaquGF1", "supercontigs": 86, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734665.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8781,7 +9512,8 @@ "strain": "AcolN3", "supercontigs": 125, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734685.1", - "vEuPathDbProject": "VectorBase" + "vEuPathDbProject": "VectorBase", + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/685/GCF_943734685.1/genes/GCF_943734685.1_AcolN3.ncbiRefSeq.gtf.gz" }, { "chromosomes": 3, @@ -8793,7 +9525,8 @@ "strain": "AmacGA1", "supercontigs": 167, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734695.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8805,7 +9538,8 @@ "strain": "AcouGA1", "supercontigs": 416, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734705.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8817,7 +9551,8 @@ "strain": "AmarGA1", "supercontigs": 285, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734725.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8829,7 +9564,8 @@ "strain": "Ifakara", "supercontigs": 187, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8841,7 +9577,8 @@ "strain": "AdarGF1", "supercontigs": 62, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734745.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8853,7 +9590,8 @@ "strain": "AmouCM1", "supercontigs": 342, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734755.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8865,7 +9603,8 @@ "strain": "AzieGA1", "supercontigs": 416, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734765.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8877,7 +9616,8 @@ "strain": "AfunGA1", "supercontigs": 326, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734845.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8889,7 +9629,8 @@ "strain": "AbelBR1", "supercontigs": 2982, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943735745.2", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 3, @@ -8901,7 +9642,8 @@ "strain": "AnilCM1", "supercontigs": 153, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943737925.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 0, @@ -8913,7 +9655,8 @@ "strain": "India", "supercontigs": 64, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947086385.1", - "vEuPathDbProject": "VectorBase" + "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" }, { "chromosomes": 18, @@ -8925,6 +9668,7 @@ "strain": "XG47", "supercontigs": 25, "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947242115.1", - "vEuPathDbProject": "VectorBase" + "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" } ] diff --git a/files/source/genomes.tsv b/files/source/genomes.tsv index 186fa0a..3796fa0 100644 --- a/files/source/genomes.tsv +++ b/files/source/genomes.tsv @@ -1,745 +1,745 @@ -Organism Genome Source Genome Version/Assembly ID Is Reference Strain Contigs Supercontigs Chromosomes Species Strain VEuPathDB Project taxId asmId genBank refSeq identical sciName comName ucscBrowser -Edhazardia aedis USNM 41457 GenBank GCA_000230595.3 yes 1429 0 0 Edhazardia aedis USNM 41457 MicrosporidiaDB 1003232 GCA_000230595.3_Edha_aedis_V4b GCA_000230595.3 False Edhazardia aedis USNM 41457 microsporidians E.aedis (USNM 41457 2015) https://genome.ucsc.edu/h/GCA_000230595.3 -Kluyveromyces marxianus DMKU3-1042 INSDC GCF_001417885.1 yes 0 0 8 Kluyveromyces marxianus DMKU3-1042 FungiDB 1003335 GCF_001417885.1_Kmar_1.0 GCA_001417885.1 GCF_001417885.1 True Kluyveromyces marxianus DMKU3-1042 budding yeast K.marxianus (DMKU3-1042 2014 refseq) https://genome.ucsc.edu/h/GCF_001417885.1 -Aspergillus luchuensis IFO 4308 GenBank GCA_000239835.2 no 1016 146 0 Aspergillus luchuensis IFO 4308 FungiDB 1033177 GCA_000239835.2_Akaw_assembly01 GCA_000239835.2 False Aspergillus luchuensis IFO 4308 ascomycetes A.luchuensis IFO 4308 (IFO4308 2011) https://genome.ucsc.edu/h/GCA_000239835.2 -Epichloe glyceriae E277 INSDC GCA_000225285.2 yes 3076 0 0 Epichloe glyceriae E277 FungiDB 1035635 GCA_000225285.2_EpiGly_1.0 GCA_000225285.2 False Epichloe glyceriae E277 ascomycetes E.glyceriae (E277 2011) https://genome.ucsc.edu/h/GCA_000225285.2 -Aspergillus versicolor CBS 583.65 GenBank GCA_001890125.1 yes 0 51 0 Aspergillus versicolor CBS 583.65 FungiDB 1036611 GCF_001890125.1_Aspve1 GCA_001890125.1 GCF_001890125.1 True Aspergillus versicolor CBS 583.65 ascomycetes A.versicolor CBS 583.65 https://genome.ucsc.edu/h/GCF_001890125.1 -Aspergillus sydowii CBS 593.65 GenBank GCA_001890705.1 yes 0 97 0 Aspergillus sydowii CBS 593.65 FungiDB 1036612 GCF_001890705.1_Aspsy1 GCA_001890705.1 GCF_001890705.1 True Aspergillus sydowii CBS 593.65 ascomycetes A.sydowii CBS 593.65 https://genome.ucsc.edu/h/GCF_001890705.1 -Nosema apis BRL 01 INSDC GCA_000447185.1 yes 0 554 0 Nosema apis BRL 01 MicrosporidiaDB 1037528 GCA_000447185.1_NapisBRLv01 GCA_000447185.1 False Vairimorpha apis BRL 01 microsporidians V.apis (BRL 01 2013) https://genome.ucsc.edu/h/GCA_000447185.1 -Trypanosoma vivax Y486 GenBank GCA_000227375.1 yes 8279 0 11 Trypanosoma vivax Y486 TriTrypDB 1055687 GCA_000227375.1_ASM22737v1 GCA_000227375.1 False Trypanosoma vivax Y486 Trypanosoma vivax (Y486 2011) https://genome.ucsc.edu/h/GCA_000227375.1 -Trypanosoma congolense IL3000 GenBank GCA_000227395.2 yes 2828 0 11 Trypanosoma congolense IL3000 TriTrypDB 1068625 GCA_000227395.2_ASM22739v2 GCA_000227395.2 False Trypanosoma congolense IL3000 Trypanosoma congolense (IL3000 2011) https://genome.ucsc.edu/h/GCA_000227395.2 -Pneumocystis murina B123 INSDC GCA_000349005.2 yes 0 20 0 Pneumocystis murina B123 FungiDB 1069680 GCF_000349005.2_Pneumo_murina_B123_V4 GCA_000349005.2 GCF_000349005.2 True Pneumocystis murina B123 ascomycetes P.murina B123 https://genome.ucsc.edu/h/GCF_000349005.2 -Aspergillus wentii DTO 134E9 GenBank GCA_001890725.1 yes 0 27 0 Aspergillus wentii DTO 134E9 FungiDB 1073089 GCF_001890725.1_Aspwe1 GCA_001890725.1 GCF_001890725.1 True Aspergillus wentii DTO 134E9 ascomycetes A.wentii DTO 134E9 https://genome.ucsc.edu/h/GCF_001890725.1 -Penicilliopsis zonata CBS 506.65 GenBank GCA_001890105.1 yes 0 246 0 Penicilliopsis zonata CBS 506.65 FungiDB 1073090 GCF_001890105.1_Aspzo1 GCA_001890105.1 GCF_001890105.1 True Penicilliopsis zonata CBS 506.65 ascomycetes P.zonata CBS 506.65 https://genome.ucsc.edu/h/GCF_001890105.1 -Toxoplasma gondii ARI GenBank GCA_000250965.2 no 0 2723 0 Toxoplasma gondii ARI ToxoDB 1074872 GCA_000250965.2_TGARI_v2 GCA_000250965.2 False Toxoplasma gondii ARI apicomplexans T.gondii (ARI 2016) https://genome.ucsc.edu/h/GCA_000250965.2 -Toxoplasma gondii COUG GenBank GCA_000338675.2 no 4075 105 0 Toxoplasma gondii COUG ToxoDB 1074873 GCA_000338675.2_TGCOUG_v2 GCA_000338675.2 False Toxoplasma gondii COUG apicomplexans T.gondii (COUG 2017) https://genome.ucsc.edu/h/GCA_000338675.2 -Entamoeba nuttalli P19 GenBank GCF_000257125.1 yes 0 5233 0 Entamoeba nuttalli P19 AmoebaDB 1076696 GCA_000257125.1_ENU1_v1 GCA_000257125.1 GCF_000257125.1 True Entamoeba nuttalli P19 E.nuttalli (P19 2012) https://genome.ucsc.edu/h/GCA_000257125.1 -Pyronema omphalodes CBS 100304 INSDC GCA_024516155.1 yes 0 260 0 Pyronema omphalodes CBS 100304 FungiDB 337075 GCA_024516155.1_Pyrom1 GCA_024516155.1 False Pyronema omphalodes ascomycetes P.omphalodes (CBS 144459 2022) https://genome.ucsc.edu/h/GCA_024516155.1 -Fusarium odoratissimum NRRL 54006 GenBank GCA_000260195.2 no 0 418 0 Fusarium odoratissimum NRRL 54006 FungiDB 1089451 GCF_000260195.1_FO_II5_V1 GCA_000260195.2 GCF_000260195.1 True Fusarium odoratissimum NRRL 54006 ascomycetes F.odoratissimum NRRL 54006 https://genome.ucsc.edu/h/GCF_000260195.1 -Fusarium oxysporum f. sp. melonis 26406 GenBank GCA_000260495.2 no 0 1146 0 Fusarium oxysporum f. sp. melonis 26406 FungiDB 1089452 GCA_000260495.2_FO_melonis_V1 GCA_000260495.2 False Fusarium oxysporum f. sp. melonis 26406 ascomycetes F.oxysporum f. sp. melonis (26406 2014) https://genome.ucsc.edu/h/GCA_000260495.2 -Phytophthora sojae strain P6497 GenBank GCA_000149755.2 yes 0 82 0 Phytophthora sojae strain P6497 FungiDB 67593 GCF_000149755.1_P.sojae_V3.0 GCA_000149755.2 GCF_000149755.1 True Phytophthora sojae downy mildews (P6497 2011) https://genome.ucsc.edu/h/GCF_000149755.1 -Taphrina deformans PYCC 5710 INSDC GCA_000312925.2 yes 0 394 0 Taphrina deformans PYCC 5710 FungiDB 1097556 GCA_000312925.2_ASM31292v2 GCA_000312925.2 False Taphrina deformans PYCC 5710 peach leaf curl fungus (PYCC 5710 2013) https://genome.ucsc.edu/h/GCA_000312925.2 -Claviceps purpurea 20.1 INSDC GCA_000347355.1 yes 0 191 0 Claviceps purpurea 20.1 FungiDB 1111077 GCA_000347355.1_ASM34735v1 GCA_000347355.1 False Claviceps purpurea 20.1 ergot fungus (20.1 2012) https://genome.ucsc.edu/h/GCA_000347355.1 -Plasmodium cynomolgi strain B GenBank GCA_000321355.1 no 0 1649 14 Plasmodium cynomolgi strain B PlasmoDB 1120755 GCF_000321355.1_PcynB_1.0 GCA_000321355.1 GCF_000321355.1 True Plasmodium cynomolgi strain B apicomplexans P.cynomolgi strain (B 2012) https://genome.ucsc.edu/h/GCF_000321355.1 -Macrophomina phaseolina MS6 INSDC GCA_000302655.1 yes 0 1506 0 Macrophomina phaseolina MS6 FungiDB 1126212 GCA_000302655.1_MphMS6_1.0 GCA_000302655.1 False Macrophomina phaseolina MS6 charcoal rot (MS6 2012) https://genome.ucsc.edu/h/GCA_000302655.1 -Toxoplasma gondii GAB2-2007-GAL-DOM2 GenBank GCA_000325525.2 no 0 2481 0 Toxoplasma gondii GAB2-2007-GAL-DOM2 ToxoDB 1130820 GCA_000325525.2_TGGABGALDOM2_v2.1 GCA_000325525.2 False Toxoplasma gondii GAB2-2007-GAL-DOM2 apicomplexans T.gondii (GAB2-2007-GAL-DOM2 2014) https://genome.ucsc.edu/h/GCA_000325525.2 -Toxoplasma gondii TgCatPRC2 GenBank GCA_000256725.2 no 0 3060 0 Toxoplasma gondii TgCatPRC2 ToxoDB 1130821 GCA_000256725.2_TGCATPRC2_v2 GCA_000256725.2 False Toxoplasma gondii TgCatPRC2 apicomplexans T.gondii (TgCatPRC2 2016) https://genome.ucsc.edu/h/GCA_000256725.2 -Babesia microti strain RI GenBank GCA_000691945.2 yes 0 0 4 Babesia microti strain RI PiroplasmaDB 1133968 GCF_000691945.2_ASM69194v2 GCA_000691945.2 GCF_000691945.2 False Babesia microti strain RI apicomplexans B.microti strain (RI 2015) https://genome.ucsc.edu/h/GCF_000691945.2 -Pleurotus ostreatus PC15 INSDC GCA_000697685.1 yes 0 12 0 Pleurotus ostreatus PC15 FungiDB 1137138 GCA_000697685.1_PleosPC15_2 GCA_000697685.1 False Pleurotus ostreatus PC15 oyster mushroom (PC15 2014) https://genome.ucsc.edu/h/GCA_000697685.1 -Pleurotus ostreatus PC9 INSDC GCF_014466165.1 no 0 16 0 Pleurotus ostreatus PC9 FungiDB 5322 GCF_014466165.1_ASM1446616v1 GCA_014466165.1 GCF_014466165.1 False Pleurotus ostreatus oyster mushroom https://genome.ucsc.edu/h/GCF_014466165.1 -Aspergillus luchuensis CBS 106.47 GenBank GCA_001890685.1 yes 0 100 0 Aspergillus luchuensis CBS 106.47 FungiDB 1137211 GCA_001890685.1_Aspfo1 GCA_001890685.1 False Aspergillus luchuensis CBS 106.47 ascomycetes A.luchuensis (CBS 106.47 2016) https://genome.ucsc.edu/h/GCA_001890685.1 -Anncaliia algerae Undeen GenBank GCA_000313815.1 no 8427 0 0 Anncaliia algerae Undeen MicrosporidiaDB 723287 GCA_000313815.1_ASM31381v1 GCA_000313815.1 False Anncaliia algerae microsporidians A.algerae (Undeen 2012) https://genome.ucsc.edu/h/GCA_000313815.1 -Saprolegnia diclina VS20 GenBank GCA_000281045.1 yes 0 390 0 Saprolegnia diclina VS20 FungiDB 1156394 GCF_000281045.1_Sap_diclina_VS20_V1 GCA_000281045.1 GCF_000281045.1 True Saprolegnia diclina VS20 oomycetes (VS20 2013) https://genome.ucsc.edu/h/GCF_000281045.1 -Hortaea werneckii EXF-2000 INSDC GCA_002127715.1 yes 0 628 0 Hortaea werneckii EXF-2000 FungiDB 1157616 GCA_002127715.1_HwerPB1 GCA_002127715.1 False Hortaea werneckii EXF-2000 ascomycetes H.werneckii (EXF-2000 2017) https://genome.ucsc.edu/h/GCA_002127715.1 -Aspergillus glaucus CBS 516.65 GenBank GCA_001890805.1 yes 0 82 0 Aspergillus glaucus CBS 516.65 FungiDB 1160497 GCF_001890805.1_Aspgl1 GCA_001890805.1 GCF_001890805.1 True Aspergillus glaucus CBS 516.65 ascomycetes A.glaucus CBS 516.65 https://genome.ucsc.edu/h/GCF_001890805.1 -Chromera velia CCMP2878 GenBank GCA_018398765.1 yes 0 5963 0 Chromera velia CCMP2878 CryptoDB 1169474 GCA_018398765.1_ASM1839876v1 GCA_018398765.1 False Chromera velia CCMP2878 C.velia (CCMP2878 2021) https://genome.ucsc.edu/h/GCA_018398765.1 -Vitrella brassicaformis CCMP3155 GenBank GCA_001179505.1 yes 0 1064 0 Vitrella brassicaformis CCMP3155 CryptoDB 1169540 GCA_001179505.1_Vbrassicaformis GCA_001179505.1 False Vitrella brassicaformis CCMP3155 V.brassicaformis CCMP3155 (2015) https://genome.ucsc.edu/h/GCA_001179505.1 -Penicillium digitatum Pd1 INSDC GCF_000315645.1 yes 0 53 0 Penicillium digitatum Pd1 FungiDB 1170230 GCF_000315645.1_PdigPd1_v1 GCA_000315645.2 GCF_000315645.1 False Penicillium digitatum Pd1 ascomycetes P.digitatum (Pd1 2012 refseq) https://genome.ucsc.edu/h/GCF_000315645.1 -Encephalitozoon romaleae SJ-2008 GenBank GCA_000280035.2 yes 0 0 13 Encephalitozoon romaleae SJ-2008 MicrosporidiaDB 1178016 GCF_000280035.1_ASM28003v2 GCA_000280035.2 GCF_000280035.1 True Encephalitozoon romaleae SJ-2008 microsporidians E.romaleae SJ-2008 https://genome.ucsc.edu/h/GCF_000280035.1 -Cladophialophora psammophila CBS 110553 INSDC GCA_000585535.1 yes 0 123 0 Cladophialophora psammophila CBS 110553 FungiDB 1182543 GCF_000585535.1_Clad_psam_CBS_110553_V1 GCA_000585535.1 GCF_000585535.1 True Cladophialophora psammophila CBS 110553 ascomycetes C.psammophila CBS 110553 https://genome.ucsc.edu/h/GCF_000585535.1 -Cladophialophora yegresii CBS 114405 INSDC GCA_000585515.1 yes 0 8 0 Cladophialophora yegresii CBS 114405 FungiDB 1182544 GCF_000585515.1_Clad_yegr_CBS_114405_V1 GCA_000585515.1 GCF_000585515.1 True Cladophialophora yegresii CBS 114405 ascomycetes C.yegresii CBS 114405 https://genome.ucsc.edu/h/GCF_000585515.1 -Exophiala aquamarina CBS 119918 INSDC GCA_000709125.1 yes 0 151 0 Exophiala aquamarina CBS 119918 FungiDB 1182545 GCF_000709125.1_Exop_aqua_CBS_119918_V1 GCA_000709125.1 GCF_000709125.1 True Exophiala aquamarina CBS 119918 ascomycetes E.aquamarina CBS 119918 https://genome.ucsc.edu/h/GCF_000709125.1 -Trichosporon asahii var. asahii CBS 2479 INSDC GCA_000293215.1 yes 0 77 0 Trichosporon asahii var. asahii CBS 2479 FungiDB 1186058 GCF_000293215.1_Trichosporon_asahii_1 GCA_000293215.1 GCF_000293215.1 True Trichosporon asahii var. asahii CBS 2479 basidiomycetes T.asahii var. asahii CBS 2479 https://genome.ucsc.edu/h/GCF_000293215.1 -Toxoplasma gondii CtCo5 GenBank GCA_000278365.1 no 6177 0 0 Toxoplasma gondii CtCo5 ToxoDB 1194599 GCA_000278365.1_ASM27836v1 GCA_000278365.1 False Toxoplasma gondii CtCo5 apicomplexans T.gondii (CtCo5 2012) https://genome.ucsc.edu/h/GCA_000278365.1 -Verticillium dahliae JR2 INSDC GCA_000400815.2 yes 0 0 8 Verticillium dahliae JR2 FungiDB 1202531 GCA_000400815.2_VDAG_JR2v.4.0 GCA_000400815.2 False Verticillium dahliae JR2 ascomycetes V.dahliae (JR2 2014) https://genome.ucsc.edu/h/GCA_000400815.2 -Leishmania aethiopica L147 GenBank GCA_000444285.2 yes 0 124 36 Leishmania aethiopica L147 TriTrypDB 1206056 GCA_000444285.2_Leishmania_aethiopica-L147-2.0.3 GCA_000444285.2 False Leishmania aethiopica L147 Leishmania aethiopica (L147 2016) https://genome.ucsc.edu/h/GCA_000444285.2 -Leishmania tropica L590 GenBank GCA_000410715.1 yes 0 124 36 Leishmania tropica L590 TriTrypDB 1206058 GCA_000410715.1_Leishmania_tropica_L590-2.0.2 GCA_000410715.1 False Leishmania tropica L590 Leishmania tropica (L590 2013) https://genome.ucsc.edu/h/GCA_000410715.1 -Trypanosoma cruzi Tula cl2 GenBank GCA_000365225.1 no 43931 1780 0 Trypanosoma cruzi Tula cl2 TriTrypDB 1206070 GCA_000365225.1_Trypanosoma_cruzi_Tula_cl2-1.0.1 GCA_000365225.1 False Trypanosoma cruzi Tula cl2 Trypanosoma cruzi (Tula cl2 2013) https://genome.ucsc.edu/h/GCA_000365225.1 -Toxoplasma gondii RH-88 INSDC GCA_013099955.1 no 0 183 13 Toxoplasma gondii RH-88 ToxoDB 5811 GCA_013099955.1_tgrh88 GCA_013099955.1 False Toxoplasma gondii apicomplexans T.gondii (RH-88 2020) https://genome.ucsc.edu/h/GCA_013099955.1 -Pneumocystis jirovecii SE8 GenBank GCA_000333975.2 yes 0 328 0 Pneumocystis jirovecii SE8 FungiDB 42068 GCA_000333975.2_ASM33397v2 GCA_000333975.2 False Pneumocystis jirovecii ascomycetes P.jirovecii (SE8 2012) https://genome.ucsc.edu/h/GCA_000333975.2 -Cyphellophora europaea CBS 101466 GenBank GCA_000365145.2 yes 0 19 0 Cyphellophora europaea CBS 101466 FungiDB 1220924 GCF_000365145.1_Phia_euro_CBS_101466_V1 GCA_000365145.2 GCF_000365145.1 True Cyphellophora europaea CBS 101466 ascomycetes C.europaea CBS 101466 https://genome.ucsc.edu/h/GCF_000365145.1 -Mucor circinelloides 1006PhL GenBank GCA_000401635.1 yes 0 470 0 Mucor circinelloides 1006PhL FungiDB 1220926 GCA_000401635.1_Muco_sp_1006Ph_V1 GCA_000401635.1 False Mucor circinelloides 1006PhL fungi M.circinelloides (1006PhL 2013) https://genome.ucsc.edu/h/GCA_000401635.1 -Pythium aphanidermatum DAOM BR444 GenBank GCA_000387445.2 yes 0 1774 0 Pythium aphanidermatum DAOM BR444 FungiDB 1223555 GCA_000387445.2_pag1_scaffolds_v1 GCA_000387445.2 False Pythium aphanidermatum DAOM BR444 oomycetes (DAOM BR444 2013) https://genome.ucsc.edu/h/GCA_000387445.2 -Pythium arrhenomanes ATCC 12531 GenBank GCA_000387505.2 yes 0 10972 0 Pythium arrhenomanes ATCC 12531 FungiDB 1223556 GCA_000387505.2_par_scaffolds_v1 GCA_000387505.2 False Pythium arrhenomanes ATCC 12531 oomycetes (ATCC 12531 2013) https://genome.ucsc.edu/h/GCA_000387505.2 -Globisporangium irregulare DAOM BR486 GenBank GCA_000387425.2 yes 0 5887 0 Globisporangium irregulare DAOM BR486 FungiDB 1223557 GCA_000387425.2_pir_scaffolds_v1 GCA_000387425.2 False Globisporangium irregulare DAOM BR486 oomycetes (DAOM BR486 2013) https://genome.ucsc.edu/h/GCA_000387425.2 -Globisporangium iwayamae DAOM BR242034 GenBank GCA_000387465.2 yes 0 11542 0 Globisporangium iwayamae DAOM BR242034 FungiDB 1223558 GCA_000387465.2_piw_scaffolds_v1 GCA_000387465.2 False Globisporangium iwayamae DAOM BR242034 oomycetes (DAOM BR242034 2013) https://genome.ucsc.edu/h/GCA_000387465.2 -Globisporangium ultimum var. sporangiiferum BR650 GenBank GCA_000387525.2 no 0 5482 0 Globisporangium ultimum var. sporangiiferum BR650 FungiDB 1223559 GCA_000387525.2_pug3_scaffolds_v1 GCA_000387525.2 False Globisporangium ultimum var. sporangiiferum BR650 oomycetes (DAOM BR650 2013) https://genome.ucsc.edu/h/GCA_000387525.2 -Phytopythium vexans DAOM BR484 GenBank GCA_000387545.2 yes 0 3685 0 Phytopythium vexans DAOM BR484 FungiDB 1223560 GCA_000387545.2_pve_scaffolds_v1 GCA_000387545.2 False Phytopythium vexans DAOM BR484 oomycetes (DAOM BR484 2013) https://genome.ucsc.edu/h/GCA_000387545.2 -Fusarium proliferatum ET1 GenBank GCA_900067095.1 yes 32 0 0 Fusarium proliferatum ET1 FungiDB 1227346 GCF_900067095.1_F._proliferatum_ET1_version_1 GCA_900067095.1 GCF_900067095.1 True Fusarium proliferatum ET1 ascomycetes F.proliferatum ET1 https://genome.ucsc.edu/h/GCF_900067095.1 -Fusarium oxysporum f. sp. cubense race 1 GenBank GCA_000350345.1 no 0 1341 0 Fusarium oxysporum f. sp. cubense race 1 FungiDB 1229664 GCA_000350345.1_Foc1_1.0 GCA_000350345.1 False Fusarium oxysporum f. sp. cubense race 1 ascomycetes F.oxysporum f. sp. cubense (race 1 2013) https://genome.ucsc.edu/h/GCA_000350345.1 -Malassezia sympodialis ATCC 42132 INSDC GCA_900149145.1 yes 0 0 8 Malassezia sympodialis ATCC 42132 FungiDB 1230383 GCA_900149145.1_Msy_ATCC_42132_Feb2016 GCA_900149145.1 False Malassezia sympodialis ATCC 42132 basidiomycetes M.sympodialis (ATCC 42132 2017) https://genome.ucsc.edu/h/GCA_900149145.1 -Plasmodium inui San Antonio 1 GenBank GCA_000524495.1 yes 0 323 0 Plasmodium inui San Antonio 1 PlasmoDB 1237626 GCF_000524495.1_Plas_inui_San_Antonio_1_V1 GCA_000524495.1 GCF_000524495.1 True Plasmodium inui San Antonio 1 apicomplexans P.inui (San Antonio 1 2014) https://genome.ucsc.edu/h/GCF_000524495.1 -Anncaliia algerae PRA109 GenBank GCA_000385855.2 yes 0 7113 0 Anncaliia algerae PRA109 MicrosporidiaDB 1240240 GCA_000385855.2_Annc_alge_PRA109_V4 GCA_000385855.2 False Anncaliia algerae PRA109 microsporidians A.algerae (PRA109 2014) https://genome.ucsc.edu/h/GCA_000385855.2 -Emmonsia crescens UAMH 3008 INSDC GCA_001008285.1 yes 0 1734 0 Emmonsia crescens UAMH 3008 FungiDB 1247875 GCA_001008285.1_ASM100828v1 GCA_001008285.1 False Emmonsia crescens UAMH 3008 ascomycetes E.crescens (UAMH 3008 2015) https://genome.ucsc.edu/h/GCA_001008285.1 -Acanthamoeba castellanii str. Neff GenBank GCA_000313135.1 yes 0 384 0 Acanthamoeba castellanii str. Neff AmoebaDB 1257118 GCF_000313135.1_Acastellanii.strNEFF_v1 GCA_000313135.1 GCF_000313135.1 True Acanthamoeba castellanii str. Neff A.castellanii str. (Neff 2013) https://genome.ucsc.edu/h/GCF_000313135.1 -Ophiostoma piceae UAMH 11346 INSDC GCA_000410735.1 yes 0 45 0 Ophiostoma piceae UAMH 11346 FungiDB 1262450 GCA_000410735.1_Opiceae_UAMHv01 GCA_000410735.1 False Ophiostoma piceae UAMH 11346 ascomycetes O.piceae (UAMH 11346 2013) https://genome.ucsc.edu/h/GCA_000410735.1 -Lichtheimia corymbifera JMRC:FSU:9682 INSDC GCA_000723665.1 yes 0 209 0 Lichtheimia corymbifera JMRC:FSU:9682 FungiDB 1263082 GCA_000723665.1_454Minimus GCA_000723665.1 False Lichtheimia corymbifera JMRC:FSU:9682 mucoromycotan L.corymbifera JMRC:FSU:9682 (FSU 9682 2014) https://genome.ucsc.edu/h/GCA_000723665.1 -Plasmodium vivax Sal-1 GenBank GCA_000002415.2 no 2733 0 14 Plasmodium vivax Sal-1 PlasmoDB 5855 GCF_000002415.2_ASM241v2 GCA_000002415.2 GCF_000002415.2 False Plasmodium vivax malaria parasite P. vivax (Salvador I 2009) https://genome.ucsc.edu/h/GCF_000002415.2 -Blumeria graminis f. sp. tritici 96224 INSDC GCA_900519115.1 yes 0 0 12 Blumeria graminis f. sp. tritici 96224 FungiDB 62690 GCA_900519115.1_Bgt_genome_v3.16 GCA_900519115.1 False Blumeria graminis f. sp. tritici grass mildew (2019) https://genome.ucsc.edu/h/GCA_900519115.1 -Plasmodium cynomolgi strain M GenBank GCA_900180395.1 yes 40 0 14 Plasmodium cynomolgi strain M PlasmoDB 5827 GCA_900180395.1_PcyM GCA_900180395.1 False Plasmodium cynomolgi apicomplexans P.cynomolgi (M 2017) https://genome.ucsc.edu/h/GCA_900180395.1 -Metarhizium anisopliae ARSEF 549 INSDC GCA_000814975.1 yes 0 74 0 Metarhizium anisopliae ARSEF 549 FungiDB 1276135 GCA_000814975.1_MAN_1.0 GCA_000814975.1 False Metarhizium anisopliae ARSEF 549 ascomycetes M.anisopliae (ARSEF 549 2015) https://genome.ucsc.edu/h/GCA_000814975.1 -Zymoseptoria tritici ST99CH_3D1 INSDC GCA_900184105.1 no 0 0 21 Zymoseptoria tritici ST99CH_3D1 FungiDB 1276537 GCA_900184105.1_ST99CH_3D1 GCA_900184105.1 False Zymoseptoria tritici ST99CH_3D1 ascomycetes Z.tritici ST99CH_3D1 (2017) https://genome.ucsc.edu/h/GCA_900184105.1 -Cladophialophora carrionii CBS 160.54 INSDC GCA_000365165.2 no 0 19 0 Cladophialophora carrionii CBS 160.54 FungiDB 1279043 GCF_000365165.1_Clad_carr_CBS_160_54_V1 GCA_000365165.2 GCF_000365165.1 True Cladophialophora carrionii CBS 160.54 ascomycetes C.carrionii CBS 160.54 https://genome.ucsc.edu/h/GCF_000365165.1 -Fusarium fujikuroi IMI 58289 GenBank GCA_900079805.1 yes 0 0 12 Fusarium fujikuroi IMI 58289 FungiDB 1279085 GCF_900079805.1_Fusarium_fujikuroi_IMI58289_V2 GCA_900079805.1 GCF_900079805.1 True Fusarium fujikuroi IMI 58289 ascomycetes F.fujikuroi IMI 58289 https://genome.ucsc.edu/h/GCF_900079805.1 -Stachybotrys chartarum IBT 40293 INSDC GCA_000732565.1 yes 0 2342 0 Stachybotrys chartarum IBT 40293 FungiDB 1280524 GCA_000732565.1_S40293v1 GCA_000732565.1 False Stachybotrys chartarum IBT 40293 ascomycetes S.chartarum (IBT 40293 2014) https://genome.ucsc.edu/h/GCA_000732565.1 -Anncaliia algerae PRA339 GenBank GCA_000385875.2 no 0 431 0 Anncaliia algerae PRA339 MicrosporidiaDB 1288291 GCA_000385875.2_Annc_alge_insect_USDA_JJB_V2 GCA_000385875.2 False Anncaliia algerae PRA339 microsporidians A.algerae (PRA339 2014) https://genome.ucsc.edu/h/GCA_000385875.2 -Leishmania panamensis MHOM/COL/81/L13 GenBank GCA_000340495.1 yes 0 820 36 Leishmania panamensis MHOM/COL/81/L13 TriTrypDB 1295824 GCA_000340495.1_Leishmania_panamensis_L13-1.3.1 GCA_000340495.1 False Leishmania panamensis MHOM/COL/81/L13 Leishmania panamensis (MHOM/COL/81/L13 2013) https://genome.ucsc.edu/h/GCA_000340495.1 -Leishmania braziliensis MHOM/BR/75/M2903 GenBank GCA_000340355.2 no 0 709 35 Leishmania braziliensis MHOM/BR/75/M2903 TriTrypDB 1295825 GCA_000340355.2_Leishmania_braziliensis_M2903-1.0.6 GCA_000340355.2 False Leishmania braziliensis MHOM/BR/75/M2903 Leishmania braziliensis (MHOM/BR/75/M2903 2016 kinetoplastids) https://genome.ucsc.edu/h/GCA_000340355.2 -Cryptococcus gattii EJB2 GenBank GCA_000835745.1 no 0 282 0 Cryptococcus gattii VGI EJB2 FungiDB 1296103 GCA_000835745.1_Cryp_gatt_EJB2_V1 GCA_000835745.1 False Cryptococcus gattii EJB2 basidiomycetes C.gattii (EJB2 2015) https://genome.ucsc.edu/h/GCA_000835745.1 -Cryptococcus gattii NT-10 GenBank GCA_000935105.1 no 0 226 0 Cryptococcus gattii VGI NT10 FungiDB 1296108 GCA_000935105.1_Cryp_gatt_NT-10_V1 GCA_000935105.1 False Cryptococcus gattii NT-10 basidiomycetes C.gattii (NT-10 2015) https://genome.ucsc.edu/h/GCA_000935105.1 -Cryptococcus gattii CA1873 GenBank GCA_000855695.1 no 0 33 0 Cryptococcus gattii VGIII CA1873 FungiDB 1296111 GCA_000855695.1_Cryp_gatt_CA1873_V1 GCA_000855695.1 False Cryptococcus bacillisporus CA1873 basidiomycetes C.bacillisporus (CA1873 2015) https://genome.ucsc.edu/h/GCA_000855695.1 -Kwoniella heveanensis CBS 569 GenBank GCA_000507425.3 yes 0 242 0 Kwoniella heveanensis CBS 569 FungiDB 1296119 GCA_000507425.3_Cryp_heve_CBS569_V2 GCA_000507425.3 False Kwoniella heveanensis CBS 569 basidiomycetes K.heveanensis (CBS 569 2016) https://genome.ucsc.edu/h/GCA_000507425.3 -Mastigamoeba balamuthi ATCC 30984 INSDC GCA_902651635.1 yes 0 1925 0 Mastigamoeba balamuthi ATCC 30984 AmoebaDB 108607 GCA_902651635.1_mastiga_genome_v5.1 GCA_902651635.1 False Mastigamoeba balamuthi M.balamuthi (2019) https://genome.ucsc.edu/h/GCA_902651635.1 -Lentinus tigrinus ALCF2SS1-7 INSDC GCA_003813185.1 yes 0 207 0 Lentinus tigrinus ALCF2SS1-7 FungiDB 1328758 GCA_003813185.1_Lenti7_1 GCA_003813185.1 GCF_003813185.1 True Lentinus tigrinus ALCF2SS1-7 basidiomycetes L.tigrinus (ALCF2SS1-7 2018) https://genome.ucsc.edu/h/GCA_003813185.1 -Aspergillus niger ATCC 13496 GenBank GCA_003344705.1 no 0 133 0 Aspergillus niger ATCC 13496 FungiDB 1353008 GCA_003344705.1_Aspni_bvT_1 GCA_003344705.1 False Aspergillus niger ATCC 13496 ascomycetes A.niger (ATCC 13496 2018) https://genome.ucsc.edu/h/GCA_003344705.1 -Ordospora colligata OC4 GenBank GCA_000803265.1 yes 15 0 0 Ordospora colligata OC4 MicrosporidiaDB 1354746 GCF_000803265.1_ASM80326v1 GCA_000803265.1 GCF_000803265.1 True Ordospora colligata OC4 microsporidians O.colligata OC4 https://genome.ucsc.edu/h/GCF_000803265.1 -Encephalitozoon cuniculi EcunIII-L GenBank GCA_001078035.1 no 0 0 15 Encephalitozoon cuniculi EcunIII-L MicrosporidiaDB 1355160 GCA_001078035.1_ECIIIL GCA_001078035.1 False Encephalitozoon cuniculi EcunIII-L microsporidians E.cuniculi (EcunIII-L 2015) https://genome.ucsc.edu/h/GCA_001078035.1 -Spraguea lophii 42_110 GenBank GCA_000430065.1 yes 1392 0 0 Spraguea lophii 42_110 MicrosporidiaDB 1358809 GCA_000430065.1_Sprlop1.0 GCA_000430065.1 False Spraguea lophii 42_110 microsporidians S.lophii (42_110 2013) https://genome.ucsc.edu/h/GCA_000430065.1 -Plasmodium falciparum HB3 GenBank GCA_900631985.1 no 12 0 14 Plasmodium falciparum HB3 PlasmoDB 5833 GCA_900631985.1_PfHB3-3 GCA_900631985.1 False Plasmodium falciparum malaria parasite P. falciparum (HB3 2018) https://genome.ucsc.edu/h/GCA_900631985.1 -Aspergillus campestris IBT 28561 GenBank GCA_002847485.1 yes 62 0 0 Aspergillus campestris IBT 28561 FungiDB 1392248 GCF_002847485.1_Aspcam1 GCA_002847485.1 GCF_002847485.1 True Aspergillus campestris IBT 28561 ascomycetes A.campestris IBT 28561 https://genome.ucsc.edu/h/GCF_002847485.1 -Aspergillus steynii IBT 23096 GenBank GCA_002849105.1 yes 37 0 0 Aspergillus steynii IBT 23096 FungiDB 1392250 GCF_002849105.1_Aspste1 GCA_002849105.1 GCF_002849105.1 True Aspergillus steynii IBT 23096 ascomycetes A.steynii IBT 23096 https://genome.ucsc.edu/h/GCF_002849105.1 -Aspergillus novofumigatus IBT 16806 GenBank GCA_002847465.1 yes 62 0 0 Aspergillus novofumigatus IBT 16806 FungiDB 1392255 GCF_002847465.1_Aspnov1 GCA_002847465.1 GCF_002847465.1 True Aspergillus novofumigatus IBT 16806 ascomycetes A.novofumigatus IBT 16806 https://genome.ucsc.edu/h/GCF_002847465.1 -Aspergillus ochraceoroseus IBT 24754 GenBank GCA_002846915.2 yes 34 0 0 Aspergillus ochraceoroseus IBT 24754 FungiDB 1392256 GCF_002846915.1_Aspergillus_ochraceoroseus_IBT_24754_v1.1 GCA_002846915.2 GCF_002846915.1 True Aspergillus ochraceoroseus IBT 24754 ascomycetes A.ochraceoroseus IBT 24754 https://genome.ucsc.edu/h/GCF_002846915.1 -Cryptococcus neoformans var. neoformans XL280 INSDC GCA_002216205.1 no 0 32 5 Cryptococcus neoformans var. neoformans XL280 FungiDB 1396488 GCA_002216205.1_ASM221620v1 GCA_002216205.1 False Cryptococcus neoformans var. neoformans XL280 basidiomycetes C.neoformans var. neoformans (XL280 2017) https://genome.ucsc.edu/h/GCA_002216205.1 -Sporothrix schenckii 1099-18 GenBank GCA_000961545.1 yes 15 0 0 Sporothrix schenckii 1099-18 FungiDB 1397361 GCF_000961545.1_S_schenckii_v1 GCA_000961545.1 GCF_000961545.1 True Sporothrix schenckii 1099-18 ascomycetes S.schenckii (1099-18 2015 refseq) https://genome.ucsc.edu/h/GCF_000961545.1 -Sporothrix brasiliensis 5110 GenBank GCA_000820605.1 yes 12 0 0 Sporothrix brasiliensis 5110 FungiDB 1398154 GCF_000820605.1_S_brasiliensis_5110_v1 GCA_000820605.1 GCF_000820605.1 True Sporothrix brasiliensis 5110 ascomycetes S.brasiliensis 5110 https://genome.ucsc.edu/h/GCF_000820605.1 -Pneumocystis jirovecii RU7 INSDC GCA_001477535.1 no 0 70 0 Pneumocystis jirovecii RU7 FungiDB 1408657 GCF_001477535.1_Pneu_jiro_RU7_V2 GCA_001477535.1 GCF_001477535.1 True Pneumocystis jirovecii RU7 ascomycetes P.jirovecii RU7 https://genome.ucsc.edu/h/GCF_001477535.1 -Pneumocystis carinii B80 INSDC GCF_001477545.1 yes 0 62 0 Pneumocystis carinii B80 FungiDB 1408658 GCF_001477545.1_Pneu_cari_B80_V3 GCA_001477545.1 GCF_001477545.1 True Pneumocystis carinii B80 ascomycetes P.carinii B80 https://genome.ucsc.edu/h/GCF_001477545.1 -Trypanosoma cruzi Dm28c 2014 GenBank GCA_000496795.1 no 1210 0 0 Trypanosoma cruzi Dm28c 2014 TriTrypDB 1416333 GCA_000496795.1_T.cruzi.Dm28c_v01 GCA_000496795.1 False Trypanosoma cruzi Dm28c Trypanosoma cruzi (Dm28c 2013) https://genome.ucsc.edu/h/GCA_000496795.1 -Fonsecaea pedrosoi CBS 271.37 GenBank GCA_000835455.1 yes 0 11 0 Fonsecaea pedrosoi CBS 271.37 FungiDB 1442368 GCF_000835455.1_Fons_pedr_CBS_271_37_V1 GCA_000835455.1 GCF_000835455.1 True Fonsecaea pedrosoi CBS 271.37 ascomycetes F.pedrosoi CBS 271.37 https://genome.ucsc.edu/h/GCF_000835455.1 -Rhinocladiella mackenziei CBS 650.93 INSDC GCA_000835555.1 yes 0 17 0 Rhinocladiella mackenziei CBS 650.93 FungiDB 1442369 GCF_000835555.1_Rhin_mack_CBS_650_93_V1 GCA_000835555.1 GCF_000835555.1 True Rhinocladiella mackenziei CBS 650.93 ascomycetes R.mackenziei CBS 650.93 https://genome.ucsc.edu/h/GCF_000835555.1 -Cladophialophora bantiana CBS 173.52 INSDC GCA_000835475.1 yes 0 60 0 Cladophialophora bantiana CBS 173.52 FungiDB 1442370 GCF_000835475.1_Clad_bant_CBS_173_52_V1 GCA_000835475.1 GCF_000835475.1 True Cladophialophora bantiana CBS 173.52 ascomycetes C.bantiana CBS 173.52 https://genome.ucsc.edu/h/GCF_000835475.1 -Fonsecaea multimorphosa CBS 102226 INSDC GCA_000836435.1 yes 0 67 0 Fonsecaea multimorphosa CBS 102226 FungiDB 1442371 GCF_000836435.1_Fons_mult_CBS_102226_V1 GCA_000836435.1 GCF_000836435.1 True Fonsecaea multimorphosa CBS 102226 ascomycetes F.multimorphosa CBS 102226 https://genome.ucsc.edu/h/GCF_000836435.1 -Emergomyces pasteurianus Ep9510 INSDC GCA_001883825.1 yes 0 1643 0 Emergomyces pasteurianus Ep9510 FungiDB 1447872 GCA_001883825.1_Emmo_past_UAMH9510_V1 GCA_001883825.1 False Emergomyces pasteurianus Ep9510 ascomycetes E.pasteurianus Ep9510 (UAMH 9510 2016) https://genome.ucsc.edu/h/GCA_001883825.1 -Aspergillus eucalypticola CBS 122712 INSDC GCA_003184535.1 yes 0 131 0 Aspergillus eucalypticola CBS 122712 FungiDB 1448314 GCF_003184535.1_Aspeuc1 GCA_003184535.1 GCF_003184535.1 True Aspergillus eucalypticola CBS 122712 ascomycetes A.eucalypticola CBS 122712 https://genome.ucsc.edu/h/GCF_003184535.1 -Aspergillus uvarum CBS 121591 INSDC GCA_003184745.1 yes 0 172 0 Aspergillus uvarum CBS 121591 FungiDB 1448315 GCF_003184745.1_Aspuva1 GCA_003184745.1 GCF_003184745.1 True Aspergillus uvarum CBS 121591 ascomycetes A.uvarum CBS 121591 https://genome.ucsc.edu/h/GCF_003184745.1 -Aspergillus ibericus CBS 121593 INSDC GCA_003184845.1 yes 0 116 0 Aspergillus ibericus CBS 121593 FungiDB 1448316 GCF_003184845.1_Aspibe1 GCA_003184845.1 GCF_003184845.1 True Aspergillus ibericus CBS 121593 ascomycetes A.ibericus CBS 121593 https://genome.ucsc.edu/h/GCF_003184845.1 -Aspergillus sclerotiicarbonarius CBS 121057 INSDC GCA_003184635.1 yes 0 166 0 Aspergillus sclerotiicarbonarius CBS 121057 FungiDB 1448318 GCA_003184635.1_Aspscle1 GCA_003184635.1 False Aspergillus sclerotiicarbonarius CBS 121057 ascomycetes A.sclerotiicarbonarius (CBS 121057 2018) https://genome.ucsc.edu/h/GCA_003184635.1 -Aspergillus fijiensis CBS 313.89 INSDC GCA_003184825.1 yes 0 149 0 Aspergillus fijiensis CBS 313.89 FungiDB 1448319 GCF_003184825.1_Aspfij1 GCA_003184825.1 GCF_003184825.1 True Aspergillus fijiensis CBS 313.89 ascomycetes A.fijiensis CBS 313.89 https://genome.ucsc.edu/h/GCF_003184825.1 -Aspergillus ellipticus CBS 707.79 INSDC GCA_003184645.1 yes 0 518 0 Aspergillus ellipticus CBS 707.79 FungiDB 1448320 GCA_003184645.1_Aspell1 GCA_003184645.1 False Aspergillus ellipticus CBS 707.79 ascomycetes A.ellipticus (CBS 707.79 2018) https://genome.ucsc.edu/h/GCA_003184645.1 -Aspergillus heteromorphus CBS 117.55 INSDC GCA_003184545.1 yes 0 205 0 Aspergillus heteromorphus CBS 117.55 FungiDB 1448321 GCF_003184545.1_Asphet1 GCA_003184545.1 GCF_003184545.1 True Aspergillus heteromorphus CBS 117.55 ascomycetes A.heteromorphus CBS 117.55 https://genome.ucsc.edu/h/GCF_003184545.1 -Aspergillus homomorphus CBS 101889 INSDC GCA_003184865.1 yes 0 152 0 Aspergillus homomorphus CBS 101889 FungiDB 1450537 GCF_003184865.1_Asphom1 GCA_003184865.1 GCF_003184865.1 True Aspergillus homomorphus CBS 101889 ascomycetes A.homomorphus CBS 101889 https://genome.ucsc.edu/h/GCF_003184865.1 -Theileria equi strain WA GenBank GCA_000342415.1 yes 0 8 2 Theileria equi strain WA PiroplasmaDB 1537102 GCF_000342415.1_JCVI-bewag-v1.1 GCA_000342415.1 GCF_000342415.1 True Theileria equi strain WA apicomplexans T.equi strain (WA 2012) https://genome.ucsc.edu/h/GCF_000342415.1 -Cryptosporidium sp. chipmunk LX-2015 GenBank GCA_000831705.1 yes 853 0 0 Cryptosporidium sp. chipmunk LX-2015 CryptoDB 1603071 GCA_000831705.1_ASM83170v1 GCA_000831705.1 False Cryptosporidium sp. chipmunk LX-2015 apicomplexans C.sp. (chipmunk LX-2015 2015) https://genome.ucsc.edu/h/GCA_000831705.1 -Nematocida ironsii ERTm5 INSDC GCA_001642415.1 yes 0 186 0 Nematocida ironsii ERTm5 MicrosporidiaDB 1805481 GCA_001642415.1_ASM164241v1 GCA_001642415.1 False Nematocida sp. ERTm5 microsporidians N.sp. (ERTm5 2016) https://genome.ucsc.edu/h/GCA_001642415.1 -Trypanosoma brucei brucei TREU927 GenBank GCA_000002445.1 yes 115 0 16 Trypanosoma brucei brucei TREU927 TriTrypDB 185431 GCF_000002445.2_ASM244v1 GCA_000002445.1 GCF_000002445.2 True Trypanosoma brucei brucei TREU927 Trypanosoma brucei brucei (927/4 GUTat10.1 2005 kinetoplastids) https://genome.ucsc.edu/h/GCF_000002445.2 -Amphiamblys sp. WSBS2006 GenBank GCA_001875675.1 yes 1727 0 0 unclassified Amphiamblys WSBS2006 MicrosporidiaDB 1866961 GCA_001875675.1_ASM187567v1 GCA_001875675.1 False Amphiamblys sp. WSBS2006 microsporidians A.sp. (WSBS2006 2016) https://genome.ucsc.edu/h/GCA_001875675.1 -Cryptococcus neoformans var. neoformans JEC21 GenBank GCA_000091045.1 yes 0 0 14 Cryptococcus neoformans var. neoformans JEC21 FungiDB 214684 GCF_000091045.1_ASM9104v1 GCA_000091045.1 GCF_000091045.1 True Cryptococcus neoformans var. neoformans JEC21 basidiomycetes C.neoformans (JEC21 2005 refseq) https://genome.ucsc.edu/h/GCF_000091045.1 -Coccidioides posadasii C735 delta SOWgp GenBank GCA_000151335.1 no 0 55 0 Coccidioides posadasii C735 delta SOWgp FungiDB 222929 GCF_000151335.2_JCVI-cpa1-1.0 GCA_000151335.1 GCF_000151335.2 True Coccidioides posadasii C735 delta SOWgp ascomycetes C.posadasii (C735 delta SOWgp 2009 refseq) https://genome.ucsc.edu/h/GCF_000151335.2 -Chaetothyriales sp. CBS 132003 INSDC GCA_003709865.1 yes 0 118 0 Chaetothyriales sp. CBS 132003 FungiDB 2249419 GCA_003709865.1_ASM370986v1 GCA_003709865.1 False Chaetothyriales sp. CBS 132003 ascomycetes C.sp. (CBS 132003 2018) https://genome.ucsc.edu/h/GCA_003709865.1 -Aspergillus nidulans FGSC A4 GenBank GCA_000149205.2 yes 0 0 8 Aspergillus nidulans FGSC A4 FungiDB 227321 GCF_000149205.2_ASM14920v2 GCA_000149205.2 GCF_000149205.2 True Aspergillus nidulans FGSC A4 ascomycetes A.nidulans (FGSC A4 2012 refseq) https://genome.ucsc.edu/h/GCF_000149205.2 -Fusarium graminearum PH-1 GenBank GCA_900044135.1 yes 0 1 4 Fusarium graminearum PH-1 FungiDB 5518 GCA_900044135.1_GZPH1RResV1 GCA_900044135.1 False Fusarium graminearum ascomycetes F.graminearum (PH-1 GZPH1RResV1 2016) https://genome.ucsc.edu/h/GCA_900044135.1 -Cryptococcus neoformans var. grubii H99 GenBank GCA_000149245.3 no 0 0 14 Cryptococcus neoformans var. grubii H99 FungiDB 235443 GCF_000149245.1_CNA3 GCA_000149245.3 GCF_000149245.1 True Cryptococcus neoformans var. grubii H99 basidiomycetes C.neoformans var. grubii H99 https://genome.ucsc.edu/h/GCF_000149245.1 -Candida albicans SC5314 GenBank GCA_000182965.3 yes 0 0 8 Candida albicans SC5314 FungiDB 237561 GCF_000182965.3_ASM18296v3 GCA_000182965.3 GCF_000182965.3 True Candida albicans SC5314 budding yeast C.albicans SC5314 https://genome.ucsc.edu/h/GCF_000182965.3 -Ustilago maydis 521 GenBank GCA_000328475.2 yes 0 4 23 Ustilago maydis 521 FungiDB 237631 GCF_000328475.2_Umaydis521_2.0 GCA_000328475.2 GCF_000328475.2 True Ustilago maydis 521 smut fungi U.maydis 521 https://genome.ucsc.edu/h/GCF_000328475.2 -Coprinopsis cinerea okayama7#130 GenBank GCA_000182895.1 yes 0 67 0 Coprinopsis cinerea okayama7#130 FungiDB 240176 GCF_000182895.1_CC3 GCA_000182895.1 GCF_000182895.1 True Coprinopsis cinerea okayama7#130 basidiomycetes C.cinerea (okayama7#130 2010 refseq) https://genome.ucsc.edu/h/GCF_000182895.1 -Pyricularia oryzae 70-15 GenBank GCA_000002495.2 yes 0 46 7 Pyricularia oryzae 70-15 FungiDB 242507 GCF_000002495.2_MG8 GCA_000002495.2 GCF_000002495.2 True Pyricularia oryzae 70-15 rice blast fungus https://genome.ucsc.edu/h/GCF_000002495.2 -Rhizopus delemar RA 99-880 GenBank GCA_000149305.1 yes 0 81 0 Rhizopus delemar RA 99-880 FungiDB 246409 GCA_000149305.1_RO3 GCA_000149305.1 GCF_000149305.1 True Rhizopus delemar RA 99-880 mucoromycotan R.delemar (RA 99-880 2009) https://genome.ucsc.edu/h/GCA_000149305.1 -Coccidioides immitis RS GenBank GCA_000149335.2 yes 0 6 0 Coccidioides immitis RS FungiDB 246410 GCF_000149335.2_ASM14933v2 GCA_000149335.2 GCF_000149335.2 True Coccidioides immitis RS ascomycetes C.immitis RS https://genome.ucsc.edu/h/GCF_000149335.2 -Microsporidium sp. FI-F-10 INSDC GCA_021821965.1 yes 0 22 0 Microsporidium sp. FI-F-10 MicrosporidiaDB 3039483 GCF_021821965.1_FI-F-10_v._1 GCA_021821965.1 GCF_021821965.1 True Ordospora pajunii microsporidians O.pajunii (FI-F-10 2022) https://genome.ucsc.edu/h/GCF_021821965.1 -Phanerochaete chrysosporium RP-78 GenBank GCA_000167175.1 yes 0 232 0 Phanerochaete chrysosporium RP-78 FungiDB 273507 GCA_000167175.1_ASM16717v1 GCA_000167175.1 False Phanerochaete chrysosporium RP-78 basidiomycetes P.chrysosporium (RP-78 2004) https://genome.ucsc.edu/h/GCA_000167175.1 -Cryptococcus neoformans var. neoformans B-3501A GenBank GCA_000149385.1 no 0 0 14 Cryptococcus neoformans var. neoformans B-3501A FungiDB 283643 GCF_000149385.1_ASM14938v1 GCA_000149385.1 GCF_000149385.1 True Cryptococcus neoformans var. neoformans B-3501A basidiomycetes C.neoformans var. neoformans B-3501A https://genome.ucsc.edu/h/GCF_000149385.1 -Kluyveromyces lactis NRRL Y-1140 INSDC GCA_000002515.1 yes 0 0 6 Kluyveromyces lactis NRRL Y-1140 FungiDB 28985 GCF_000002515.2_ASM251v1 GCA_000002515.1 GCF_000002515.2 False Kluyveromyces lactis budding yeast K.lactis https://genome.ucsc.edu/h/GCF_000002515.2 -Yarrowia lipolytica CLIB122 GenBank GCA_000002525.1 yes 0 0 6 Yarrowia lipolytica CLIB122 FungiDB 284591 GCF_000002525.2_ASM252v1 GCA_000002525.1 GCF_000002525.2 False Yarrowia lipolytica CLIB122 budding yeast Y.lipolytica (CLIB122 2004 refseq) https://genome.ucsc.edu/h/GCF_000002525.2 -Debaryomyces hansenii CBS767 INSDC GCA_000006445.2 yes 0 0 7 Debaryomyces hansenii CBS767 FungiDB 284592 GCF_000006445.2_ASM644v2 GCA_000006445.2 GCF_000006445.2 False Debaryomyces hansenii CBS767 budding yeast D.hansenii CBS767 https://genome.ucsc.edu/h/GCF_000006445.2 -Nakaseomyces glabratus CBS 138 GenBank GCA_000002545.2 yes 0 0 13 Nakaseomyces glabratus CBS 138 FungiDB 5478 GCF_000002545.3_ASM254v2 GCA_000002545.2 GCF_000002545.3 False Nakaseomyces glabratus budding yeast N.glabratus (CBS 138 2008 refseq) https://genome.ucsc.edu/h/GCF_000002545.3 -Encephalitozoon cuniculi GB-M1 GenBank GCA_000091225.2 yes 0 0 11 Encephalitozoon cuniculi GB-M1 MicrosporidiaDB 284813 GCF_000091225.2_ASM9122v2 GCA_000091225.2 GCF_000091225.2 True Encephalitozoon cuniculi GB-M1 microsporidians E.cuniculi (v2 GB-M1 2017) https://genome.ucsc.edu/h/GCF_000091225.2 -Porospora cf. gigantea A INSDC GCA_019968955.1 yes 0 787 0 Porospora gigantea A CryptoDB 2853593 GCF_019968955.1_MNHN_PgigA_v1 GCA_019968955.1 GCF_019968955.1 True Porospora cf. gigantea A apicomplexans P.cf. gigantea (A 2021) https://genome.ucsc.edu/h/GCF_019968955.1 -Acanthamoeba sp. SK_2022c INSDC GCA_027944975.1 no 0 20778 0 Acanthamoeba sp. SK_2022c AmoebaDB 2919603 GCA_027944975.1_ASM2794497v1 GCA_027944975.1 False Acanthamoeba sp. SK_2022c A.sp. (SK_2022c 2023) https://genome.ucsc.edu/h/GCA_027944975.1 -Acanthamoeba sp. SK_2022b INSDC GCA_027943245.1 no 0 1790 0 Acanthamoeba sp. SK_2022b AmoebaDB 2919604 GCA_027943245.1_ASM2794324v1 GCA_027943245.1 False Acanthamoeba sp. SK_2022b A.sp. (SK_2022b 2023) https://genome.ucsc.edu/h/GCA_027943245.1 -Acanthamoeba sp. SK_2022a INSDC GCA_027943295.1 no 0 2108 0 Acanthamoeba sp. SK_2022a AmoebaDB 2919605 GCA_027943295.1_ASM2794329v1 GCA_027943295.1 False Acanthamoeba sp. SK_2022a A.sp. (SK_2022a 2023) https://genome.ucsc.edu/h/GCA_027943295.1 -Entamoeba histolytica HM-1:IMSS GenBank GCA_000208925.2 yes 0 1496 0 Entamoeba histolytica HM-1:IMSS AmoebaDB 294381 GCF_000208925.1_JCVI_ESG2_1.0 GCA_000208925.2 GCF_000208925.1 True Entamoeba histolytica HM-1:IMSS E.histolytica (HM-1:IMSS 2008) https://genome.ucsc.edu/h/GCF_000208925.1 -Meyerozyma guilliermondii ATCC 6260 INSDC GCA_000149425.1 yes 0 9 0 Meyerozyma guilliermondii ATCC 6260 FungiDB 294746 GCF_000149425.1_ASM14942v1 GCA_000149425.1 GCF_000149425.1 True Meyerozyma guilliermondii ATCC 6260 budding yeast M.guilliermondii ATCC 6260 https://genome.ucsc.edu/h/GCF_000149425.1 -Candida tropicalis MYA-3404 GenBank GCA_000006335.3 yes 0 23 0 Candida tropicalis MYA-3404 FungiDB 294747 GCF_000006335.3_ASM633v3 GCA_000006335.3 GCF_000006335.3 True Candida tropicalis MYA-3404 budding yeast C.tropicalis MYA-3404 https://genome.ucsc.edu/h/GCF_000006335.3 -Candida albicans WO-1 GenBank GCA_000149445.2 no 0 16 0 Candida albicans WO-1 FungiDB 294748 GCA_000149445.2_ASM14944v2 GCA_000149445.2 False Candida albicans WO-1 budding yeast C.albicans (WO-1 2009) https://genome.ucsc.edu/h/GCA_000149445.2 -Cryptococcus gattii VGII R265 GenBank GCA_002954075.1 yes 0 0 14 Cryptococcus gattii VGII R265 FungiDB 294750 GCF_002954075.1_C._deuterogattii_R265_chr GCA_002954075.1 GCF_002954075.1 False Cryptococcus deuterogattii R265 basidiomycetes C.deuterogattii (R265 2018) https://genome.ucsc.edu/h/GCF_002954075.1 -Chaetomium globosum CBS 148.51 INSDC GCA_000143365.1 yes 0 21 0 Chaetomium globosum CBS 148.51 FungiDB 306901 GCF_000143365.1_ASM14336v1 GCA_000143365.1 GCF_000143365.1 True Chaetomium globosum CBS 148.51 ascomycetes C.globosum CBS 148.51 https://genome.ucsc.edu/h/GCF_000143365.1 -Clavispora lusitaniae ATCC 42720 GenBank GCA_000003835.1 yes 0 9 0 Clavispora lusitaniae ATCC 42720 FungiDB 306902 GCF_000003835.1_ASM383v1 GCA_000003835.1 GCF_000003835.1 True Clavispora lusitaniae ATCC 42720 budding yeast C.lusitaniae (ATCC 42720 2009 refseq) https://genome.ucsc.edu/h/GCF_000003835.1 -Plasmodium chabaudi chabaudi GenBank GCA_900002335.2 yes 0 0 14 Plasmodium chabaudi chabaudi PlasmoDB 31271 GCF_900002335.3_GCA_900002335 GCA_900002335.2 GCF_900002335.3 False Plasmodium chabaudi chabaudi apicomplexans P.chabaudi chabaudi (AS 2019) https://genome.ucsc.edu/h/GCF_900002335.3 -Parastagonospora nodorum SN15 INSDC GCA_016801405.1 yes 0 0 23 Parastagonospora nodorum SN15 FungiDB 321614 GCA_016801405.1_ASM1680140v1 GCA_016801405.1 False Parastagonospora nodorum SN15 ascomycetes P.nodorum (SN15 2021) https://genome.ucsc.edu/h/GCA_016801405.1 -Aspergillus fumigatus Af293 GenBank GCA_000002655.1 yes 0 0 8 Aspergillus fumigatus Af293 FungiDB 330879 GCF_000002655.1_ASM265v1 GCA_000002655.1 GCF_000002655.1 True Aspergillus fumigatus Af293 ascomycetes A.fumigatus Af293 https://genome.ucsc.edu/h/GCF_000002655.1 -Aspergillus fischeri NRRL 181 GenBank GCA_000149645.4 yes 0 163 0 Aspergillus fischeri NRRL 181 FungiDB 331117 GCF_000149645.3_ASM14964v4 GCA_000149645.4 GCF_000149645.3 True Aspergillus fischeri NRRL 181 ascomycetes A.fischeri (v4 NRRL 181 2006) https://genome.ucsc.edu/h/GCF_000149645.3 -Botrytis cinerea B05.10 GenBank GCA_000143535.4 yes 0 0 18 Botrytis cinerea B05.10 FungiDB 332648 GCF_000143535.2_ASM14353v4 GCA_000143535.4 GCF_000143535.2 True Botrytis cinerea B05.10 ascomycetes B.cinerea B05.10 https://genome.ucsc.edu/h/GCF_000143535.2 -Aspergillus flavus NRRL3357 GenBank GCA_000006275.3 yes 0 282 0 Aspergillus flavus NRRL3357 FungiDB 332952 GCA_000006275.3_JCVI-afl1-v3.0 GCA_000006275.3 False Aspergillus flavus NRRL3357 ascomycetes A.flavus (NRRL3357 2020) https://genome.ucsc.edu/h/GCA_000006275.3 -Theileria parva strain Muguga GenBank GCA_000165365.1 yes 0 6 2 Theileria parva strain Muguga PiroplasmaDB 333668 GCF_000165365.1_ASM16536v1 GCA_000165365.1 GCF_000165365.1 True Theileria parva strain Muguga apicomplexans T.parva strain (Muguga 2005) https://genome.ucsc.edu/h/GCF_000165365.1 -Fusarium verticillioides 7600 GenBank GCA_000149555.1 yes 0 10 11 Fusarium verticillioides 7600 FungiDB 334819 GCF_000149555.1_ASM14955v1 GCA_000149555.1 GCF_000149555.1 False Fusarium verticillioides 7600 ascomycetes F.verticillioides 7600 https://genome.ucsc.edu/h/GCF_000149555.1 -Zymoseptoria tritici IPO323 GenBank GCA_000219625.1 yes 0 0 21 Zymoseptoria tritici IPO323 FungiDB 336722 GCF_000219625.1_MYCGR_v2.0 GCA_000219625.1 GCF_000219625.1 True Zymoseptoria tritici IPO323 ascomycetes Z.tritici (IPO323 2011 refseq) https://genome.ucsc.edu/h/GCF_000219625.1 -Uncinocarpus reesii 1704 GenBank GCA_000003515.2 yes 0 44 0 Uncinocarpus reesii 1704 FungiDB 336963 GCF_000003515.1_ASM351v2 GCA_000003515.2 GCF_000003515.1 True Uncinocarpus reesii 1704 ascomycetes U.reesii 1704 https://genome.ucsc.edu/h/GCF_000003515.1 -Histoplasma capsulatum NAm1 GenBank GCA_000149585.1 no 0 276 0 Histoplasma capsulatum NAm1 FungiDB 2059318 GCF_000149585.1_ASM14958v1 GCA_000149585.1 GCF_000149585.1 True Histoplasma mississippiense ascomycetes H.capsulatum NAm1 https://genome.ucsc.edu/h/GCF_000149585.1 -Aspergillus terreus NIH2624 GenBank GCA_000149615.1 yes 0 26 0 Aspergillus terreus NIH2624 FungiDB 341663 GCF_000149615.1_ASM14961v1 GCA_000149615.1 GCF_000149615.1 True Aspergillus terreus NIH2624 ascomycetes A.terreus NIH2624 https://genome.ucsc.edu/h/GCF_000149615.1 -Aspergillus clavatus NRRL 1 GenBank GCA_000002715.1 yes 0 143 0 Aspergillus clavatus NRRL 1 FungiDB 344612 GCF_000002715.2_ASM271v1 GCA_000002715.1 GCF_000002715.2 True Aspergillus clavatus NRRL 1 ascomycetes A.clavatus NRRL 1 https://genome.ucsc.edu/h/GCF_000002715.2 -Leishmania major strain Friedlin GenBank GCA_000002725.2 yes 0 0 36 Leishmania major strain Friedlin TriTrypDB 347515 GCF_000002725.2_ASM272v2 GCA_000002725.2 GCF_000002725.2 True Leishmania major strain Friedlin Leishmania major (Friedlin 2011 kinetoplastids refseq) https://genome.ucsc.edu/h/GCF_000002725.2 -Dictyostelium discoideum AX4 INSDC GCF_000004695.1 yes 0 33 7 Dictyostelium discoideum AX4 AmoebaDB 352472 GCA_000004695.1_dicty_2.7 GCA_000004695.1 GCF_000004695.1 False Dictyostelium discoideum AX4 cellular slime molds (AX4 2009) https://genome.ucsc.edu/h/GCA_000004695.1 -Plasmodium yoelii yoelii 17XNL GenBank GCA_000003085.2 no 5617 0 0 Plasmodium yoelii yoelii 17XNL PlasmoDB 73239 GCF_000003085.2_ASM308v2 GCA_000003085.2 GCF_000003085.2 True Plasmodium yoelii yoelii apicomplexans P.yoelii yoelii (17XNL 2002) https://genome.ucsc.edu/h/GCF_000003085.2 -Cryptosporidium hominis TU502 GenBank GCA_000006425.1 yes 1422 0 0 Cryptosporidium hominis TU502 CryptoDB 353151 GCF_000006425.1_ASM642v1 GCA_000006425.1 GCF_000006425.1 True Cryptosporidium hominis TU502 apicomplexans C.hominis (TU502 2004 refseq) https://genome.ucsc.edu/h/GCF_000006425.1 -Cryptosporidium parvum Iowa II GenBank GCA_000165345.1 yes 0 0 8 Cryptosporidium parvum Iowa II CryptoDB 353152 GCF_000165345.1_ASM16534v1 GCA_000165345.1 GCF_000165345.1 True Cryptosporidium parvum Iowa II apicomplexans C.parvum (Iowa type II 2007) https://genome.ucsc.edu/h/GCF_000165345.1 -Trypanosoma cruzi strain CL Brener GenBank GCA_000209065.1 no 29407 0 0 Trypanosoma cruzi strain CL Brener TriTrypDB 5693 GCF_000209065.1_ASM20906v1 GCA_000209065.1 GCF_000209065.1 True Trypanosoma cruzi Trypanosoma cruzi (CL Brener 2005 kinetoplastids) https://genome.ucsc.edu/h/GCF_000209065.1 -Theileria annulata strain Ankara GenBank GCA_000003225.1 yes 0 0 4 Theileria annulata strain Ankara PiroplasmaDB 5874 GCA_000003225.1_ASM322v1 GCA_000003225.1 GCF_000003225.2 False Theileria annulata apicomplexans T.annulata (Ankara isolate clone C9 2005) https://genome.ucsc.edu/h/GCA_000003225.1 -Plasmodium falciparum 3D7 GenBank GCA_000002765.3 yes 0 0 14 Plasmodium falciparum 3D7 PlasmoDB 36329 GCF_000002765.5_GCA_000002765 GCA_000002765.3 GCF_000002765.5 False Plasmodium falciparum 3D7 malaria parasite P. falciparum (3D7 2016 refseq) https://genome.ucsc.edu/h/GCF_000002765.5 -Trypanosoma cruzi strain Esmeraldo GenBank GCA_000327425.1 no 15007 796 0 Trypanosoma cruzi strain Esmeraldo TriTrypDB 366581 GCA_000327425.1_Trypanosoma_cruzi-5.1.3 GCA_000327425.1 False Trypanosoma cruzi strain Esmeraldo Trypanosoma cruzi strain (Esmeraldo cl. 3 2013) https://genome.ucsc.edu/h/GCA_000327425.1 -Neurospora crassa OR74A GenBank GCA_000182925.2 yes 0 13 7 Neurospora crassa OR74A FungiDB 367110 GCF_000182925.2_NC12 GCA_000182925.2 GCF_000182925.2 True Neurospora crassa OR74A ascomycetes N.crassa OR74A https://genome.ucsc.edu/h/GCF_000182925.2 -Cryptococcus gattii WM276 GenBank GCA_000185945.1 yes 0 0 14 Cryptococcus gattii VGI WM276 FungiDB 367775 GCF_000185945.1_ASM18594v1 GCA_000185945.1 GCF_000185945.1 True Cryptococcus gattii WM276 basidiomycetes C.gattii WM276 https://genome.ucsc.edu/h/GCF_000185945.1 -Entamoeba dispar SAW760 GenBank GCA_000209125.2 yes 0 3312 0 Entamoeba dispar SAW760 AmoebaDB 370354 GCF_000209125.1_JCVI_EDISG_1.0 GCA_000209125.2 GCF_000209125.1 True Entamoeba dispar SAW760 E.dispar (SAW760 2008) https://genome.ucsc.edu/h/GCF_000209125.1 -Entamoeba invadens IP1 GenBank GCA_000330505.1 yes 0 1144 0 Entamoeba invadens IP1 AmoebaDB 370355 GCF_000330505.1_EIA2_v2 GCA_000330505.1 GCF_000330505.1 True Entamoeba invadens IP1 E.invadens (IP1 2013) https://genome.ucsc.edu/h/GCF_000330505.1 -Lodderomyces elongisporus NRRL YB-4239 INSDC GCA_000149685.1 yes 0 27 0 Lodderomyces elongisporus NRRL YB-4239 FungiDB 379508 GCF_000149685.1_ASM14968v1 GCA_000149685.1 GCF_000149685.1 True Lodderomyces elongisporus NRRL YB-4239 budding yeast L.elongisporus (NRRL YB-4239 2007 refseq) https://genome.ucsc.edu/h/GCF_000149685.1 -Aspergillus niger ATCC 1015 GenBank GCA_000230395.2 no 0 24 0 Aspergillus niger ATCC 1015 FungiDB 380704 GCA_000230395.2_ASPNI_v3.0 GCA_000230395.2 False Aspergillus niger ATCC 1015 ascomycetes A.niger (ATCC 1015 2011) https://genome.ucsc.edu/h/GCA_000230395.2 -Pseudocercospora fijiensis CIRAD86 INSDC GCA_000340215.1 yes 0 56 0 Pseudocercospora fijiensis CIRAD86 FungiDB 383855 GCF_000340215.1_Mycfi2 GCA_000340215.1 GCF_000340215.1 True Pseudocercospora fijiensis CIRAD86 ascomycetes P.fijiensis CIRAD86 https://genome.ucsc.edu/h/GCF_000340215.1 -Ascosphaera apis ARSEF 7405 INSDC GCA_001636715.1 yes 0 82 0 Ascosphaera apis ARSEF 7405 FungiDB 392613 GCA_001636715.1_AAP_1.0 GCA_001636715.1 False Ascosphaera apis ARSEF 7405 ascomycetes A.apis (ARSEF 7405 2016) https://genome.ucsc.edu/h/GCA_001636715.1 -Coccidioides immitis H538.4 GenBank GCA_000149815.1 no 0 553 0 Coccidioides immitis H538.4 FungiDB 396776 GCA_000149815.1_ASM14981v1 GCA_000149815.1 False Coccidioides immitis H538.4 ascomycetes C.immitis (H538.4 2006) https://genome.ucsc.edu/h/GCA_000149815.1 -Schizosaccharomyces japonicus yFS275 GenBank GCA_000149845.2 yes 0 32 0 Schizosaccharomyces japonicus yFS275 FungiDB 402676 GCF_000149845.2_SJ5 GCA_000149845.2 GCF_000149845.2 True Schizosaccharomyces japonicus yFS275 ascomycetes S.japonicus yFS275 https://genome.ucsc.edu/h/GCF_000149845.2 -Batrachochytrium dendrobatidis JEL423 GenBank GCA_000149865.1 yes 0 69 0 Batrachochytrium dendrobatidis JEL423 FungiDB 403673 GCA_000149865.1_BD_JEL423 GCA_000149865.1 False Batrachochytrium dendrobatidis JEL423 chytrids B.dendrobatidis (JEL423 2006) https://genome.ucsc.edu/h/GCA_000149865.1 -Phytophthora infestans T30-4 GenBank GCA_000142945.1 yes 0 4921 0 Phytophthora infestans T30-4 FungiDB 403677 GCF_000142945.1_ASM14294v1 GCA_000142945.1 GCF_000142945.1 True Phytophthora infestans T30-4 potato late blight agent (T30-4 2009) https://genome.ucsc.edu/h/GCF_000142945.1 -Coccidioides immitis RMSCC 2394 GenBank GCA_000149895.1 no 0 23 0 Coccidioides immitis RMSCC 2394 FungiDB 404692 GCA_000149895.1_ASM14989v1 GCA_000149895.1 False Coccidioides immitis RMSCC 2394 ascomycetes C.immitis (RMSCC 2394 2006) https://genome.ucsc.edu/h/GCA_000149895.1 -Trichomonas vaginalis G3 GenBank GCA_000002825.1 no 0 64764 0 Trichomonas vaginalis G3 TrichDB 412133 GCF_000002825.2_ASM282v1 GCA_000002825.1 GCF_000002825.2 True Trichomonas vaginalis G3 trichomonads (G3; ATCC PRA-98 2007) https://genome.ucsc.edu/h/GCF_000002825.2 -Trichoderma virens Gv29-8 GenBank GCA_000170995.2 yes 93 0 0 Trichoderma virens Gv29-8 FungiDB 413071 GCF_000170995.1_TRIVI_v2.0 GCA_000170995.2 GCF_000170995.1 True Trichoderma virens Gv29-8 ascomycetes T.virens Gv29-8 https://genome.ucsc.edu/h/GCF_000170995.1 -Eimeria tenella strain Houghton GenBank GCA_000499545.1 no 0 4664 0 Eimeria tenella strain Houghton ToxoDB 5802 GCF_000499545.1_ETH001 GCA_000499545.1 GCF_000499545.1 True Eimeria tenella apicomplexans E.tenella (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499545.1 -Puccinia graminis f. sp. tritici CRL 75-36-700-3 GenBank GCA_000149925.1 yes 0 392 0 Puccinia graminis f. sp. tritici CRL 75-36-700-3 FungiDB 418459 GCF_000149925.1_ASM14992v1 GCA_000149925.1 GCF_000149925.1 True Puccinia graminis f. sp. tritici CRL 75-36-700-3 rust fungi P.graminis f. sp. tritici CRL 75-36-700-3 https://genome.ucsc.edu/h/GCF_000149925.1 -Leishmania braziliensis MHOM/BR/75/M2904 GenBank GCA_000002845.2 yes 103 0 36 Leishmania braziliensis MHOM/BR/75/M2904 TriTrypDB 420245 GCF_000002845.2_ASM284v2 GCA_000002845.2 GCF_000002845.2 True Leishmania braziliensis MHOM/BR/75/M2904 Leishmania braziliensis (MHOM/BR/75/M2904 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000002845.2 -Aspergillus niger CBS 513.88 GenBank GCA_000002855.2 yes 0 19 0 Aspergillus niger CBS 513.88 FungiDB 5061 GCF_000002855.4_ASM285v2 GCA_000002855.2 GCF_000002855.4 True Aspergillus niger ascomycetes A.niger (v4 2007) https://genome.ucsc.edu/h/GCF_000002855.4 -Malassezia restricta CBS 7877 INSDC GCA_003691605.1 no 0 0 9 Malassezia restricta CBS 7877 FungiDB 425264 GCA_003691605.1_ASM369160v1 GCA_003691605.1 False Malassezia restricta CBS 7877 basidiomycetes M.restricta (CBS 7877 2018) https://genome.ucsc.edu/h/GCA_003691605.1 -Fusarium oxysporum f. sp. lycopersici 4287 GenBank GCA_000149955.2 yes 0 70 15 Fusarium oxysporum f. sp. lycopersici 4287 FungiDB 426428 GCF_000149955.1_ASM14995v2 GCA_000149955.2 GCF_000149955.1 False Fusarium oxysporum f. sp. lycopersici 4287 ascomycetes F.oxysporum (f. sp. lycopersici 4287 2015) https://genome.ucsc.edu/h/GCF_000149955.1 -Trypanosoma rangeli SC58 GenBank GCA_000492115.1 yes 7433 0 0 Trypanosoma rangeli SC58 TriTrypDB 429131 GCA_000492115.1_T_rangeli_SC58v1 GCA_000492115.1 False Trypanosoma rangeli SC58 Trypanosoma rangeli (SC58 2013) https://genome.ucsc.edu/h/GCA_000492115.1 -Trichoderma reesei QM6a GenBank GCA_000167675.2 yes 0 77 0 Trichoderma reesei QM6a FungiDB 431241 GCF_000167675.1_v2.0 GCA_000167675.2 GCF_000167675.1 True Trichoderma reesei QM6a ascomycetes T.reesei QM6a https://genome.ucsc.edu/h/GCF_000167675.1 -Globisporangium ultimum DAOM BR144 GenBank GCA_000143045.1 yes 0 975 0 Globisporangium ultimum DAOM BR144 FungiDB 431595 GCA_000143045.1_pug GCA_000143045.1 False Globisporangium ultimum DAOM BR144 oomycetes (DAOM BR144 2010) https://genome.ucsc.edu/h/GCA_000143045.1 -Toxoplasma gondii VEG GenBank GCA_000150015.2 no 0 1290 14 Toxoplasma gondii VEG ToxoDB 432359 GCA_000150015.2_TGVEG GCA_000150015.2 False Toxoplasma gondii VEG apicomplexans T.gondii (VEG 2013) https://genome.ucsc.edu/h/GCA_000150015.2 -Leishmania infantum JPCM5 GenBank GCA_900500625.2 yes 0 0 36 Leishmania infantum JPCM5 TriTrypDB 5671 GCA_900500625.2_LINF GCA_900500625.2 False Leishmania infantum Leishmania infantum (2020) https://genome.ucsc.edu/h/GCA_900500625.2 -Cryptosporidium muris RN66 GenBank GCF_000006515.1 yes 0 84 0 Cryptosporidium muris RN66 CryptoDB 441375 GCF_000006515.1_JCVI_cmg_v1.0 GCA_000006515.1 GCF_000006515.1 True Cryptosporidium muris RN66 apicomplexans C.muris (RN66 2008) https://genome.ucsc.edu/h/GCF_000006515.1 -Talaromyces stipitatus ATCC 10500 GenBank GCA_000003125.1 yes 0 820 0 Talaromyces stipitatus ATCC 10500 FungiDB 441959 GCF_000003125.1_JCVI-TSTA1-3.0 GCA_000003125.1 GCF_000003125.1 True Talaromyces stipitatus ATCC 10500 ascomycetes T.stipitatus ATCC 10500 https://genome.ucsc.edu/h/GCF_000003125.1 -Talaromyces marneffei ATCC 18224 GenBank GCA_000001985.1 yes 0 452 0 Talaromyces marneffei ATCC 18224 FungiDB 441960 GCF_000001985.1_JCVI-PMFA1-2.0 GCA_000001985.1 GCF_000001985.1 True Talaromyces marneffei ATCC 18224 ascomycetes T.marneffei (ATCC 18224 2008 refseq) https://genome.ucsc.edu/h/GCF_000001985.1 -Coccidioides posadasii str. Silveira GenBank GCA_000170175.2 yes 0 54 0 Coccidioides posadasii str. Silveira FungiDB 443226 GCA_000170175.2_CPS2 GCA_000170175.2 False Coccidioides posadasii str. Silveira ascomycetes C.Silveira (Silveira 2011) https://genome.ucsc.edu/h/GCA_000170175.2 -Histoplasma capsulatum G186AR GenBank GCA_017355575.1 no 0 0 6 Histoplasma capsulatum G186AR FungiDB 447093 GCA_017355575.1_ASM1735557v1 GCA_017355575.1 False Histoplasma capsulatum G186AR ascomycetes H.capsulatum (G186AR 2021) https://genome.ucsc.edu/h/GCA_017355575.1 -Histoplasma capsulatum G217B GenBank GCA_017607445.1 yes 0 11 0 Histoplasma capsulatum G217B FungiDB 2902605 GCA_017607445.1_ASM1760744v1 GCA_017607445.1 False Histoplasma ohiense ascomycetes H.ohiense (G217B 2021) https://genome.ucsc.edu/h/GCA_017607445.1 -Blastomyces dermatitidis ATCC 26199 INSDC GCA_000166155.1 no 0 3282 0 Blastomyces dermatitidis ATCC 26199 FungiDB 447095 GCA_000166155.1_BD_ATCC26199_V2 GCA_000166155.1 False Blastomyces dermatitidis ATCC 26199 ascomycetes B.dermatitidis (ATCC 26199 2010) https://genome.ucsc.edu/h/GCA_000166155.1 -Aspergillus fumigatus A1163 GenBank GCA_000150145.1 no 0 55 0 Aspergillus fumigatus A1163 FungiDB 451804 GCA_000150145.1_ASM15014v1 GCA_000150145.1 False Aspergillus fumigatus A1163 ascomycetes A.fumigatus (A1163 2007) https://genome.ucsc.edu/h/GCA_000150145.1 -Coccidioides posadasii RMSCC 3488 GenBank GCA_000150055.1 no 0 6 0 Coccidioides posadasii RMSCC 3488 FungiDB 454284 GCA_000150055.1_ASM15005v1 GCA_000150055.1 False Coccidioides posadasii RMSCC 3488 ascomycetes C.posadasii (RMSCC 3488 2007) https://genome.ucsc.edu/h/GCA_000150055.1 -Coccidioides immitis RMSCC 3703 GenBank GCA_000150085.1 no 0 286 0 Coccidioides immitis RMSCC 3703 FungiDB 454286 GCA_000150085.1_ASM15008v1 GCA_000150085.1 False Coccidioides immitis RMSCC 3703 ascomycetes C.immitis (RMSCC 3703 2007) https://genome.ucsc.edu/h/GCA_000150085.1 -Coccidioides posadasii RMSCC 2133 GenBank GCA_000150185.1 no 0 53 0 Coccidioides posadasii RMSCC 2133 FungiDB 469470 GCA_000150185.1_ASM15018v1 GCA_000150185.1 False Coccidioides posadasii RMSCC 2133 ascomycetes C.posadasii (RMSCC 2133 2007) https://genome.ucsc.edu/h/GCA_000150185.1 -Coccidioides posadasii RMSCC 3700 GenBank GCA_000150215.1 no 0 241 0 Coccidioides posadasii RMSCC 3700 FungiDB 469471 GCA_000150215.1_ASM15021v1 GCA_000150215.1 False Coccidioides posadasii RMSCC 3700 ascomycetes C.posadasii (RMSCC 3700 2007) https://genome.ucsc.edu/h/GCA_000150215.1 -Coccidioides posadasii CPA 0001 GenBank GCA_000150245.1 no 0 255 0 Coccidioides posadasii CPA 0001 FungiDB 469472 GCA_000150245.1_ASM15024v1 GCA_000150245.1 False Coccidioides posadasii CPA 0001 ascomycetes C.posadasii (CPA 0001 2007) https://genome.ucsc.edu/h/GCA_000150245.1 -Enterocytozoon bieneusi H348 GenBank GCA_000209485.1 yes 1730 3 0 Enterocytozoon bieneusi H348 MicrosporidiaDB 481877 GCF_000209485.1_ASM20948v1 GCA_000209485.1 GCF_000209485.1 True Enterocytozoon bieneusi H348 microsporidians E.bieneusi (H348 2009) https://genome.ucsc.edu/h/GCF_000209485.1 -Paracoccidioides brasiliensis Pb03 GenBank GCA_000150475.2 yes 0 65 0 Paracoccidioides brasiliensis Pb03 FungiDB 482561 GCA_000150475.2_Paracocci_br_Pb03_V2 GCA_000150475.2 False Paracoccidioides brasiliensis Pb03 ascomycetes P.brasiliensis (Pb03 2014) https://genome.ucsc.edu/h/GCA_000150475.2 -Schizosaccharomyces octosporus yFS286 GenBank GCA_000150505.2 yes 0 5 0 Schizosaccharomyces octosporus yFS286 FungiDB 483514 GCF_000150505.1_SO6 GCA_000150505.2 GCF_000150505.1 True Schizosaccharomyces octosporus yFS286 ascomycetes S.octosporus yFS286 https://genome.ucsc.edu/h/GCF_000150505.1 -Babesia bovis T2Bo GenBank GCA_000165395.2 yes 0 3 3 Babesia bovis T2Bo PiroplasmaDB 484906 GCF_000165395.2_ASM16539v2 GCA_000165395.2 GCF_000165395.2 False Babesia bovis T2Bo apicomplexans B.bovis (T2Bo 2021) https://genome.ucsc.edu/h/GCF_000165395.2 -Coccidioides posadasii RMSCC 1037 GenBank GCA_000150555.1 no 0 633 0 Coccidioides posadasii RMSCC 1037 FungiDB 490065 GCA_000150555.1_ASM15055v1 GCA_000150555.1 False Coccidioides posadasii RMSCC 1037 ascomycetes C.posadasii (RMSCC 1037 2008) https://genome.ucsc.edu/h/GCA_000150555.1 -Coccidioides posadasii RMSCC 1038 GenBank GCA_000150585.1 no 0 551 0 Coccidioides posadasii RMSCC 1038 FungiDB 490066 GCA_000150585.1_ASM15058v1 GCA_000150585.1 False Coccidioides posadasii RMSCC 1038 ascomycetes C.posadasii (RMSCC 1038 2008) https://genome.ucsc.edu/h/GCA_000150585.1 -Coccidioides posadasii CPA 0020 GenBank GCA_000150615.1 no 0 620 0 Coccidioides posadasii CPA 0020 FungiDB 490068 GCA_000150615.1_ASM15061v1 GCA_000150615.1 False Coccidioides posadasii CPA 0020 ascomycetes C.posadasii (CPA 0020 2008) https://genome.ucsc.edu/h/GCA_000150615.1 -Coccidioides posadasii CPA 0066 GenBank GCA_000150645.1 no 0 473 0 Coccidioides posadasii CPA 0066 FungiDB 490069 GCA_000150645.1_ASM15064v1 GCA_000150645.1 False Coccidioides posadasii CPA 0066 ascomycetes C.posadasii (CPA 0066 2008) https://genome.ucsc.edu/h/GCA_000150645.1 -Penicillium rubens Wisconsin 54-1255 GenBank GCA_000226395.1 yes 0 49 0 Penicillium rubens Wisconsin 54-1255 FungiDB 500485 GCF_000226395.1_PenChr_Nov2007 GCA_000226395.1 GCF_000226395.1 True Penicillium rubens Wisconsin 54-1255 ascomycetes P.rubens (Wisconsin 54-1255 2008 refseq) https://genome.ucsc.edu/h/GCF_000226395.1 -Paracoccidioides lutzii Pb01 GenBank GCA_000150705.2 yes 0 110 0 Paracoccidioides lutzii Pb01 FungiDB 502779 GCF_000150705.2_Paracocci_br_Pb01_V2 GCA_000150705.2 GCF_000150705.2 True Paracoccidioides lutzii Pb01 ascomycetes P.lutzii Pb01 https://genome.ucsc.edu/h/GCF_000150705.2 -Paracoccidioides brasiliensis Pb18 GenBank GCA_000150735.2 no 0 57 0 Paracoccidioides brasiliensis Pb18 FungiDB 502780 GCF_000150735.1_Paracocci_br_Pb18_V2 GCA_000150735.2 GCF_000150735.1 True Paracoccidioides brasiliensis Pb18 ascomycetes P.brasiliensis Pb18 https://genome.ucsc.edu/h/GCF_000150735.1 -Toxoplasma gondii GT1 GenBank GCA_000149715.2 no 2034 0 14 Toxoplasma gondii GT1 ToxoDB 507601 GCA_000149715.2_TGGT1 GCA_000149715.2 False Toxoplasma gondii GT1 apicomplexans T.gondii (GT1 2013) https://genome.ucsc.edu/h/GCA_000149715.2 -Toxoplasma gondii ME49 GenBank GCF_000006565.2 yes 0 2248 14 Toxoplasma gondii ME49 ToxoDB 508771 GCF_000006565.2_TGA4 GCA_000006565.2 GCF_000006565.2 False Toxoplasma gondii ME49 Toxoplasma gondii (ME49 2013) https://genome.ucsc.edu/h/GCF_000006565.2 -Aspergillus oryzae RIB40 GenBank GCA_000184455.3 yes 3 0 8 Aspergillus oryzae RIB40 FungiDB 510516 GCF_000184455.2_ASM18445v3 GCA_000184455.3 GCF_000184455.2 True Aspergillus oryzae RIB40 ascomycetes A.oryzae RIB40 https://genome.ucsc.edu/h/GCF_000184455.2 -Neurospora tetrasperma FGSC 2508 GenBank GCA_000213175.1 yes 0 81 0 Neurospora tetrasperma FGSC 2508 FungiDB 510951 GCF_000213175.1_v2.0 GCA_000213175.1 GCF_000213175.1 True Neurospora tetrasperma FGSC 2508 ascomycetes N.tetrasperma FGSC 2508 https://genome.ucsc.edu/h/GCF_000213175.1 -Podospora anserina S mat+ INSDC GCA_000226545.1 yes 0 33 0 Podospora anserina S mat+ FungiDB 515849 GCF_000226545.1_ASM22654v1 GCA_000226545.1 GCF_000226545.1 True Podospora anserina S mat ascomycetes P.anserina S mat+ https://genome.ucsc.edu/h/GCF_000226545.1 -Nannizzia gypsea CBS 118893 INSDC GCA_000150975.2 yes 0 18 0 Nannizzia gypsea CBS 118893 FungiDB 535722 GCF_000150975.2_MS_CBS118893 GCA_000150975.2 GCF_000150975.2 True Nannizzia gypsea CBS 118893 ascomycetes N.gypsea CBS 118893 https://genome.ucsc.edu/h/GCF_000150975.2 -Histoplasma capsulatum H88 GenBank GCA_017310615.1 no 0 0 6 Histoplasma capsulatum H88 FungiDB 544711 GCA_017310615.1_ASM1731061v1 GCA_017310615.1 False Histoplasma capsulatum var. duboisii H88 ascomycetes H.capsulatum var. duboisii (H88 2021) https://genome.ucsc.edu/h/GCA_017310615.1 -Histoplasma capsulatum H143 GenBank GCA_000151035.1 no 0 48 0 Histoplasma capsulatum H143 FungiDB 544712 GCA_000151035.1_ASM15103v1 GCA_000151035.1 False Histoplasma capsulatum H143 ascomycetes H.capsulatum (H143 2009) https://genome.ucsc.edu/h/GCA_000151035.1 -Microsporum canis CBS 113480 INSDC GCA_000151145.1 yes 0 16 0 Microsporum canis CBS 113480 FungiDB 554155 GCF_000151145.1_ASM15114v1 GCA_000151145.1 GCF_000151145.1 True Microsporum canis CBS 113480 ascomycetes M.canis CBS 113480 https://genome.ucsc.edu/h/GCF_000151145.1 -Saccharomyces cerevisiae S288C GenBank GCA_000146045.2 yes 0 0 16 Saccharomyces cerevisiae S288C FungiDB 559292 GCF_000146045.2_R64 GCA_000146045.2 GCF_000146045.2 False Saccharomyces cerevisiae S288C baker's yeast S288C (2014) https://genome.ucsc.edu/h/GCF_000146045.2 -Blastomyces dermatitidis ER-3 INSDC GCA_000003525.2 yes 0 25 0 Blastomyces dermatitidis ER-3 FungiDB 559297 GCF_000003525.1_BD_ER3_V1 GCA_000003525.2 GCF_000003525.1 True Blastomyces dermatitidis ER-3 ascomycetes B.dermatitidis (ER-3 2009 refseq) https://genome.ucsc.edu/h/GCF_000003525.1 -Blastomyces gilchristii SLH14081 INSDC GCA_000003855.2 yes 0 100 0 Blastomyces gilchristii SLH14081 FungiDB 559298 GCF_000003855.2_BD_SLH14081_V1 GCA_000003855.2 GCF_000003855.2 True Blastomyces gilchristii SLH14081 ascomycetes B.gilchristii (SLH14081 2009 refseq) https://genome.ucsc.edu/h/GCF_000003855.2 -Trichophyton rubrum CBS 118892 INSDC GCA_000151425.1 yes 0 35 0 Trichophyton rubrum CBS 118892 FungiDB 559305 GCF_000151425.1_ASM15142v1 GCA_000151425.1 GCF_000151425.1 True Trichophyton rubrum CBS 118892 ascomycetes T.rubrum CBS 118892 https://genome.ucsc.edu/h/GCF_000151425.1 -Hyaloperonospora arabidopsidis Emoy2 GenBank GCA_000173235.2 yes 0 3044 0 Hyaloperonospora arabidopsidis Emoy2 FungiDB 559515 GCA_000173235.2_HyaAraEmoy2_2.0 GCA_000173235.2 False Hyaloperonospora arabidopsidis Emoy2 downy mildews (Emoy2 2012) https://genome.ucsc.edu/h/GCA_000173235.2 -Trichophyton equinum CBS 127.97 INSDC GCA_000151175.1 yes 0 123 0 Trichophyton equinum CBS 127.97 FungiDB 559882 GCA_000151175.1_ASM15117v1 GCA_000151175.1 False Trichophyton equinum CBS 127.97 ascomycetes T.equinum (CBS 127.97 2008) https://genome.ucsc.edu/h/GCA_000151175.1 -Neospora caninum Liverpool GenBank GCA_000208865.2 yes 52 0 14 Neospora caninum Liverpool ToxoDB 572307 GCF_000208865.1_ASM20886v2 GCA_000208865.2 GCF_000208865.1 True Neospora caninum Liverpool apicomplexans N.caninum (Liverpool 2011) https://genome.ucsc.edu/h/GCF_000208865.1 -Plasmodium falciparum Dd2 GenBank GCA_900632045.1 no 0 0 14 Plasmodium falciparum Dd2 PlasmoDB 5833 GCA_900632045.1_PfDd2-3 GCA_900632045.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632045.1 -Thermothelomyces thermophilus ATCC 42464 INSDC GCA_000226095.1 yes 0 0 7 Thermothelomyces thermophilus ATCC 42464 FungiDB 573729 GCF_000226095.1_ASM22609v1 GCA_000226095.1 GCF_000226095.1 True Thermothelomyces thermophilus ATCC 42464 ascomycetes T.thermophilus ATCC 42464 https://genome.ucsc.edu/h/GCF_000226095.1 -Candida dubliniensis CD36 INSDC GCA_000026945.1 yes 0 0 8 Candida dubliniensis CD36 FungiDB 573826 GCF_000026945.1_ASM2694v1 GCA_000026945.1 GCF_000026945.1 True Candida dubliniensis CD36 budding yeast C.dubliniensis CD36 https://genome.ucsc.edu/h/GCF_000026945.1 -Candida parapsilosis CDC317 GenBank GCA_000182765.2 yes 0 0 8 Candida parapsilosis CDC317 FungiDB 5480 GCF_000182765.1_ASM18276v2 GCA_000182765.2 GCF_000182765.1 False Candida parapsilosis budding yeast C.parapsilosis https://genome.ucsc.edu/h/GCF_000182765.1 -Tremella mesenterica DSM 1558 GenBank GCA_000271645.1 yes 0 45 0 Tremella mesenterica DSM 1558 FungiDB 578456 GCF_000271645.1_Treme1 GCA_000271645.1 GCF_000271645.1 True Tremella mesenterica DSM 1558 witches' butter https://genome.ucsc.edu/h/GCF_000271645.1 -Schizophyllum commune H4-8 INSDC GCA_000143185.2 yes 0 25 0 Schizophyllum commune H4-8 FungiDB 578458 GCF_000143185.2_Schco3 GCA_000143185.2 GCF_000143185.2 True Schizophyllum commune H4-8 basidiomycetes S.commune (v2 H4-8 2022) https://genome.ucsc.edu/h/GCF_000143185.2 -Nosema ceranae BRL01 GenBank GCA_000182985.1 yes 5465 0 0 Nosema ceranae BRL01 MicrosporidiaDB 578460 GCF_000182985.1_ASM18298v1 GCA_000182985.1 GCF_000182985.1 True Nosema ceranae BRL01 microsporidians N.ceranae (BRL01 2009) https://genome.ucsc.edu/h/GCF_000182985.1 -Nosema bombycis CQ1 GenBank GCA_000383075.1 yes 0 1607 0 Nosema bombycis CQ1 MicrosporidiaDB 578461 GCA_000383075.1_NosBomCQ1_v1.0 GCA_000383075.1 False Nosema bombycis CQ1 microsporidians N.bombycis (CQ1 2013) https://genome.ucsc.edu/h/GCA_000383075.1 -Allomyces macrogynus ATCC 38327 GenBank GCA_000151295.1 yes 0 101 0 Allomyces macrogynus ATCC 38327 FungiDB 578462 GCA_000151295.1_A_macrogynus_V3 GCA_000151295.1 False Allomyces macrogynus ATCC 38327 blastocladiomycotan A.macrogynus (ATCC 38327 2010) https://genome.ucsc.edu/h/GCA_000151295.1 -Plasmodium berghei ANKA GenBank GCA_900002375.2 yes 5 0 14 Plasmodium berghei ANKA PlasmoDB 5823 GCF_900002375.2_GCA_900002375 GCA_900002375.2 GCF_900002375.2 False Plasmodium berghei ANKA apicomplexans P.berghei (ANKA 2019) https://genome.ucsc.edu/h/GCF_900002375.2 -Plasmodium falciparum NF54 INSDC GCA_009761475.1 no 0 28 0 Plasmodium falciparum NF54 PlasmoDB 5833 GCA_009761475.1_NF54_v1 GCA_009761475.1 False Plasmodium falciparum malaria parasite P. falciparum (NF54 2019) https://genome.ucsc.edu/h/GCA_009761475.1 -Plasmodium knowlesi strain H GenBank GCA_000006355.3 yes 148 0 14 Plasmodium knowlesi strain H PlasmoDB 5851 GCF_000006355.2_GCA_000006355.2 GCA_000006355.3 GCF_000006355.2 False Plasmodium knowlesi strain H apicomplexans P.knowlesi strain (H 2020) https://genome.ucsc.edu/h/GCF_000006355.2 -Giardia Assemblage B isolate GS GenBank GCA_000182405.1 no 2931 0 0 Giardia Assemblage B isolate GS GiardiaDB 598745 GCA_000182405.1_ASM18240v1 GCA_000182405.1 False Giardia intestinalis ATCC 50581 diplomonads (GS/M clone H7 2009) https://genome.ucsc.edu/h/GCA_000182405.1 -Aspergillus carbonarius ITEM 5010 GenBank GCA_001990825.1 yes 0 829 0 Aspergillus carbonarius ITEM 5010 FungiDB 602072 GCA_001990825.1_Aspca3 GCA_001990825.1 False Aspergillus carbonarius ITEM 5010 ascomycetes A.carbonaris (ITEM 5010 2017) https://genome.ucsc.edu/h/GCA_001990825.1 -Puccinia triticina 1-1 BBBD Race 1 GenBank GCA_000151525.2 yes 14818 0 0 Puccinia triticina 1-1 BBBD Race 1 FungiDB 630390 GCA_000151525.2_P_triticina_1_1_V2 GCA_000151525.2 False Puccinia triticina 1-1 BBBD Race 1 wheat leaf rust (1-1 BBBD Race 1 2016) https://genome.ucsc.edu/h/GCA_000151525.2 -Gaeumannomyces tritici R3-111a-1 INSDC GCA_000145635.1 yes 0 513 0 Gaeumannomyces tritici R3-111a-1 FungiDB 644352 GCF_000145635.1_Gae_graminis_V2 GCA_000145635.1 GCF_000145635.1 True Gaeumannomyces tritici R3-111a-1 ascomycetes G.tritici R3-111a-1 https://genome.ucsc.edu/h/GCF_000145635.1 -Magnaporthiopsis poae ATCC 64411 INSDC GCA_000193285.1 yes 0 205 0 Magnaporthiopsis poae ATCC 64411 FungiDB 644358 GCA_000193285.1_Mag_poae_ATCC_64411_V1 GCA_000193285.1 False Magnaporthiopsis poae ATCC 64411 ascomycetes M.poae (ATCC 64411 2011) https://genome.ucsc.edu/h/GCA_000193285.1 -Colletotrichum graminicola M1.001 INSDC GCA_000149035.1 yes 0 653 0 Colletotrichum graminicola M1.001 FungiDB 645133 GCF_000149035.1_C_graminicola_M1_001_V1 GCA_000149035.1 GCF_000149035.1 True Colletotrichum graminicola M1.001 ascomycetes C.graminicola M1.001 https://genome.ucsc.edu/h/GCF_000149035.1 -Spizellomyces punctatus DAOM BR117 GenBank GCA_000182565.2 yes 0 38 0 Spizellomyces punctatus DAOM BR117 FungiDB 645134 GCF_000182565.1_S_punctatus_V1 GCA_000182565.2 GCF_000182565.1 True Spizellomyces punctatus DAOM BR117 chytrids S.punctatus DAOM BR117 https://genome.ucsc.edu/h/GCF_000182565.1 -Trichophyton tonsurans CBS 112818 INSDC GCA_000151455.1 yes 0 110 0 Trichophyton tonsurans CBS 112818 FungiDB 647933 GCA_000151455.1_ASM15145v1 GCA_000151455.1 False Trichophyton tonsurans CBS 112818 ascomycetes T.tonsurans (CBS 112818 2009) https://genome.ucsc.edu/h/GCA_000151455.1 -Pseudogymnoascus destructans 20631-21 INSDC GCA_000184105.1 yes 0 1846 0 Pseudogymnoascus destructans 20631-21 FungiDB 658429 GCF_000184105.1_Geom_destructans_V1 GCA_000184105.1 GCF_000184105.1 True Pseudogymnoascus destructans 20631-21 ascomycetes P.destructans (20631-21 2010) https://genome.ucsc.edu/h/GCF_000184105.1 -Giardia Assemblage E isolate P15 GenBank GCA_000182665.1 no 820 0 0 Giardia Assemblage E isolate P15 GiardiaDB 658858 GCA_000182665.1_ASM18266v1 GCA_000182665.1 False Giardia lamblia P15 diplomonads (P15 2010) https://genome.ucsc.edu/h/GCA_000182665.1 -Fusarium oxysporum f. sp. conglutinans Fo5176 INSDC GCA_014154955.1 no 0 4 15 Fusarium oxysporum f. sp. conglutinans Fo5176 FungiDB 100902 GCA_014154955.1_SMRT_HiC_Fo5176 GCA_014154955.1 False Fusarium oxysporum f. sp. conglutinans ascomycetes F.oxysporum f. sp. conglutinans (Fo5176 2020) https://genome.ucsc.edu/h/GCA_014154955.1 -Fusarium oxysporum Fo47 GenBank GCA_000271705.2 no 0 124 0 Fusarium oxysporum Fo47 FungiDB 660027 GCA_000271705.2_FO_Fo47_V1 GCA_000271705.2 False Fusarium oxysporum Fo47 ascomycetes F.oxysporum (Fo47 2014) https://genome.ucsc.edu/h/GCA_000271705.2 -Fusarium oxysporum NRRL 32931 GenBank GCA_000271745.2 no 0 168 0 Fusarium oxysporum NRRL 32931 FungiDB 660029 GCF_000271745.1_FO_FOSC_3_a_V1 GCA_000271745.2 GCF_000271745.1 True Fusarium oxysporum NRRL 32931 ascomycetes F.oxysporum (NRRL 32931 2014 refseq) https://genome.ucsc.edu/h/GCF_000271745.1 -Fusarium vanettenii 77-13-4 INSDC GCA_000151355.1 yes 0 209 0 Fusarium vanettenii 77-13-4 FungiDB 660122 GCF_000151355.1_v2.0 GCA_000151355.1 GCF_000151355.1 True Fusarium vanettenii 77-13-4 ascomycetes F.vanettenii 77-13-4 https://genome.ucsc.edu/h/GCF_000151355.1 -Sclerotinia sclerotiorum 1980 UF-70 GenBank GCA_001857865.1 yes 0 0 16 Sclerotinia sclerotiorum 1980 UF-70 FungiDB 665079 GCA_001857865.1_ASM185786v1 GCA_001857865.1 False Sclerotinia sclerotiorum 1980 UF-70 ascomycetes S.sclerotiorum UF-70 (1980 2016) https://genome.ucsc.edu/h/GCA_001857865.1 -Trypanosoma brucei gambiense DAL972 GenBank GCA_000210295.1 no 0 0 11 Trypanosoma brucei gambiense DAL972 TriTrypDB 679716 GCF_000210295.1_ASM21029v1 GCA_000210295.1 GCF_000210295.1 True Trypanosoma brucei gambiense DAL972 Trypanosoma brucei gambiense (Dal972 MHOM/CI/86/DAL972 2009 kinetoplastids) https://genome.ucsc.edu/h/GCF_000210295.1 -Aspergillus aculeatus ATCC 16872 GenBank GCA_001890905.1 yes 0 660 0 Aspergillus aculeatus ATCC 16872 FungiDB 690307 GCF_001890905.1_Aspac1 GCA_001890905.1 GCF_001890905.1 True Aspergillus aculeatus ATCC 16872 ascomycetes A.aculeatus ATCC 16872 https://genome.ucsc.edu/h/GCF_001890905.1 -Saprolegnia parasitica CBS 223.65 GenBank GCA_000151545.2 yes 0 1442 0 Saprolegnia parasitica CBS 223.65 FungiDB 695850 GCF_000151545.1_ASM15154v2 GCA_000151545.2 GCF_000151545.1 True Saprolegnia parasitica CBS 223.65 oomycetes (CBS 223.65 2014) https://genome.ucsc.edu/h/GCF_000151545.1 -Naegleria gruberi strain NEG-M INSDC GCA_000004985.1 yes 0 784 0 Naegleria gruberi strain NEG-M AmoebaDB 5762 GCF_000004985.1_V1.0 GCA_000004985.1 GCF_000004985.1 True Naegleria gruberi N.gruberi (NEG-M 2010) https://genome.ucsc.edu/h/GCF_000004985.1 -Rhizophagus irregularis DAOM 181602=DAOM 197198 GenBank GCA_020716725.1 yes 0 0 33 Rhizophagus irregularis DAOM 181602=DAOM 197198 FungiDB 588596 GCA_020716725.1_ASM2071672v1 GCA_020716725.1 False Rhizophagus irregularis glomeromycetes (DAOM-197198 2021) https://genome.ucsc.edu/h/GCA_020716725.1 -Melampsora larici-populina 98AG31 GenBank GCA_000204055.1 yes 0 462 0 Melampsora larici-populina 98AG31 FungiDB 747676 GCF_000204055.1_v1.0 GCA_000204055.1 GCF_000204055.1 True Melampsora larici-populina 98AG31 rust fungi M.larici-populina 98AG31 https://genome.ucsc.edu/h/GCF_000204055.1 -Mucor lusitanicus CBS 277.49 GenBank GCA_001638945.1 yes 0 21 0 Mucor lusitanicus CBS 277.49 FungiDB 747725 GCA_001638945.1_Mucci2 GCA_001638945.1 False Mucor lusitanicus CBS 277.49 fungi M.lusitanicus (CBS 277.49 2016) https://genome.ucsc.edu/h/GCA_001638945.1 -Colletotrichum higginsianum IMI 349063 INSDC GCA_001672515.1 yes 0 14 11 Colletotrichum higginsianum IMI 349063 FungiDB 759273 GCF_001672515.1_ASM167251v1 GCA_001672515.1 GCF_001672515.1 True Colletotrichum higginsianum IMI 349063 ascomycetes C.higginsianum IMI 349063 https://genome.ucsc.edu/h/GCF_001672515.1 -Phytophthora parasitica INRA-310 GenBank GCA_000247585.2 yes 0 708 0 Phytophthora parasitica INRA-310 FungiDB 761204 GCF_000247585.1_PP_INRA-310_V2 GCA_000247585.2 GCF_000247585.1 True Phytophthora nicotianae INRA-310 black shank of tobacco agent (INRA-310 2013) https://genome.ucsc.edu/h/GCF_000247585.1 -Phycomyces blakesleeanus NRRL 1555(-) GenBank GCA_001638985.2 yes 0 80 0 Phycomyces blakesleeanus NRRL 1555(-) FungiDB 763407 GCF_001638985.1_Phybl2 GCA_001638985.2 GCF_001638985.1 True Phycomyces blakesleeanus NRRL 1555- fungi P.blakesleeanus NRRL 1555(-) https://genome.ucsc.edu/h/GCF_001638985.1 -Phytophthora capsici LT1534 INSDC GCA_016618375.1 yes 0 782 0 Phytophthora capsici LT1534 FungiDB 4784 GCA_016618375.1_Pcap_4.1 GCA_016618375.1 False Phytophthora capsici downy mildews (LT1534-B 2021) https://genome.ucsc.edu/h/GCA_016618375.1 -Aspergillus brasiliensis CBS 101740 GenBank GCA_001889945.1 yes 0 103 0 Aspergillus brasiliensis CBS 101740 FungiDB 767769 GCA_001889945.1_Aspbr1 GCA_001889945.1 GCF_001889945.1 True Aspergillus brasiliensis CBS 101740 ascomycetes A.brasiliensis (CBS 101740 2016) https://genome.ucsc.edu/h/GCA_001889945.1 -Aspergillus tubingensis CBS 134.48 GenBank GCA_001890745.1 yes 0 33 0 Aspergillus tubingensis CBS 134.48 FungiDB 767770 GCA_001890745.1_Asptu1 GCA_001890745.1 False Aspergillus tubingensis CBS 134.48 ascomycetes A.tubingensis (CBS 134.48 2016) https://genome.ucsc.edu/h/GCA_001890745.1 -Sordaria macrospora k-hell GenBank GCF_000182805.3 yes 0 1212 0 Sordaria macrospora k-hell FungiDB 771870 GCF_000182805.3_ASM18280v2 GCA_000182805.2 GCF_000182805.3 False Sordaria macrospora k-hell ascomycetes S.macrospora (v3 k-hell 2012) https://genome.ucsc.edu/h/GCF_000182805.3 -Cenococcum geophilum 1.58 GenBank GCA_001692895.1 yes 0 268 0 Cenococcum geophilum 1.58 FungiDB 794803 GCA_001692895.1_Cenococcum_geophilum_1.58_v2.0 GCA_001692895.1 GCF_001692895.1 True Cenococcum geophilum 1.58 ascomycetes C.geophilum (1.58 2016) https://genome.ucsc.edu/h/GCA_001692895.1 -Exophiala dermatitidis NIH/UT8656 INSDC GCA_000230625.1 yes 0 10 0 Exophiala dermatitidis NIH/UT8656 FungiDB 858893 GCF_000230625.1_Exop_derm_V1 GCA_000230625.1 GCF_000230625.1 True Exophiala dermatitidis NIH/UT8656 ascomycetes E.dermatitidis NIH/UT8656 https://genome.ucsc.edu/h/GCF_000230625.1 -Leishmania major strain LV39c5 GenBank GCA_000331345.1 no 0 773 36 Leishmania major strain LV39c5 TriTrypDB 860569 GCA_000331345.1_Leishmania_major_LV39c5-1.0.1 GCA_000331345.1 False Leishmania major strain LV39c5 Leishmania major strain (LV39c5 2013) https://genome.ucsc.edu/h/GCA_000331345.1 -Leishmania major strain SD 75.1 GenBank GCA_000250755.2 no 0 36 0 Leishmania major strain SD 75.1 TriTrypDB 860570 GCA_000250755.2_Leishmania_major_SD_75.1-1.1.1 GCA_000250755.2 False Leishmania major strain SD 75.1 Leishmania major strain (SD 75.1 2012) https://genome.ucsc.edu/h/GCA_000250755.2 -Theileria orientalis strain Shintoku GenBank GCA_000740895.1 yes 0 0 4 Theileria orientalis strain Shintoku PiroplasmaDB 869250 GCF_000740895.1_ASM74089v1 GCA_000740895.1 GCF_000740895.1 True Theileria orientalis strain Shintoku apicomplexans T.orientalis strain (Shintoku 2012) https://genome.ucsc.edu/h/GCF_000740895.1 -Encephalitozoon intestinalis ATCC 50506 GenBank GCA_000146465.1 yes 0 0 11 Encephalitozoon intestinalis ATCC 50506 MicrosporidiaDB 876142 GCF_000146465.1_ASM14646v1 GCA_000146465.1 GCF_000146465.1 True Encephalitozoon intestinalis ATCC 50506 microsporidians E.intestinalis ATCC 50506 https://genome.ucsc.edu/h/GCF_000146465.1 -Epichloe festucae Fl1 INSDC GCA_003814445.1 yes 0 0 7 Epichloe festucae Fl1 FungiDB 877507 GCA_003814445.1_ASM381444v1 GCA_003814445.1 False Epichloe festucae Fl1 ascomycetes E.festucae (Fl1 2018) https://genome.ucsc.edu/h/GCA_003814445.1 -Nematocida parisii ERTm1 GenBank GCA_000250985.1 yes 0 65 0 Nematocida parisii ERTm1 MicrosporidiaDB 881290 GCF_000250985.1_Nema_parisii_ERTm1_V3 GCA_000250985.1 GCF_000250985.1 True Nematocida parisii ERTm1 microsporidians N.parisii ERTm1 https://genome.ucsc.edu/h/GCF_000250985.1 -Entamoeba histolytica DS4-868 INSDC GCA_018466815.1 no 0 1177 0 Entamoeba histolytica DS4-868 AmoebaDB 885310 GCA_018466815.1_ASM1846681v1 GCA_018466815.1 False Entamoeba histolytica DS4-868 E.histolytica (DS4-868 2021) https://genome.ucsc.edu/h/GCA_018466815.1 -Entamoeba histolytica KU27 GenBank GCA_000338855.1 no 0 1796 0 Entamoeba histolytica KU27 AmoebaDB 885311 GCA_000338855.1_EHA_ku27_v1 GCA_000338855.1 False Entamoeba histolytica KU27 E.histolytica (KU27 2013) https://genome.ucsc.edu/h/GCA_000338855.1 -Entamoeba histolytica KU48 INSDC GCA_019059535.1 no 0 1168 0 Entamoeba histolytica KU48 AmoebaDB 885312 GCA_019059535.1_ASM1905953v1 GCA_019059535.1 False Entamoeba histolytica KU48 E.histolytica (KU48 2021) https://genome.ucsc.edu/h/GCA_019059535.1 -Entamoeba histolytica KU50 INSDC GCA_020283535.1 no 0 1063 0 Entamoeba histolytica KU50 AmoebaDB 885313 GCA_020283535.1_ASM2028353v1 GCA_020283535.1 False Entamoeba histolytica KU50 E.histolytica (KU50 2021) https://genome.ucsc.edu/h/GCA_020283535.1 -Entamoeba histolytica HM-3:IMSS GenBank GCA_000346345.1 no 0 1880 0 Entamoeba histolytica HM-3:IMSS AmoebaDB 885315 GCA_000346345.1_EHA.strHM3_v1 GCA_000346345.1 False Entamoeba histolytica HM-3:IMSS E.histolytica (HM-3:IMSS 2013) https://genome.ucsc.edu/h/GCA_000346345.1 -Entamoeba histolytica HM-1:IMSS-A GenBank GCA_000365475.1 no 0 1685 0 Entamoeba histolytica HM-1:IMSS-A AmoebaDB 885318 GCA_000365475.1_EHA_CA_v1 GCA_000365475.1 False Entamoeba histolytica HM-1:IMSS-A E.histolytica (HM-1:IMSS-A 2013) https://genome.ucsc.edu/h/GCA_000365475.1 -Entamoeba histolytica HM-1:IMSS-B GenBank GCA_000344925.1 no 0 1938 0 Entamoeba histolytica HM-1:IMSS-B AmoebaDB 885319 GCA_000344925.1_EHA_CB_v1 GCA_000344925.1 False Entamoeba histolytica HM-1:IMSS-B E.histolytica (HM-1:IMSS-B 2013) https://genome.ucsc.edu/h/GCA_000344925.1 -Encephalitozoon hellem ATCC 50504 GenBank GCA_000277815.3 yes 0 0 12 Encephalitozoon hellem ATCC 50504 MicrosporidiaDB 907965 GCF_000277815.2_ASM27781v3 GCA_000277815.3 GCF_000277815.2 True Encephalitozoon hellem ATCC 50504 microsporidians E.hellem ATCC 50504 https://genome.ucsc.edu/h/GCF_000277815.2 -Trypanosoma cruzi JR cl. 4 GenBank GCA_000331405.1 no 14752 560 0 Trypanosoma cruzi JR cl. 4 TriTrypDB 914063 GCA_000331405.1_Trypanosoma_cruzi_JR_cl4-1.1.4 GCA_000331405.1 False Trypanosoma cruzi JR cl. 4 Trypanosoma cruzi (JR cl. 4 2013) https://genome.ucsc.edu/h/GCA_000331405.1 -Leishmania mexicana MHOM/GT/2001/U1103 GenBank GCA_000234665.4 yes 554 0 34 Leishmania mexicana MHOM/GT/2001/U1103 TriTrypDB 929439 GCF_000234665.1_ASM23466v4 GCA_000234665.4 GCF_000234665.1 True Leishmania mexicana MHOM/GT/2001/U1103 Leishmania mexicana (MHOM/GT/2001/U1103 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000234665.1 -Toxoplasma gondii VAND GenBank GCA_000224845.2 no 0 2137 0 Toxoplasma gondii VAND ToxoDB 933077 GCA_000224845.2_TGVAND_v2 GCA_000224845.2 False Toxoplasma gondii VAND apicomplexans T.gondii (VAND 2014) https://genome.ucsc.edu/h/GCA_000224845.2 -Toxoplasma gondii RUB GenBank GCA_000224805.2 no 0 2424 0 Toxoplasma gondii RUB ToxoDB 935652 GCA_000224805.2_TGRUB_v2 GCA_000224805.2 False Toxoplasma gondii RUB apicomplexans T.gondii (RUB 2014) https://genome.ucsc.edu/h/GCA_000224805.2 -Nematocida parisii ERTm3 GenBank GCA_000190615.1 no 0 53 0 Nematocida parisii ERTm3 MicrosporidiaDB 935791 GCA_000190615.1_Nema_parisii_ERTm3_V1 GCA_000190615.1 False Nematocida parisii ERTm3 microsporidians N.parisii (ERTm3 2011) https://genome.ucsc.edu/h/GCA_000190615.1 -Toxoplasma gondii MAS GenBank GCA_000224865.2 no 0 2180 0 Toxoplasma gondii MAS ToxoDB 943118 GCA_000224865.2_TGMAS1_v2 GCA_000224865.2 False Toxoplasma gondii MAS apicomplexans T.gondii (MAS 2014) https://genome.ucsc.edu/h/GCA_000224865.2 -Toxoplasma gondii p89 GenBank GCA_000224885.2 no 0 2150 0 Toxoplasma gondii p89 ToxoDB 943119 GCA_000224885.2_TGP89A_v02 GCA_000224885.2 False Toxoplasma gondii p89 apicomplexans T.gondii (p89 2014) https://genome.ucsc.edu/h/GCA_000224885.2 -Toxoplasma gondii TgCATBr9 GenBank GCA_000224825.2 no 0 2452 0 Toxoplasma gondii TgCATBr9 ToxoDB 943120 GCA_000224825.2_TGCATBR9_v2 GCA_000224825.2 False Toxoplasma gondii TgCATBr9 apicomplexans T.gondii (TgCATBr9 2018) https://genome.ucsc.edu/h/GCA_000224825.2 -Toxoplasma gondii TgCATBr5 GenBank GCA_000259835.1 no 6995 0 0 Toxoplasma gondii TgCATBr5 ToxoDB 943121 GCA_000259835.1_TGCATBR5 GCA_000259835.1 False Toxoplasma gondii TgCATBr5 apicomplexans T.gondii (TgCATBr5 2011) https://genome.ucsc.edu/h/GCA_000259835.1 -Toxoplasma gondii CAST GenBank GCA_000256705.2 no 0 2656 0 Toxoplasma gondii CAST ToxoDB 943122 GCA_000256705.2_TGCAST_v2 GCA_000256705.2 False Toxoplasma gondii CAST apicomplexans T.gondii (CAST 2018) https://genome.ucsc.edu/h/GCA_000256705.2 -Toxoplasma gondii FOU GenBank GCA_000224905.2 no 0 2869 0 Toxoplasma gondii FOU ToxoDB 943167 GCA_000224905.2_TGFOU1v02 GCA_000224905.2 False Toxoplasma gondii FOU apicomplexans T.gondii (FOU 2014) https://genome.ucsc.edu/h/GCA_000224905.2 -Vavraia culicis subsp. floridensis GenBank GCA_000192795.1 yes 0 379 0 Vavraia culicis subsp. floridensis MicrosporidiaDB 948595 GCF_000192795.1_Vavr_culi_floridensis_V1 GCA_000192795.1 GCF_000192795.1 True Vavraia culicis subsp. floridensis microsporidians V.culicis subsp. floridensis https://genome.ucsc.edu/h/GCF_000192795.1 -Leishmania donovani BPK282A1 GenBank GCA_000227135.2 yes 0 0 36 Leishmania donovani BPK282A1 TriTrypDB 5661 GCF_000227135.1_ASM22713v2 GCA_000227135.2 GCF_000227135.1 True Leishmania donovani Leishmania donovani (BPK282A1 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000227135.1 -Cordyceps militaris CM01 INSDC GCA_000225605.1 no 0 32 0 Cordyceps militaris CM01 FungiDB 983644 GCF_000225605.1_CmilitarisCM01_v01 GCA_000225605.1 GCF_000225605.1 True Cordyceps militaris CM01 ascomycetes C.militaris CM01 https://genome.ucsc.edu/h/GCF_000225605.1 -Plenodomus lingam JN3 INSDC GCA_000230375.1 yes 0 76 0 Plenodomus lingam JN3 FungiDB 985895 GCF_000230375.1_ASM23037v1 GCA_000230375.1 GCF_000230375.1 True Plenodomus lingam JN3 blackleg of rapeseed fungus https://genome.ucsc.edu/h/GCF_000230375.1 -Encephalitozoon cuniculi EC1 GenBank GCA_000221285.2 no 0 0 12 Encephalitozoon cuniculi EC1 MicrosporidiaDB 986730 GCA_000221285.2_Ence_cuni_EC1_V1 GCA_000221285.2 False Encephalitozoon cuniculi EC1 microsporidians E.cuniculi (EC1 2011) https://genome.ucsc.edu/h/GCA_000221285.2 -Encephalitozoon cuniculi EC2 GenBank GCA_000221265.2 no 0 0 16 Encephalitozoon cuniculi EC2 MicrosporidiaDB 989654 GCA_000221265.2_Ence_cuni_EC2_V1 GCA_000221265.2 False Encephalitozoon cuniculi EC2 microsporidians E.cuniculi (EC2 2011) https://genome.ucsc.edu/h/GCA_000221265.2 -Encephalitozoon cuniculi EC3 GenBank GCA_000221245.2 no 0 0 15 Encephalitozoon cuniculi EC3 MicrosporidiaDB 989655 GCA_000221245.2_Ence_cuni_EC3_V1 GCA_000221245.2 False Encephalitozoon cuniculi EC3 microsporidians E.cuniculi (EC3 2011) https://genome.ucsc.edu/h/GCA_000221245.2 -Vittaforma corneae ATCC 50505 GenBank GCA_000231115.1 yes 0 220 0 Vittaforma corneae ATCC 50505 MicrosporidiaDB 993615 GCF_000231115.1_Vitt_corn_V1 GCA_000231115.1 GCF_000231115.1 True Vittaforma corneae ATCC 50505 microsporidians V.corneae ATCC 50505 https://genome.ucsc.edu/h/GCF_000231115.1 -Sporisorium reilianum SRZ2 GenBank GCA_000230245.1 yes 21 0 23 Sporisorium reilianum SRZ2 FungiDB 999809 GCA_000230245.1_ASM23024v1 GCA_000230245.1 False Sporisorium reilianum SRZ2 smut fungi S.reilianum SRZ2 (2011) https://genome.ucsc.edu/h/GCA_000230245.1 -Aedes aegypti Aag2 INSDC GCA_021653915.1 no 0 3752 0 Aedes aegypti Aag2 VectorBase 7159 GCA_021653915.1_ASM2165391v1 GCA_021653915.1 False Aedes aegypti yellow fever mosquito (Aag2 2022) https://genome.ucsc.edu/h/GCA_021653915.1 -Aedes aegypti LVP_AGWG INSDC GCA_002204515.1 yes 0 2306 3 Aedes aegypti LVP_AGWG VectorBase 7159 GCF_002204515.2_AaegL5.0 GCA_002204515.1 GCF_002204515.2 False Aedes aegypti yellow fever mosquito (LVP_AGWG 2017 refseq) https://genome.ucsc.edu/h/GCF_002204515.2 -Aedes albopictus C6/36 cell line INSDC GCF_001876365.2 no 0 2434 0 Aedes albopictus C6/36 cell line VectorBase 7160 GCF_001876365.2_canu_80X_arrow2.2 GCA_001876365.2 GCF_001876365.2 False Aedes albopictus Asian tiger mosquito (C6/36 2017 refseq) https://genome.ucsc.edu/h/GCF_001876365.2 -Aedes albopictus Foshan FPA INSDC GCA_006496715.1 yes 0 2196 0 Aedes albopictus Foshan FPA VectorBase 7160 GCF_006496715.2_Aalbo_primary.1 GCA_006496715.1 GCF_006496715.2 False Aedes albopictus Asian tiger mosquito (v2 FPA 2019) https://genome.ucsc.edu/h/GCF_006496715.2 -Anopheles albimanus STECLA INSDC GCA_000349125.2 no 0 196 5 Anopheles albimanus STECLA VectorBase 7167 GCA_000349125.2_Anop_albi_ALBI9_A_V2 GCA_000349125.2 False Anopheles albimanus mosquito A.albimanus (ALBI9_A 2017) https://genome.ucsc.edu/h/GCA_000349125.2 -Anopheles albimanus STECLA 2020 INSDC GCF_013758885.1 yes 0 4 3 Anopheles albimanus STECLA 2020 VectorBase 7167 GCF_013758885.1_VT_AalbS3_pri_1.0 GCA_013758885.1 GCF_013758885.1 True Anopheles albimanus mosquito A.albimanus (STELCA 2020) https://genome.ucsc.edu/h/GCF_013758885.1 -Alternaria alternata SRC1lrK2f INSDC GCA_001642055.1 yes 0 79 0 Alternaria alternata SRC1lrK2f FungiDB 5599 GCF_001642055.1_Altal1 GCA_001642055.1 GCF_001642055.1 True Alternaria alternata ascomycetes A.alternata https://genome.ucsc.edu/h/GCF_001642055.1 -Anopheles aquasalis AaquGF1 INSDC GCF_943734665.1 yes 0 86 4 Anopheles aquasalis AaquGF1 VectorBase 42839 GCF_943734665.1_idAnoAquaMG_Q_19 GCA_943734665.1 GCF_943734665.1 True Anopheles aquasalis mosquito A.aquasalis (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734665.1 -Anopheles arabiensis DONGOLA 2021 INSDC GCF_016920715.1 yes 0 98 3 Anopheles arabiensis DONGOLA 2021 VectorBase 7173 GCF_016920715.1_AaraD3 GCA_016920715.1 GCF_016920715.1 False Anopheles arabiensis mosquito A.arabiensis (DONGOLA 2021) https://genome.ucsc.edu/h/GCF_016920715.1 -Anopheles arabiensis Dongola INSDC GCA_000349185.1 no 0 1214 0 Anopheles arabiensis Dongola VectorBase 7173 GCA_000349185.1_Anop_arab_DONG5_A_V1 GCA_000349185.1 False Anopheles arabiensis mosquito A.arabiensis (DONG5_A 2013) https://genome.ucsc.edu/h/GCA_000349185.1 -Aphanomyces astaci strain APO3 GenBank GCA_000520075.1 yes 0 835 0 Aphanomyces astaci strain APO3 FungiDB 112090 GCF_000520075.1_Apha_asta_APO3_V1 GCA_000520075.1 GCF_000520075.1 True Aphanomyces astaci oomycetes (APO3 2014) https://genome.ucsc.edu/h/GCF_000520075.1 -Acanthamoeba astronyxis Unknown GenBank GCA_000826245.1 yes 0 98248 0 Acanthamoeba astronyxis Unknown AmoebaDB 65658 GCA_000826245.1_Acanthamoeba_astronyxis GCA_000826245.1 False Acanthamoeba astronyxis A.astronyxis (2015) https://genome.ucsc.edu/h/GCA_000826245.1 -Anopheles atroparvus EBRO INSDC GCA_000473505.1 yes 0 1315 5 Anopheles atroparvus EBRO VectorBase 41427 GCA_000473505.1_Anop_atro_EBRO_V1 GCA_000473505.1 False Anopheles atroparvus mosquito A.atroparvus (EBRO 2013) https://genome.ucsc.edu/h/GCA_000473505.1 -Anopheles bellator AbelBR1 INSDC GCF_943735745.2 yes 0 2982 3 Anopheles bellator AbelBR1 VectorBase 139047 GCF_943735745.2_idAnoBellAS_SP24_06.2 GCA_943735745.2 GCF_943735745.2 False Anopheles bellator mosquito A.bellator (2023) https://genome.ucsc.edu/h/GCF_943735745.2 -Acanthamoeba castellanii C3 INSDC GCA_021020595.1 no 0 174 0 Acanthamoeba castellanii C3 AmoebaDB 5755 GCA_021020595.1_ASM2102059v1 GCA_021020595.1 False Acanthamoeba castellanii A.castellanii (C3 2021) https://genome.ucsc.edu/h/GCA_021020595.1 -Acanthamoeba castellanii Ma GenBank GCA_000826485.1 no 0 221748 0 Acanthamoeba castellanii Ma AmoebaDB 5755 GCA_000826485.1_Acanthamoeba_castellanii GCA_000826485.1 False Acanthamoeba castellanii A.castellanii (2015) https://genome.ucsc.edu/h/GCA_000826485.1 -Acanthamoeba castellanii str. Neff 2021 INSDC GCA_021020605.1 no 0 111 0 Acanthamoeba castellanii str. Neff 2021 AmoebaDB 5755 GCA_021020605.1_ASM2102060v1 GCA_021020605.1 False Acanthamoeba castellanii A.castellanii (Neff 2021) https://genome.ucsc.edu/h/GCA_021020605.1 -Anopheles christyi ACHKN1017 INSDC GCA_000349165.1 yes 0 30369 0 Anopheles christyi ACHKN1017 VectorBase 43041 GCA_000349165.1_Anop_chri_ACHKN1017_V1 GCA_000349165.1 False Anopheles christyi mosquito A.christyi (ACHKN1017 2013) https://genome.ucsc.edu/h/GCA_000349165.1 -Anopheles coluzzii AcolN3 INSDC GCF_943734685.1 yes 0 125 3 Anopheles coluzzii AcolN3 VectorBase 1518534 GCF_943734685.1_AcolN3 GCA_943734685.1 GCF_943734685.1 True Anopheles coluzzii mosquito A.coluzzii (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734685.1 -Anopheles coluzzii MOPTI INSDC GCF_016920705.1 no 0 196 3 Anopheles coluzzii MOPTI VectorBase 1518534 GCF_016920705.1_AcolMOP1 GCA_016920705.1 GCF_016920705.1 False Anopheles coluzzii mosquito A.coluzzi (MOPTI 2021) https://genome.ucsc.edu/h/GCF_016920705.1 -Anopheles coluzzii Mali-NIH INSDC GCA_000150765.1 no 0 10521 0 Anopheles coluzzii Mali-NIH VectorBase 1518534 GCA_000150765.1_m5 GCA_000150765.1 False Anopheles coluzzii mosquito A.coluzzii (M 2008) https://genome.ucsc.edu/h/GCA_000150765.1 -Anopheles coluzzii Ngousso INSDC GCA_004136515.2 no 0 205 0 Anopheles coluzzii Ngousso VectorBase 1518534 GCA_004136515.2_ASM413651v2 GCA_004136515.2 False Anopheles coluzzii mosquito A.coluzzii (Ngousso colony 2019) https://genome.ucsc.edu/h/GCA_004136515.2 -Anopheles coustani AcouGA1 INSDC GCF_943734705.1 yes 0 416 3 Anopheles coustani AcouGA1 VectorBase 139045 GCF_943734705.1_idAnoCousDA_361_x.2 GCA_943734705.2 GCF_943734705.1 False Anopheles coustani mosquito A.coustani (2023) https://genome.ucsc.edu/h/GCF_943734705.1 -Aspergillus cristatus GZAAS20.1005 INSDC GCA_001717485.1 yes 0 68 0 Aspergillus cristatus GZAAS20.1005 FungiDB 573508 GCA_001717485.1_ASM171748v1 GCA_001717485.1 False Aspergillus cristatus ascomycetes A.cristatus (GZAAS20.1005 2016) https://genome.ucsc.edu/h/GCA_001717485.1 -Anopheles cruzii AcruBR1 INSDC GCF_943734635.1 yes 0 5085 3 Anopheles cruzii AcruBR1 VectorBase 68878 GCF_943734635.1_idAnoCruzAS_RS32_06 GCA_943734635.1 GCF_943734635.1 False Anopheles cruzii mosquito A.cruzii (2022) https://genome.ucsc.edu/h/GCF_943734635.1 -Acanthamoeba sp Galka GenBank GCA_000826505.1 yes 0 224137 0 Acanthamoeba sp. Galka AmoebaDB 65662 GCA_000826505.1_Acanthamoeba_pearcei GCA_000826505.1 False Acanthamoeba pearcei A.pearcei (2015) https://genome.ucsc.edu/h/GCA_000826505.1 -Acanthamoeba sp Incertae sedis GenBank GCA_000826365.1 no 0 24098 0 Acanthamoeba sp. Incertae_sedis AmoebaDB 32600 GCA_000826365.1_Acanthamoeba_royreba GCA_000826365.1 False Acanthamoeba royreba A.royreba (2015) https://genome.ucsc.edu/h/GCA_000826365.1 -Acanthamoeba sp T4b-type GenBank GCA_000826345.1 no 0 224482 0 Acanthamoeba sp. T4B-type AmoebaDB 5757 GCA_000826345.1_Acanthamoeba_polyphaga GCA_000826345.1 False Acanthamoeba polyphaga A.polyphaga (2015) https://genome.ucsc.edu/h/GCA_000826345.1 -Anopheles culicifacies A-37 INSDC GCA_000473375.1 yes 0 16162 0 Anopheles culicifacies A-37 VectorBase 139723 GCA_000473375.1_Anop_culi_species_A-37_1_V1 GCA_000473375.1 False Anopheles culicifacies mosquito A.culicifacies (species A-37_1 2013) https://genome.ucsc.edu/h/GCA_000473375.1 -Acanthamoeba culbertsoni A1 GenBank GCA_000826265.1 yes 0 72411 0 Acanthamoeba culbertsoni A1 AmoebaDB 43142 GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly GCA_000826265.1 False Acanthamoeba culbertsoni A.culbertsoni (2015) https://genome.ucsc.edu/h/GCA_000826265.1 -Anopheles darlingi AdarGF1 INSDC GCF_943734745.1 yes 0 62 3 Anopheles darlingi AdarGF1 VectorBase 43151 GCF_943734745.1_idAnoDarlMG_H_01 GCA_943734745.1 GCF_943734745.1 True Anopheles darlingi American malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734745.1 -Anopheles darlingi Coari INSDC GCA_000211455.3 no 0 2220 0 Anopheles darlingi Coari VectorBase 43151 GCA_000211455.3_A_darlingi_v1 GCA_000211455.3 False Anopheles darlingi American malaria mosquito (2013) https://genome.ucsc.edu/h/GCA_000211455.3 -Angomonas deanei strain Cavalho ATCC PRA-265 INSDC GCA_903995115.1 yes 0 0 29 Angomonas deanei strain Cavalho ATCC PRA-265 TriTrypDB 59799 GCA_903995115.1_Adeanei_nanopore_chromosomes GCA_903995115.1 False Angomonas deanei Angomonas (Crithidia deanei Carvalho ATCC PRA-265 2020) https://genome.ucsc.edu/h/GCA_903995115.1 -Anopheles dirus WRAIR2 INSDC GCA_000349145.1 yes 0 1266 0 Anopheles dirus WRAIR2 VectorBase 7168 GCA_000349145.1_Anop_diru_WRAIR2_V1 GCA_000349145.1 False Anopheles dirus mosquito A.dirus (WRAIR2 2013) https://genome.ucsc.edu/h/GCA_000349145.1 -Anopheles epiroticus Epiroticus2 INSDC GCA_000349105.1 yes 0 2673 0 Anopheles epiroticus Epiroticus2 VectorBase 199890 GCA_000349105.1_Anop_epir_epiroticus2_V1 GCA_000349105.1 False Anopheles epiroticus mosquito A.epiroticus (epiroticus2 2013) https://genome.ucsc.edu/h/GCA_000349105.1 -Aphanomyces euteiches MF1 INSDC GCA_021527665.1 yes 0 7789 0 Aphanomyces euteiches MF1 FungiDB 100861 GCA_021527665.1_ASM2152766v1 GCA_021527665.1 False Aphanomyces euteiches oomycetes (MF1 2022) https://genome.ucsc.edu/h/GCA_021527665.1 -Anopheles farauti FAR1 INSDC GCA_000473445.2 yes 0 310 0 Anopheles farauti FAR1 VectorBase 69004 GCA_000473445.2_Anop_fara_FAR1_V2 GCA_000473445.2 False Anopheles farauti mosquito A.farauti (FAR1 2014) https://genome.ucsc.edu/h/GCA_000473445.2 -Arthrobotrys flagrans CBS H-5679 INSDC GCA_004000055.1 yes 0 14 0 Arthrobotrys flagrans CBS H-5679 FungiDB 97331 GCA_004000055.1_DF_1.0 GCA_004000055.1 GCF_004000055.1 True Arthrobotrys flagrans ascomycetes A.flagrans (CBS H-5679 2019) https://genome.ucsc.edu/h/GCA_004000055.1 -Aspergillus flavus NRRL3357 2020 INSDC GCA_009017415.1 no 0 0 8 Aspergillus flavus NRRL3357 2020 FungiDB 5059 GCA_009017415.1_ASM901741v1 GCA_009017415.1 False Aspergillus flavus ascomycetes A.flavus (NRRL 3357 2019) https://genome.ucsc.edu/h/GCA_009017415.1 -Anopheles funestus AfunGA1 INSDC GCF_943734845.2 yes 0 326 3 Anopheles funestus AfunGA1 VectorBase 62324 GCF_943734845.2_idAnoFuneDA-416_04 GCA_943734845.1 GCF_943734845.2 True Anopheles funestus African malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734845.2 -Anopheles funestus FUMOZ INSDC GCA_003951495.1 no 0 0 3 Anopheles funestus FUMOZ VectorBase 62324 GCA_003951495.1_AfunF3 GCA_003951495.1 False Anopheles funestus African malaria mosquito (FUMOZ 2018) https://genome.ucsc.edu/h/GCA_003951495.1 -Anopheles gambiae Ifakara INSDC GCF_943734735.2 no 0 187 3 Anopheles gambiae Ifakara VectorBase 7165 GCF_943734735.2_idAnoGambNW_F1_1 GCA_943734735.2 GCF_943734735.2 True Anopheles gambiae African malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734735.2 -Anopheles gambiae Pimperena INSDC GCA_000150785.1 no 0 13042 0 Anopheles gambiae Pimperena VectorBase 7165 GCA_000150785.1_g4 GCA_000150785.1 False Anopheles gambiae African malaria mosquito (S 2008) https://genome.ucsc.edu/h/GCA_000150785.1 -Aphanomyces invadans NJM9701 GenBank GCA_000520115.1 yes 0 481 0 Aphanomyces invadans NJM9701 FungiDB 157072 GCF_000520115.1_Apha_inva_NJM9701_V1 GCA_000520115.1 GCF_000520115.1 True Aphanomyces invadans oomycetes (NJM9701 2014) https://genome.ucsc.edu/h/GCF_000520115.1 -Aspergillus lentulus strain IFM 54703 INSDC GCA_001445615.2 yes 0 12 0 Aspergillus lentulus strain IFM 54703 FungiDB 293939 GCA_001445615.2_Alt_assembly01 GCA_001445615.2 False Aspergillus lentulus ascomycetes A.lentulus (IFM 54703 2021) https://genome.ucsc.edu/h/GCA_001445615.2 -Acanthamoeba lenticulata PD2S GenBank GCA_000826285.1 yes 0 79048 0 Acanthamoeba lenticulata PD2S AmoebaDB 29196 GCA_000826285.1_Acanthamoeba_lenticulata GCA_000826285.1 False Acanthamoeba lenticulata A.lenticulata (2015) https://genome.ucsc.edu/h/GCA_000826285.1 -Antonospora locustae CLX INSDC GCA_007674295.1 yes 0 1 17 Antonospora locustae CLX MicrosporidiaDB 278021 GCA_007674295.1_ASM767429v1 GCA_007674295.1 False Antonospora locustae microsporidians A.locustae (CLX 2019) https://genome.ucsc.edu/h/GCA_007674295.1 -Acanthamoeba lugdunensis L3a GenBank GCA_000826425.1 yes 0 67459 0 Acanthamoeba lugdunensis L3a AmoebaDB 61605 GCA_000826425.1_Acanthamoeba_lugdunensis GCA_000826425.1 False Acanthamoeba lugdunensis A.lugdunensis (2015) https://genome.ucsc.edu/h/GCA_000826425.1 -Anopheles maculipalpis AmacGA1 INSDC GCF_943734695.1 yes 0 167 3 Anopheles maculipalpis AmacGA1 VectorBase 1496333 GCF_943734695.1_idAnoMacuDA_375_x GCA_943734695.1 GCF_943734695.1 True Anopheles maculipalpis mosquito A.maculipalpis (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734695.1 -Amblyomma maculatum SK-2019 INSDC GCA_023969395.1 yes 0 125877 0 Amblyomma maculatum SK-2019 VectorBase 34609 GCA_023969395.1_ASM2396939v1 GCA_023969395.1 False Amblyomma maculatum Gulf Coast tick (SK-2019 2022) https://genome.ucsc.edu/h/GCA_023969395.1 -Anopheles maculatus maculatus3 INSDC GCA_000473185.1 yes 0 47797 0 Anopheles maculatus maculatus3 VectorBase 74869 GCA_000473185.1_Anop_macu_maculatus3_V1 GCA_000473185.1 False Anopheles maculatus mosquito A.maculatus (maculatus3 2013) https://genome.ucsc.edu/h/GCA_000473185.1 -Anopheles marshallii AmarGA1 INSDC GCF_943734725.1 yes 0 285 3 Anopheles marshallii AmarGA1 VectorBase 1521116 GCF_943734725.1_idAnoMarsDA_429_01 GCA_943734725.1 GCF_943734725.1 True Anopheles marshallii mosquito A.marshallii (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734725.1 -Acanthamoeba mauritaniensis 1652 GenBank GCA_000826465.1 yes 0 67233 0 Acanthamoeba mauritaniensis 1652 AmoebaDB 196912 GCA_000826465.1_Acanthamoeba_mauritaniensis GCA_000826465.1 False Acanthamoeba mauritaniensis A.mauritaniensis (2015) https://genome.ucsc.edu/h/GCA_000826465.1 -Anopheles melas CM1001059_A INSDC GCA_000473525.2 yes 0 20229 0 Anopheles melas CM1001059_A VectorBase 34690 GCA_000473525.2_Anop_mela_CM1001059_A_V2 GCA_000473525.2 False Anopheles melas mosquito A.melas (CM1001059_A 2014) https://genome.ucsc.edu/h/GCA_000473525.2 -Anopheles merus MAF INSDC GCA_000473845.2 no 0 2027 0 Anopheles merus MAF VectorBase 30066 GCA_000473845.2_Anop_meru_MAF_V1 GCA_000473845.2 False Anopheles merus mosquito A.merus (MAF 2014) https://genome.ucsc.edu/h/GCA_000473845.2 -Anopheles merus MAF 2021 INSDC GCF_017562075.2 yes 0 1322 5 Anopheles merus MAF 2021 VectorBase 30066 GCF_017562075.2_AmerM5.1 GCA_017562075.2 GCF_017562075.2 False Anopheles merus mosquito A.merus (MAF 2021) https://genome.ucsc.edu/h/GCF_017562075.2 -Anopheles minimus MINIMUS1 INSDC GCA_000349025.1 yes 0 678 0 Anopheles minimus MINIMUS1 VectorBase 112268 GCA_000349025.1_Anop_mini_MINIMUS1_V1 GCA_000349025.1 False Anopheles minimus mosquito A.minimus (MINIMUS1 2013) https://genome.ucsc.edu/h/GCA_000349025.1 -Apiotrichum montevideense JCM 9937 INSDC GCA_001598995.1 yes 0 61 0 Apiotrichum montevideense JCM 9937 FungiDB 82521 GCA_001598995.1_JCM_9937_assembly_v001 GCA_001598995.1 False Apiotrichum montevideense basidiomycetes A.montevideense (JCM 9937 2016) https://genome.ucsc.edu/h/GCA_001598995.1 -Anopheles moucheti AmouCM1 INSDC GCF_943734755.1 yes 0 342 3 Anopheles moucheti AmouCM1 VectorBase 186751 GCF_943734755.1_idAnoMoucSN_F20_07 GCA_943734755.1 GCF_943734755.1 False Anopheles moucheti mosquito A.moucheti (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734755.1 -Amauroascus mutatus isolate UAMH 3576 GenBank GCA_001430935.1 yes 3075 0 0 Amauroascus mutatus isolate UAMH 3576 FungiDB 2074759 GCA_001430935.1_ASM143093v1 GCA_001430935.1 False Amauroascus verrucosus ascomycetes A.verrucosus (UAMH 3576 2015) https://genome.ucsc.edu/h/GCA_001430935.1 -Aspergillus niger strain LDM3 INSDC GCA_009812365.1 no 0 14 0 Aspergillus niger strain LDM3 FungiDB 5061 GCA_009812365.1_ASM981236v1 GCA_009812365.1 False Aspergillus niger ascomycetes A.niger (LDM3 2019) https://genome.ucsc.edu/h/GCA_009812365.1 -Aspergillus niger strain N402 (ATCC64974) GenBank GCA_900248155.1 no 19 0 0 Aspergillus niger strain N402 (ATCC64974) FungiDB 5061 GCA_900248155.1_Aniger_ATCC_64974_N402 GCA_900248155.1 False Aspergillus niger ascomycetes A.niger (N402 ATCC 64974 2018) https://genome.ucsc.edu/h/GCA_900248155.1 -Amauroascus niger isolate UAMH 3544 GenBank GCA_001430945.1 yes 3481 0 0 Amauroascus niger isolate UAMH 3544 FungiDB 89421 GCA_001430945.1_ASM143094v1 GCA_001430945.1 False Amauroascus niger ascomycetes A.niger (UAMH 3544 2015) https://genome.ucsc.edu/h/GCA_001430945.1 -Anopheles nili AnilCM1 INSDC GCF_943737925.1 yes 0 153 3 Anopheles nili AnilCM1 VectorBase 185578 GCF_943737925.1_idAnoNiliSN_F5_01 GCA_943737925.1 GCF_943737925.1 True Anopheles nili mosquito A.nili (primary hap 2022) https://genome.ucsc.edu/h/GCF_943737925.1 -Acanthamoeba palestinensis Reich GenBank GCA_000826305.1 yes 0 26188 0 Acanthamoeba palestinensis Reich AmoebaDB 65661 GCA_000826305.1_Acanthamoeba_healyi GCA_000826305.1 False Acanthamoeba healyi A.healyi (2015) https://genome.ucsc.edu/h/GCA_000826305.1 -Aspergillus parasiticus CBS 117618 INSDC GCA_009176385.1 yes 0 270 0 Aspergillus parasiticus CBS 117618 FungiDB 5067 GCA_009176385.1_Asppar1 GCA_009176385.1 False Aspergillus parasiticus ascomycetes A.parasiticus (CBS 117618 2019) https://genome.ucsc.edu/h/GCA_009176385.1 -Anopheles quadriannulatus SANGWE INSDC GCA_000349065.1 yes 0 2823 0 Anopheles quadriannulatus SANGWE VectorBase 34691 GCA_000349065.1_Anop_quad_QUAD4_A_V1 GCA_000349065.1 False Anopheles quadriannulatus mosquito A.quadriannulatus (QUAD4_A 2013) https://genome.ucsc.edu/h/GCA_000349065.1 -Acanthamoeba quina Vil3 GenBank GCA_000826445.1 yes 0 60490 0 Acanthamoeba quina Vil3 AmoebaDB 211522 GCA_000826445.1_Acanthamoeba_quina GCA_000826445.1 False Acanthamoeba quina A.quina (2015) https://genome.ucsc.edu/h/GCA_000826445.1 -Acanthamoeba rhysodes Singh GenBank GCA_000826385.1 yes 0 62836 0 Acanthamoeba rhysodes Singh AmoebaDB 32599 GCA_000826385.1_Acanthamoeba_rhysodes GCA_000826385.1 False Acanthamoeba rhysodes A.rhysodes (2015) https://genome.ucsc.edu/h/GCA_000826385.1 -Anopheles sinensis China INSDC GCA_000441895.2 yes 0 9592 0 Anopheles sinensis China VectorBase 74873 GCA_000441895.2_AS2 GCA_000441895.2 False Anopheles sinensis mosquito A.sinensis (2014) https://genome.ucsc.edu/h/GCA_000441895.2 -Anopheles sinensis SINENSIS INSDC GCA_000472065.2 no 0 10448 0 Anopheles sinensis SINENSIS VectorBase 74873 GCA_000472065.2_Anop_sine_SINENSIS_V1 GCA_000472065.2 False Anopheles sinensis mosquito A.sinensis (SINENSIS 2014) https://genome.ucsc.edu/h/GCA_000472065.2 -Anopheles stephensi Indian INSDC GCA_000300775.2 no 0 23371 0 Anopheles stephensi Indian VectorBase 30069 GCA_000300775.2_ASM30077v2 GCA_000300775.2 False Anopheles stephensi Asian malaria mosquito (Indian Wild Type Walter Reed 2013) https://genome.ucsc.edu/h/GCA_000300775.2 -Anopheles stephensi SDA-500 INSDC GCA_000349045.1 no 0 1110 0 Anopheles stephensi SDA-500 VectorBase 30069 GCA_000349045.1_Anop_step_SDA-500_V1 GCA_000349045.1 False Anopheles stephensi Asian malaria mosquito (SDA-500 2013) https://genome.ucsc.edu/h/GCA_000349045.1 -Anopheles stephensi UCISS2018 INSDC GCF_013141755.1 yes 0 491 3 Anopheles stephensi UCISS2018 VectorBase 30069 GCF_013141755.1_UCI_ANSTEP_V1.0 GCA_013141755.1 GCF_013141755.1 False Anopheles stephensi Asian malaria mosquito https://genome.ucsc.edu/h/GCF_013141755.1 -Aspergillus tanneri NIH1004 INSDC GCA_004798825.1 yes 0 1715 0 Aspergillus tanneri NIH1004 FungiDB 1220188 GCA_004798825.1_ASM479882v1 GCA_004798825.1 False Aspergillus tanneri ascomycetes A.tanneri (NIH1004 2019) https://genome.ucsc.edu/h/GCA_004798825.1 -Aspergillus thermomutatus strain HMR AF 39 INSDC GCA_002237265.2 yes 0 647 0 Aspergillus thermomutatus strain HMR AF 39 FungiDB 41047 GCF_002237265.1_ASM223726v2 GCA_002237265.2 GCF_002237265.1 True Aspergillus thermomutatus ascomycetes A.thermomutatus https://genome.ucsc.edu/h/GCF_002237265.1 -Acanthamoeba triangularis SH621 GenBank GCA_000826325.1 yes 0 56742 0 Acanthamoeba triangularis SH621 AmoebaDB 28015 GCA_000826325.1_Acanthamoeba_palestinensis GCA_000826325.1 False Acanthamoeba palestinensis A.palestinensis (2015) https://genome.ucsc.edu/h/GCA_000826325.1 -Apophysomyces variabilis NCCPF 102052 INSDC GCA_002749535.1 yes 0 411 0 Apophysomyces variabilis NCCPF 102052 FungiDB 760013 GCA_002749535.1_ASM274953v1 GCA_002749535.1 False Apophysomyces variabilis fungi A.variabilis (NCCPF 102052 2017) https://genome.ucsc.edu/h/GCA_002749535.1 -Anopheles ziemanni AzieGA1 INSDC GCF_943734765.1 yes 0 416 3 Anopheles ziemanni AzieGA1 VectorBase 345580 GCF_943734765.1_idAnoZiCoDA_A2_x.2 GCA_943734765.2 GCF_943734765.1 False Anopheles ziemanni mosquito A.ziemanni (2023) https://genome.ucsc.edu/h/GCF_943734765.1 -Blechomonas ayalai B08-376 GenBank GCA_020509355.1 yes 0 545 0 Blechomonas ayalai B08-376 TriTrypDB 1463230 GCA_020509355.1_ASM2050935v1 GCA_020509355.1 False Blechomonas ayalai Blechomonas ayalai (B08-376 2021) https://genome.ucsc.edu/h/GCA_020509355.1 -Beauveria bassiana HN6 INSDC GCA_014607475.1 yes 0 0 12 Beauveria bassiana HN6 FungiDB 176275 GCA_014607475.1_ASM1460747v1 GCA_014607475.1 False Beauveria bassiana ascomycetes B.bassiana (HN6 2020) https://genome.ucsc.edu/h/GCA_014607475.1 -Besnoitia besnoiti strain Bb-Ger1 GenBank GCA_002563875.1 yes 172 0 13 Besnoitia besnoiti strain Bb-Ger1 ToxoDB 94643 GCF_002563875.1_Bbes1.0 GCA_002563875.1 GCF_002563875.1 True Besnoitia besnoiti apicomplexans B.besnoiti (Bb-Ger1 2017) https://genome.ucsc.edu/h/GCF_002563875.1 -Babesia bigemina strain BOND GenBank GCA_000723445.1 yes 0 478 5 Babesia bigemina strain BOND PiroplasmaDB 5866 GCA_000723445.1_BBBOND_0001 GCA_000723445.1 False Babesia bigemina apicomplexans B.bigemina (BOND 2014) https://genome.ucsc.edu/h/GCA_000723445.1 -Babesia caballi USDA-D6B2 INSDC GCA_024862765.1 yes 0 7 0 Babesia caballi USDA-D6B2 PiroplasmaDB 5871 GCF_024862765.1_Bcaballi_D6B2_v1.0 GCA_024862765.1 GCF_024862765.1 False Babesia caballi apicomplexans B.caballi (USDA-D6B2 2022) https://genome.ucsc.edu/h/GCF_024862765.1 -Byssoonygena ceratinophila isolate UAMH 5669 GenBank GCA_001430925.1 yes 4851 0 0 Byssoonygena ceratinophila isolate UAMH 5669 FungiDB 166112 GCA_001430925.1_ASM143092v1 GCA_001430925.1 False Byssoonygena ceratinophila ascomycetes B.ceratinophila (UAMH 5669 2015) https://genome.ucsc.edu/h/GCA_001430925.1 -Babesia divergens strain 1802A GenBank GCA_018398725.1 yes 0 79 0 Babesia divergens strain 1802A PiroplasmaDB 32595 GCA_018398725.1_ASM1839872v1 GCA_018398725.1 False Babesia divergens apicomplexans B.divergens (1802A 2021) https://genome.ucsc.edu/h/GCA_018398725.1 -Babesia divergens strain Rouen 1987 GenBank GCA_001077455.2 no 0 141 0 Babesia divergens strain Rouen 1987 PiroplasmaDB 32595 GCA_001077455.2_ASM107745v2 GCA_001077455.2 False Babesia divergens apicomplexans B.divergens (Rouen 1987 2018) https://genome.ucsc.edu/h/GCA_001077455.2 -Babesia duncani strain WA1 INSDC GCA_024586265.1 no 0 7 0 Babesia duncani strain WA1 PiroplasmaDB 323732 GCA_024586265.1_ASM2458626v1 GCA_024586265.1 False Babesia duncani apicomplexans B.duncani (WA1 2022) https://genome.ucsc.edu/h/GCA_024586265.1 -Babesia duncani strain WA1 2023 INSDC GCA_028658345.1 yes 0 160 5 Babesia duncani strain WA1 2023 PiroplasmaDB 323732 GCF_028658345.1_Bduncani_v1 GCA_028658345.1 GCF_028658345.1 True Babesia duncani apicomplexans B.duncani (WA1 2023) https://genome.ucsc.edu/h/GCF_028658345.1 -Biomphalaria glabrata XG47 INSDC GCF_947242115.1 yes 0 25 18 Biomphalaria glabrata XG47 VectorBase 6526 GCF_947242115.1_xgBioGlab47.1 GCA_947242115.1 GCF_947242115.1 False Biomphalaria glabrata bloodfluke planorb (primary hap 2022) https://genome.ucsc.edu/h/GCF_947242115.1 -Blumeria graminis f. sp. triticale THUN-12 INSDC GCA_905067625.1 no 0 25 11 Blumeria graminis f. sp. triticale THUN-12 FungiDB 1689686 GCA_905067625.1_Bgtriticale_THUN12_genome_v1_2 GCA_905067625.1 False Blumeria graminis f. sp. triticale grass mildew (THUN-12 2021) https://genome.ucsc.edu/h/GCA_905067625.1 -Blumeria hordei strain RACE1 INSDC GCA_900237765.1 yes 0 99 0 Blumeria hordei strain RACE1 FungiDB 2867405 GCA_900237765.1_BghRACE1_v1 GCA_900237765.1 False Blumeria hordei grass mildew (RACE1 RACE1 2018) https://genome.ucsc.edu/h/GCA_900237765.1 -Bremia lactucae strain SF5 INSDC GCA_004359215.2 yes 0 201 19 Bremia lactucae strain SF5 FungiDB 4779 GCA_004359215.2_BlacSF5v2 GCA_004359215.2 GCF_004359215.1 True Bremia lactucae lettuce downy mildew (SF5 2021) https://genome.ucsc.edu/h/GCA_004359215.2 -Balamuthia mandrillaris strain 2046 INSDC GCA_001262475.1 no 0 14699 0 Balamuthia mandrillaris strain 2046 AmoebaDB 66527 GCA_001262475.1_ASM126247v1 GCA_001262475.1 False Balamuthia mandrillaris B.mandrillaris (2046 2015) https://genome.ucsc.edu/h/GCA_001262475.1 -Balamuthia mandrillaris CDC-V039 INSDC GCA_001185145.1 yes 0 1604 0 Balamuthia mandrillaris CDC-V039 AmoebaDB 66527 GCA_001185145.1_ASM118514v1 GCA_001185145.1 False Balamuthia mandrillaris B.mandrillaris (CDC-V039 2015) https://genome.ucsc.edu/h/GCA_001185145.1 -Babesia microti strain ATCC 30222 INSDC GCA_001650055.1 no 234 0 0 Babesia microti strain ATCC 30222 PiroplasmaDB 5868 GCA_001650055.1_ASM165005v1 GCA_001650055.1 False Babesia microti apicomplexans B.microti (ATCC 30222 2016) https://genome.ucsc.edu/h/GCA_001650055.1 -Babesia microti strain ATCC PRA-99 GenBank GCA_001650065.1 no 82 0 0 Babesia microti strain ATCC PRA-99 PiroplasmaDB 5868 GCA_001650065.1_ASM165006v1 GCA_001650065.1 False Babesia microti apicomplexans B.microti (ATCC PRA-99 2016) https://genome.ucsc.edu/h/GCA_001650065.1 -Babesia microti strain GI INSDC GCA_001650105.1 no 140 0 0 Babesia microti strain GI PiroplasmaDB 5868 GCA_001650105.1_ASM165010v1 GCA_001650105.1 False Babesia microti apicomplexans B.microti (GI 2016) https://genome.ucsc.edu/h/GCA_001650105.1 -Babesia microti strain GreenwichYale_Lab_strain_1 INSDC GCA_001650075.1 no 250 0 0 Babesia microti strain GreenwichYale_Lab_strain_1 PiroplasmaDB 5868 GCA_001650075.1_ASM165007v1 GCA_001650075.1 False Babesia microti apicomplexans B.microti (GreenwichYale_Lab_strain_1 2016) https://genome.ucsc.edu/h/GCA_001650075.1 -Babesia microti Nan_Hs_2011_N11-50 INSDC GCA_001650145.1 no 131 0 0 Babesia microti Nan_Hs_2011_N11-50 PiroplasmaDB 5868 GCA_001650145.1_ASM165014v1 GCA_001650145.1 False Babesia microti apicomplexans B.microti (Nan_Hs_2011_N11-50 2016) https://genome.ucsc.edu/h/GCA_001650145.1 -Babesia microti strain Naushon INSDC GCA_001650135.1 no 131 0 0 Babesia microti strain Naushon PiroplasmaDB 5868 GCA_001650135.1_ASM165013v1 GCA_001650135.1 False Babesia microti apicomplexans B.microti (Naushon 2016) https://genome.ucsc.edu/h/GCA_001650135.1 -Blastocrithidia nonstop P57 INSDC GCA_028554745.1 yes 0 77 0 Blastocrithidia nonstop P57 TriTrypDB 2592485 GCA_028554745.1_ASM2855474v1 GCA_028554745.1 False Blastocrithidia sp. p57 Blastocrithidia sp. (p57 2023) https://genome.ucsc.edu/h/GCA_028554745.1 -Babesia ovata strain Miyake GenBank GCA_002897235.1 yes 91 0 0 Babesia ovata strain Miyake PiroplasmaDB 189622 GCF_002897235.1_Bovata_7.1 GCA_002897235.1 GCF_002897235.1 True Babesia ovata apicomplexans B.ovata (Miyake 2017) https://genome.ucsc.edu/h/GCF_002897235.1 -Blastomyces percursus strain EI222 INSDC GCA_001883805.1 yes 0 3868 0 Blastomyces percursus strain EI222 FungiDB 1658174 GCA_001883805.1_Blas_perc_EI222_V1 GCA_001883805.1 False Blastomyces percursus ascomycetes B.percursus (EI222 2016) https://genome.ucsc.edu/h/GCA_001883805.1 -Bodo saltans strain Lake Konstanz GenBank GCA_001460835.1 yes 0 2256 0 Bodo saltans strain Lake Konstanz TriTrypDB 75058 GCA_001460835.1_BSAL GCA_001460835.1 False Bodo saltans Bodo saltans (Lake Konstanz 2015) https://genome.ucsc.edu/h/GCA_001460835.1 -Babesia sp. Xinjiang Xinjiang GenBank GCA_002095265.1 yes 0 215 0 Babesia sp. Xinjiang Xinjiang PiroplasmaDB 462227 GCF_002095265.1_B_xinjiang1.0 GCA_002095265.1 GCF_002095265.1 True Babesia sp. Xinjiang apicomplexans B.sp. (Xinjiang 2017) https://genome.ucsc.edu/h/GCF_002095265.1 -Cryptosporidium andersoni isolate 30847 GenBank GCA_001865355.1 yes 135 0 0 Cryptosporidium andersoni isolate 30847 CryptoDB 117008 GCF_001865355.1_ASM186535v1 GCA_001865355.1 GCF_001865355.1 True Cryptosporidium andersoni apicomplexans C.andersoni (30847 2016) https://genome.ucsc.edu/h/GCF_001865355.1 -Candida auris strain 6684 INSDC GCA_001189475.1 no 0 99 0 [Candida] auris 6684 FungiDB 498019 GCF_001189475.1_ASM118947v1 GCA_001189475.1 GCF_001189475.1 True Candida auris budding yeast C.auris (6684 2015 refseq) https://genome.ucsc.edu/h/GCF_001189475.1 -Candida auris strain B11220 INSDC GCA_003013715.2 no 0 0 7 [Candida] auris B11220 FungiDB 498019 GCF_003013715.1_ASM301371v2 GCA_003013715.2 GCF_003013715.1 True Candidozyma auris budding yeast C.auris (B11220 2019) https://genome.ucsc.edu/h/GCF_003013715.1 -Candida auris strain B11221 INSDC GCA_002775015.1 no 0 20 0 [Candida] auris B11221 FungiDB 498019 GCF_002775015.1_Cand_auris_B11221_V1 GCA_002775015.1 GCF_002775015.1 True Candida auris budding yeast C.auris (B11221 2017 refseq) https://genome.ucsc.edu/h/GCF_002775015.1 -Candida auris strain B11243 INSDC GCA_003014415.1 no 0 238 0 [Candida] auris B11243 FungiDB 498019 GCA_003014415.1_Cand_auris_B11243 GCA_003014415.1 False Candidozyma auris budding yeast C.auris (B11243 2018) https://genome.ucsc.edu/h/GCA_003014415.1 -Candida auris strain B11245 INSDC GCA_008275145.1 no 0 0 7 [Candida] auris B11245 FungiDB 498019 GCA_008275145.1_ASM827514v1 GCA_008275145.1 False Candidozyma auris budding yeast C.auris (B11245 2019) https://genome.ucsc.edu/h/GCA_008275145.1 -Cryptosporidium baileyi TAMU-09Q1 GenBank GCA_001593455.1 yes 153 0 0 Cryptosporidium baileyi TAMU-09Q1 CryptoDB 27987 GCA_001593455.1_CryBaiTAMU-09Q1-1.0 GCA_001593455.1 False Cryptosporidium baileyi apicomplexans C.baileyi (TAMU-09Q1 2016) https://genome.ucsc.edu/h/GCA_001593455.1 -Cryptosporidium bovis isolate 45015 INSDC GCA_009768925.2 yes 0 55 0 Cryptosporidium bovis isolate 45015 CryptoDB 310047 GCF_009768925.1_ASM976892v2 GCA_009768925.2 GCF_009768925.1 True Cryptosporidium bovis apicomplexans C.bovis (45015 2021) https://genome.ucsc.edu/h/GCF_009768925.1 -Cladophialophora carrionii KSF GenBank GCA_001700775.1 yes 22 0 0 Cladophialophora carrionii KSF FungiDB 86049 GCA_001700775.1_ASM170077v1 GCA_001700775.1 False Cladophialophora carrionii ascomycetes C.carrionii (KSF 2016) https://genome.ucsc.edu/h/GCA_001700775.1 -Cyclospora cayetanensis strain CHN_HEN01 GenBank GCA_000769155.2 yes 2297 0 0 Cyclospora cayetanensis strain CHN_HEN01 ToxoDB 88456 GCF_000769155.1_ASM76915v2 GCA_000769155.2 GCF_000769155.1 True Cyclospora cayetanensis apicomplexans C.cayetanensis (CHN_HEN01 2016) https://genome.ucsc.edu/h/GCF_000769155.1 -Cyclospora cayetanensis isolate NF1_C8 GenBank GCF_002999335.1 no 738 0 0 Cyclospora cayetanensis isolate NF1_C8 ToxoDB 88456 GCF_002999335.1_CcayRef3 GCA_002999335.1 GCF_002999335.1 True Cyclospora cayetanensis apicomplexans C.cayetanensis (NF1_C8 2018) https://genome.ucsc.edu/h/GCF_002999335.1 -Cryptococcus cf. gattii MF34 INSDC GCA_009650685.1 yes 0 2 13 Cryptococcus cf. gattii MF34 FungiDB 2268382 GCA_009650685.1_Cryp_gatt_MF34 GCA_009650685.1 False Cryptococcus gattii VGV basidiomycetes C.gattii VGV (MF34 2019) https://genome.ucsc.edu/h/GCA_009650685.1 -Coprinopsis cinerea #326 INSDC GCA_016772295.1 no 0 31 0 Coprinopsis cinerea #326 FungiDB 1132390 GCA_016772295.1_ASM1677229v1 GCA_016772295.1 False Coprinopsis cinerea AmutBmut pab1-1 basidiomycetes C.cinerea (A43mut B43mut pab1-1 #326 2021) https://genome.ucsc.edu/h/GCA_016772295.1 -Curvularia clavata yc1106 INSDC GCA_023920165.1 yes 0 0 8 Curvularia clavata yc1106 FungiDB 95742 GCA_023920165.1_ASM2392016v1 GCA_023920165.1 False Curvularia clavata ascomycetes C.clavata (yc1106 2022) https://genome.ucsc.edu/h/GCA_023920165.1 -Cucumispora dikerogammari Dv6 INSDC GCA_014805705.1 yes 0 7783 0 Cucumispora dikerogammari Dv6 MicrosporidiaDB 658444 GCA_014805705.1_ASM1480570v1 GCA_014805705.1 False Cucumispora dikerogammari microsporidians C.dikerogammari (Dv6 2020) https://genome.ucsc.edu/h/GCA_014805705.1 -Candida duobushaemulonis strain B09383 GenBank GCA_002926085.1 yes 7 0 0 [Candida] duobushaemulonis B09383 FungiDB 1231522 GCF_002926085.2_CanDuoHae_v1.0 GCA_002926085.1 GCF_002926085.2 True Candidozyma duobushaemuli budding yeast C.duobushaemulonis https://genome.ucsc.edu/h/GCF_002926085.2 -Cyberlindnera fabianii 65 INSDC GCA_001983305.1 yes 0 25 0 Cyberlindnera fabianii 65 FungiDB 36022 GCA_001983305.1_ASM198330v1 GCA_001983305.1 False Cyberlindnera fabianii budding yeast C.fabianii (65 2017) https://genome.ucsc.edu/h/GCA_001983305.1 -Crithidia fasciculata strain Cf-Cl GenBank GCA_000331325.2 yes 0 427 30 Crithidia fasciculata strain Cf-Cl TriTrypDB 5656 GCA_000331325.2_Crithidia_fasciculata-14.0 GCA_000331325.2 False Crithidia fasciculata Crithidia fasciculata (Cf-Cl 2015) https://genome.ucsc.edu/h/GCA_000331325.2 -Cytauxzoon felis strain Winnie INSDC GCA_020283715.1 yes 0 358 0 Cytauxzoon felis strain Winnie PiroplasmaDB 27996 GCA_020283715.1_ASM2028371v1 GCA_020283715.1 False Cytauxzoon felis apicomplexans C.felis (Winnie 2021) https://genome.ucsc.edu/h/GCA_020283715.1 -Candida haemulonis B11899 GenBank GCA_002926055.1 yes 11 0 0 [Candida] haemuloni B11899 FungiDB 45357 GCF_002926055.2_CanHae_1.0 GCA_002926055.1 GCF_002926055.2 True Candidozyma haemuli budding yeast C.haemuloni https://genome.ucsc.edu/h/GCF_002926055.2 -Cryptosporidium hominis isolate 30976 GenBank GCA_001483515.1 no 53 0 0 Cryptosporidium hominis isolate 30976 CryptoDB 237895 GCA_001483515.1_ASM148351v1 GCA_001483515.1 False Cryptosporidium hominis apicomplexans C.hominis (30976 2015) https://genome.ucsc.edu/h/GCA_001483515.1 -Cryptosporidium hominis 37999 GenBank GCA_000804495.1 no 78 0 0 Cryptosporidium hominis 37999 CryptoDB 237895 GCA_000804495.1_ASM80449v1 GCA_000804495.1 False Cryptosporidium hominis apicomplexans C.hominis (37999 2014) https://genome.ucsc.edu/h/GCA_000804495.1 -Cryptosporidium hominis isolate TU502_2012 GenBank GCA_001593465.1 no 119 0 0 Cryptosporidium hominis isolate TU502_2012 CryptoDB 237895 GCA_001593465.1_CryHomTU502-1.0 GCA_001593465.1 False Cryptosporidium hominis apicomplexans C.hominis (TU502_2012 2016) https://genome.ucsc.edu/h/GCA_001593465.1 -Cryptosporidium hominis UKH1 GenBank GCA_001593475.1 no 156 0 0 Cryptosporidium hominis UKH1 CryptoDB 237895 GCA_001593475.1_CryHomUKH1-1.0 GCA_001593475.1 False Cryptosporidium hominis apicomplexans C.hominis (UKH1 2016) https://genome.ucsc.edu/h/GCA_001593475.1 -Cryptosporidium hominis UdeA01 GenBank GCA_002223825.1 no 0 0 8 Cryptosporidium hominis UdeA01 CryptoDB 237895 GCA_002223825.1_C.hominis.v1 GCA_002223825.1 False Cryptosporidium hominis apicomplexans C.hominis (2015) https://genome.ucsc.edu/h/GCA_002223825.1 -Cladophialophora immunda strain CBS 83496 GenBank GCA_000835495.1 yes 0 277 0 Cladophialophora immunda strain CBS 83496 FungiDB 569365 GCF_000835495.1_Clad_immu_CBS83496_V1 GCA_000835495.1 GCF_000835495.1 True Cladophialophora immunda ascomycetes C.immunda https://genome.ucsc.edu/h/GCF_000835495.1 -Coccidioides immitis WA_211 INSDC GCA_004115165.2 no 0 62 0 Coccidioides immitis WA_211 FungiDB 5501 GCA_004115165.2_Cimm211_ragoo GCA_004115165.2 False Coccidioides immitis ascomycetes C.immitis (WA_211 2019) https://genome.ucsc.edu/h/GCA_004115165.2 -Cimex lectularius Harlan INSDC GCA_000648675.3 yes 1156 417 0 Cimex lectularius Harlan VectorBase 79782 GCF_000648675.2_Clec_2.1 GCA_000648675.3 GCF_000648675.2 False Cimex lectularius bed bug https://genome.ucsc.edu/h/GCF_000648675.2 -Canis lupus familiaris isolate SID07034 INSDC GCA_014441545.1 yes 0 336 40 Canis lupus familiaris isolate SID07034 HostDB 9615 GCF_014441545.1_ROS_Cfam_1.0 GCA_014441545.1 GCF_014441545.1 False Canis lupus familiaris dog (labrador SID07034 2020) https://genome.ucsc.edu/h/GCF_014441545.1 -Cryptosporidium meleagridis strain UKMEL1 GenBank GCA_001593445.1 yes 57 0 0 Cryptosporidium meleagridis strain UKMEL1 CryptoDB 93969 GCA_001593445.1_CryMelUKMEL1-1.0 GCA_001593445.1 False Cryptosporidium meleagridis apicomplexans C.meleagridis (UKMEL1 2016) https://genome.ucsc.edu/h/GCA_001593445.1 -Candida metapsilosis BP57 INSDC GCA_017655625.1 yes 0 9 0 Candida metapsilosis BP57 FungiDB 273372 GCA_017655625.1_BP57 GCA_017655625.1 GCF_017655625.1 True Candida metapsilosis budding yeast C.metapsilosis (2021) https://genome.ucsc.edu/h/GCA_017655625.1 -Cordyceps militaris ATCC 34164 INSDC GCA_008080495.1 yes 0 0 7 Cordyceps militaris ATCC 34164 FungiDB 73501 GCA_008080495.1_ASM808049v1 GCA_008080495.1 False Cordyceps militaris ascomycetes C.militaris (ATCC 34164 2017) https://genome.ucsc.edu/h/GCA_008080495.1 -Cryptococcus neoformans var. grubii H99 2018 INSDC GCA_003011985.1 no 0 14 0 Cryptococcus neoformans var. grubii H99 2018 FungiDB 178876 GCA_003011985.1_ASM301198v1 GCA_003011985.1 False Cryptococcus neoformans var. grubii basidiomycetes C.neoformans var. grubii (H99 2018) https://genome.ucsc.edu/h/GCA_003011985.1 -Cryptococcus neoformans var. grubii KN99 GenBank GCA_002216725.1 no 0 0 14 Cryptococcus neoformans var. grubii KN99 FungiDB 178876 GCA_002216725.1_ASM221672v1 GCA_002216725.1 False Cryptococcus neoformans var. grubii basidiomycetes C.neoformans var. grubii (KN99 2017) https://genome.ucsc.edu/h/GCA_002216725.1 -Cryptococcus neoformans strain:VNII INSDC GCA_022832995.1 no 0 0 14 Cryptococcus neoformans strain:VNII FungiDB 5207 GCA_022832995.1_ASM2283299v1 GCA_022832995.1 False Cryptococcus neoformans basidiomycetes C.neoformans (VNII 2022) https://genome.ucsc.edu/h/GCA_022832995.1 -Cryptosporidium parvum 2022 INSDC GCA_019844115.2 no 0 0 8 Cryptosporidium parvum 2022 CryptoDB 5807 GCA_019844115.2_ASM1984411v2 GCA_019844115.2 False Cryptosporidium parvum apicomplexans C.parvum (2021) https://genome.ucsc.edu/h/GCA_019844115.2 -Cryptosporidium parvum IOWA-ATCC GenBank GCA_015245375.1 no 0 0 8 Cryptosporidium parvum IOWA-ATCC CryptoDB 5807 GCA_015245375.1_ASM1524537v1 GCA_015245375.1 False Cryptosporidium parvum apicomplexans C.parvum (IOWA-ATCC 2020) https://genome.ucsc.edu/h/GCA_015245375.1 -Cavia porcellus 2N INSDC GCA_000151735.1 yes 0 3143 0 Cavia porcellus 2N HostDB 10141 GCF_000151735.1_Cavpor3.0 GCA_000151735.1 GCF_000151735.1 False Cavia porcellus domestic guinea pig (2N 2008 refseq) https://genome.ucsc.edu/h/GCF_000151735.1 -Coccidioides posadasii strain Silveira 2022 INSDC GCA_018416015.2 no 0 0 8 Coccidioides posadasii strain Silveira 2022 FungiDB 443226 GCA_018416015.2_ASM1841601v2 GCA_018416015.2 GCF_018416015.1 False Coccidioides posadasii str. Silveira ascomycetes C.posadasii str. (Silveira 2022) https://genome.ucsc.edu/h/GCA_018416015.2 -Candida pseudohaemulonii strain B12108 INSDC GCA_003013735.1 yes 0 36 0 [Candida] pseudohaemulonis B12108 FungiDB 418784 GCF_003013735.1_Cand_pseudohaemulonii_B12108 GCA_003013735.1 GCF_003013735.1 True Candidozyma pseudohaemuli budding yeast C.pseudohaemulonis https://genome.ucsc.edu/h/GCF_003013735.1 -Chrysosporium queenslandicum isolate CBS 280.77 GenBank GCA_001430955.1 yes 2724 0 0 Chrysosporium queenslandicum isolate CBS 280.77 FungiDB 264361 GCA_001430955.1_ASM143095v1 GCA_001430955.1 False Chrysosporium queenslandicum ascomycetes C.queenslandicum (CBS 280.77 2015) https://genome.ucsc.edu/h/GCA_001430955.1 -Culex quinquefasciatus JHB 2020 INSDC GCA_015732765.1 yes 53 0 3 Culex quinquefasciatus JHB 2020 VectorBase 7176 GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal GCA_015732765.1 GCF_015732765.1 False Culex quinquefasciatus southern house mosquito https://genome.ucsc.edu/h/GCF_015732765.1 -Culex quinquefasciatus Johannesburg INSDC GCA_000209185.1 no 0 3171 0 Culex quinquefasciatus Johannesburg VectorBase 7176 GCF_000209185.1_CulPip1.0 GCA_000209185.1 GCF_000209185.1 True Culex quinquefasciatus southern house mosquito (JHB 2007) https://genome.ucsc.edu/h/GCF_000209185.1 -Cryptosporidium ryanae 45019 INSDC GCA_009792415.2 yes 0 93 0 Cryptosporidium ryanae 45019 CryptoDB 515981 GCF_009792415.1_ASM979241v2 GCA_009792415.2 GCF_009792415.1 True Cryptosporidium ryanae apicomplexans C.ryanae (45019 2022) https://genome.ucsc.edu/h/GCF_009792415.1 -Cryptosporidium sp. chipmunk genotype I strain 37763 INSDC GCA_004936735.2 yes 0 50 0 Cryptosporidium sp. chipmunk genotype I strain 37763 CryptoDB 1280935 GCA_004936735.2_CCh_genotype_I GCA_004936735.2 GCF_004936735.1 True Cryptosporidium sp. chipmunk genotype I apicomplexans C.sp. chipmunk genotype I (37763 2021) https://genome.ucsc.edu/h/GCA_004936735.2 -Cystoisospora suis strain Wien I GenBank GCA_002600585.1 yes 14627 0 0 Cystoisospora suis strain Wien I ToxoDB 483139 GCF_002600585.1_ASM260058v1 GCA_002600585.1 GCF_002600585.1 False Cystoisospora suis apicomplexans C.suis (Wien I 2017) https://genome.ucsc.edu/h/GCF_002600585.1 -Candida tropicalis MYA-3404 2020 INSDC GCA_013177555.1 no 0 0 7 Candida tropicalis MYA-3404 2020 FungiDB 5482 GCA_013177555.1_ASM1317755v1 GCA_013177555.1 False Candida tropicalis budding yeast C.tropicalis (MYA-3404 2020) https://genome.ucsc.edu/h/GCA_013177555.1 -Cryptosporidium tyzzeri isolate UGA55 GenBank GCA_007210665.1 yes 3 0 8 Cryptosporidium tyzzeri isolate UGA55 CryptoDB 756076 GCA_007210665.1_Ctyz_UGA_55 GCA_007210665.1 False Cryptosporidium tyzzeri apicomplexans C.tyzzeri (UGA55 2019) https://genome.ucsc.edu/h/GCA_007210665.1 -Cryptosporidium ubiquitum isolate 39726 GenBank GCA_001865345.1 yes 39 0 0 Cryptosporidium ubiquitum isolate 39726 CryptoDB 857276 GCF_001865345.1_ASM186534v1 GCA_001865345.1 GCF_001865345.1 True Cryptosporidium ubiquitum apicomplexans C.ubiquitum (39726 2016) https://genome.ucsc.edu/h/GCF_001865345.1 -Dermacentor andersoni qqDerAnde1.1 INSDC GCA_023375915.1 no 0 8198 0 Dermacentor andersoni qqDerAnde1.1 VectorBase 34620 GCA_023375915.1_qqDerAnde1.1_alternate_haplotype GCA_023375915.1 False Dermacentor andersoni mite/tick D.andersoni (qqDerAnde1 alternate hap 2022) https://genome.ucsc.edu/h/GCA_023375915.1 -Dermacentor andersoni qqDerAnde1.2 INSDC GCF_023375885.1 yes 0 3118 0 Dermacentor andersoni qqDerAnde1.2 VectorBase 34620 GCF_023375885.1_qqDerAnde1.2 GCA_023375885.2 GCF_023375885.1 False Dermacentor andersoni mites & ticks D.andersoni (primary hap 2022) https://genome.ucsc.edu/h/GCF_023375885.1 -Debaryomyces fabryi CBS 789 INSDC GCA_001447935.2 yes 0 534 0 Debaryomyces fabryi CBS 789 FungiDB 58627 GCF_001447935.2_debFab1.1 GCA_001447935.2 GCF_001447935.2 True Debaryomyces fabryi budding yeast D.fabryi https://genome.ucsc.edu/h/GCF_001447935.2 -Drosophila melanogaster iso-1 INSDC GCA_000001215.4 yes 0 1862 7 Drosophila melanogaster iso-1 VectorBase 7227 GCF_000001215.4_Release_6_plus_ISO1_MT GCA_000001215.4 GCF_000001215.4 True Drosophila melanogaster fly D.melanogaster https://genome.ucsc.edu/h/GCF_000001215.4 -Dictyocoela muelleri Ou54 INSDC GCA_016256075.1 yes 0 11522 0 Dictyocoela muelleri Ou54 MicrosporidiaDB 279532 GCA_016256075.1_ASM1625607v1 GCA_016256075.1 False Dictyocoela muelleri microsporidians D.muelleri (Ou54 2020) https://genome.ucsc.edu/h/GCA_016256075.1 -Dictyostelium purpureum QSDP1 INSDC GCF_000190715.1 yes 0 799 0 Dictyostelium purpureum QSDP1 AmoebaDB 5786 GCA_000190715.1_v1.0 GCA_000190715.1 GCF_000190715.1 True Dictyostelium purpureum cellular slime molds (QSDP1 2011) https://genome.ucsc.edu/h/GCA_000190715.1 -Dictyocoela roeselum Ou19 INSDC GCA_016255985.1 yes 0 1033 0 Dictyocoela roeselum Ou19 MicrosporidiaDB 288439 GCA_016255985.1_ASM1625598v1 GCA_016255985.1 False Dictyocoela roeselum microsporidians D.roeselum (Ou19 2020) https://genome.ucsc.edu/h/GCA_016255985.1 -Diutina rugosa CBS 613 INSDC GCA_008704595.1 yes 0 169 0 Diutina rugosa CBS 613 FungiDB 5481 GCF_008704595.1_ASM870459v1 GCA_008704595.1 GCF_008704595.1 True Diutina rugosa budding yeast D.rugosa https://genome.ucsc.edu/h/GCF_008704595.1 -Dermacentor silvarum Dsil-2018 INSDC GCA_013339745.2 yes 0 1653 11 Dermacentor silvarum Dsil-2018 VectorBase 543639 GCF_013339745.2_BIME_Dsil_1.4 GCA_013339745.2 GCF_013339745.2 False Dermacentor silvarum mites & ticks D.silvarum (v2 Dsil-2018 2022) https://genome.ucsc.edu/h/GCF_013339745.2 -Eimeria acervulina Houghton GenBank GCA_000499425.1 yes 0 3415 0 Eimeria acervulina Houghton ToxoDB 5801 GCF_000499425.1_EAH001 GCA_000499425.1 GCF_000499425.1 True Eimeria acervulina apicomplexans E.acervulina (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499425.1 -Emergomyces africanus CBS 136260 INSDC GCA_001660665.1 yes 0 4444 0 Emergomyces africanus CBS 136260 FungiDB 1955775 GCA_001660665.1_Emmo_afri_EA111 GCA_001660665.1 False Emergomyces africanus ascomycetes E.africanus (CBS 136260 2016) https://genome.ucsc.edu/h/GCA_001660665.1 -Eimeria brunetti Houghton GenBank GCA_000499725.1 yes 0 8575 0 Eimeria brunetti Houghton ToxoDB 51314 GCA_000499725.1_EBH001 GCA_000499725.1 False Eimeria brunetti apicomplexans E.brunetti (Houghton 2013) https://genome.ucsc.edu/h/GCA_000499725.1 -Enterospora canceri strain GB1 GenBank GCA_002087915.1 yes 537 0 0 Enterospora canceri strain GB1 MicrosporidiaDB 1081671 GCA_002087915.1_ASM208791v1 GCA_002087915.1 False Enterospora canceri microsporidians E.canceri (GB1 2017) https://genome.ucsc.edu/h/GCA_002087915.1 -Eimeria falciformis Bayer Haberkorn 1970 GenBank GCA_002271815.1 yes 751 0 0 Eimeria falciformis Bayer Haberkorn 1970 ToxoDB 84963 GCA_002271815.1_ASM227181v1 GCA_002271815.1 False Eimeria falciformis apicomplexans E.falciformis (Bayer Haberkorn 1970 2017) https://genome.ucsc.edu/h/GCA_002271815.1 -Encephalitozoon hellem Swiss GenBank GCA_018342045.1 no 0 32 0 Encephalitozoon hellem Swiss MicrosporidiaDB 27973 GCA_018342045.1_Swiss_hellem_version_1 GCA_018342045.1 False Encephalitozoon hellem microsporidians E.hellem (Swiss 2021) https://genome.ucsc.edu/h/GCA_018342045.1 -Enterocytozoon hepatopenaei EHP-ID16 INSDC GCA_003709115.1 no 0 162 0 Enterocytozoon hepatopenaei EHP-ID16 MicrosporidiaDB 646526 GCA_003709115.1_ASM370911v1 GCA_003709115.1 False Ecytonucleospora hepatopenaei microsporidians E.hepatopenaei (EHP-ID16 2018) https://genome.ucsc.edu/h/GCA_003709115.1 -Enterocytozoon hepatopenaei strain TH1 GenBank GCA_002081675.1 yes 62 0 0 Enterocytozoon hepatopenaei strain TH1 MicrosporidiaDB 646526 GCA_002081675.1_ASM208167v1 GCA_002081675.1 False Ecytonucleospora hepatopenaei microsporidians E.hepatopenaei (TH1 2017) https://genome.ucsc.edu/h/GCA_002081675.1 -Entamoeba histolytica Rahman INSDC GCA_917563895.1 no 0 18523 0 Entamoeba histolytica Rahman AmoebaDB 294381 GCA_917563895.1_Assembly_1 GCA_917563895.1 False Entamoeba histolytica HM-1:IMSS E.histolytica HM-1:IMSS (Rahman 2021) https://genome.ucsc.edu/h/GCA_917563895.1 -Eimeria maxima Weybridge GenBank GCA_000499605.1 yes 0 3564 0 Eimeria maxima Weybridge ToxoDB 5804 GCF_000499605.1_EMW001 GCA_000499605.1 GCF_000499605.1 True Eimeria maxima apicomplexans E.maxima (Weybridge 2013) https://genome.ucsc.edu/h/GCF_000499605.1 -Exophiala mesophila strain CBS 40295 GenBank GCA_000836275.1 yes 0 9 0 Exophiala mesophila strain CBS 40295 FungiDB 212818 GCF_000836275.1_Exop_meso_CBS40295_V1 GCA_000836275.1 GCF_000836275.1 True Exophiala mesophila ascomycetes E.mesophila https://genome.ucsc.edu/h/GCF_000836275.1 -Eimeria mitis Houghton GenBank GCA_000499745.2 yes 0 15978 0 Eimeria mitis Houghton ToxoDB 44415 GCF_000499745.2_EMH001 GCA_000499745.2 GCF_000499745.2 True Eimeria mitis apicomplexans E.mitis (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499745.2 -Endotrypanum monterogeii strain LV88 GenBank GCA_000333855.2 yes 0 1925 36 Endotrypanum monterogeii strain LV88 TriTrypDB 5705 GCA_000333855.2_Endotrypanum_monterogeii-LV88-1.0.3 GCA_000333855.2 False Endotrypanum monterogeii Endotrypanum monterogeii (LV88 2016) https://genome.ucsc.edu/h/GCA_000333855.2 -Entamoeba moshkovskii Laredo GenBank GCA_002914575.1 yes 3460 1147 0 Entamoeba moshkovskii Laredo AmoebaDB 41668 GCA_002914575.1_ASM291457v1 GCA_002914575.1 False Entamoeba moshkovskii E.moshkovskii (Laredo 2018) https://genome.ucsc.edu/h/GCA_002914575.1 -Eimeria necatrix Houghton GenBank GCA_000499385.1 yes 0 3707 0 Eimeria necatrix Houghton ToxoDB 51315 GCF_000499385.1_ENH001 GCA_000499385.1 GCF_000499385.1 True Eimeria necatrix apicomplexans E.necatrix (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499385.1 -Exophiala oligosperma strain CBS 72588 GenBank GCA_000835515.1 yes 0 143 0 Exophiala oligosperma strain CBS 72588 FungiDB 215243 GCF_000835515.1_Exop_olig_CBS72588_V1 GCA_000835515.1 GCF_000835515.1 True Exophiala oligosperma ascomycetes E.oligosperma https://genome.ucsc.edu/h/GCF_000835515.1 -Emergomyces orientalis 5z489 INSDC GCA_002110485.1 yes 0 108 0 Emergomyces orientalis 5z489 FungiDB 1972497 GCA_002110485.1_ASM211048v1 GCA_002110485.1 False Emergomyces orientalis ascomycetes E.orientalis (5z489 2017) https://genome.ucsc.edu/h/GCA_002110485.1 -Eimeria praecox Houghton GenBank GCA_000499445.1 yes 0 21348 0 Eimeria praecox Houghton ToxoDB 51316 GCA_000499445.1_EPH001 GCA_000499445.1 False Eimeria praecox apicomplexans E.praecox (Houghton 2013) https://genome.ucsc.edu/h/GCA_000499445.1 -Exophiala spinifera CBS 89968 INSDC GCA_000836115.1 yes 0 28 0 Exophiala spinifera CBS 89968 FungiDB 91928 GCF_000836115.1_Exop_spin_CBS89968_V1 GCA_000836115.1 GCF_000836115.1 True Exophiala spinifera ascomycetes E.spinifera https://genome.ucsc.edu/h/GCF_000836115.1 -Eimeria tenella Houghton 2021 INSDC GCA_905310635.1 yes 0 0 15 Eimeria tenella Houghton 2021 ToxoDB 5802 GCA_905310635.1_pEimTen1.1 GCA_905310635.1 False Eimeria tenella apicomplexans E.tenella (2021) https://genome.ucsc.edu/h/GCA_905310635.1 -Fusarium circinatum NRRL 25331 INSDC GCA_013396185.1 yes 0 1222 0 Fusarium circinatum NRRL 25331 FungiDB 48490 GCA_013396185.1_ASM1339618v1 GCA_013396185.1 False Fusarium circinatum ascomycetes F.circinatum (NRRL 25331 2020) https://genome.ucsc.edu/h/GCA_013396185.1 -Fusarium graminearum DAOM 233423 INSDC GCA_000966635.1 no 0 869 0 Fusarium graminearum DAOM 233423 FungiDB 5518 GCA_000966635.1_Fus_gra_233423_v1 GCA_000966635.1 False Fusarium graminearum ascomycetes F.graminearum (233423 2015) https://genome.ucsc.edu/h/GCA_000966635.1 -Fusarium mangiferae MRC7560 INSDC GCA_900044065.1 yes 0 254 0 Fusarium mangiferae MRC7560 FungiDB 192010 GCF_900044065.1_Genome_assembly_version_1 GCA_900044065.1 GCF_900044065.1 True Fusarium mangiferae ascomycetes F.mangiferae MRC7560 https://genome.ucsc.edu/h/GCF_900044065.1 -Fusarium odoratissimum strain race 4 GenBank GCA_000350365.1 yes 0 840 0 Fusarium odoratissimum strain race 4 FungiDB 2502994 GCA_000350365.1_Foc4_1.0 GCA_000350365.1 False Fusarium odoratissimum ascomycetes F.odoratissimum (race 4 2013) https://genome.ucsc.edu/h/GCA_000350365.1 -Fusarium proliferatum strain NRRL62905 GenBank GCA_900029915.1 no 155 0 0 Fusarium proliferatum strain NRRL62905 FungiDB 948311 GCA_900029915.1_F._proliferatum_NRRL62905_version_1 GCA_900029915.1 False Fusarium proliferatum ascomycetes F.proliferatum (NRRL62905 2016) https://genome.ucsc.edu/h/GCA_900029915.1 -Fusarium solani FSSC 5 MPI-SDFR-AT-0091 INSDC GCF_020744495.1 yes 0 74 0 Fusarium solani FSSC 5 MPI-SDFR-AT-0091 FungiDB 169388 GCF_020744495.1_Fusso1 GCA_020744495.1 GCF_020744495.1 True Fusarium solani ascomycetes F.solani https://genome.ucsc.edu/h/GCF_020744495.1 -Giardia Assemblage A2 isolate DH GenBank GCA_000498715.1 no 239 0 0 Giardia Assemblage A 2 isolate DH GiardiaDB 5741 GCA_000498715.1_ASM49871v1 GCA_000498715.1 False Giardia intestinalis diplomonads (DH 2013) https://genome.ucsc.edu/h/GCA_000498715.1 -Giardia assemblage A isolate AS175 GenBank GCA_001493575.1 no 1139 0 0 Giardia Assemblage A AS175 GiardiaDB 941442 GCA_001493575.1_GIAS175 GCA_001493575.1 False Giardia intestinalis assemblage A diplomonads (AS175 2013) https://genome.ucsc.edu/h/GCA_001493575.1 -Giardia Assemblage A isolate CIA INSDC GCA_022985015.1 no 0 93 0 Giardia Assemblage A isolate CIA GiardiaDB 5741 GCA_022985015.1_USDA_CIA_1 GCA_022985015.1 False Giardia intestinalis diplomonads (CIA 2022) https://genome.ucsc.edu/h/GCA_022985015.1 -Giardia Assemblage A isolate WB 2019 INSDC GCA_000002435.2 yes 0 30 5 Giardia Assemblage A isolate WB 2019 GiardiaDB 5741 GCF_000002435.2_UU_WB_2.1 GCA_000002435.2 GCF_000002435.2 True Giardia intestinalis diplomonads (WB C6 2019) https://genome.ucsc.edu/h/GCF_000002435.2 -Giardia Assemblage A isolate WB Calgary INSDC GCA_011634545.1 no 0 37 0 Giardia Assemblage A isolate WB Calgary GiardiaDB 5741 GCA_011634545.1_ASM1163454v1 GCA_011634545.1 False Giardia intestinalis diplomonads (WB 2020) https://genome.ucsc.edu/h/GCA_011634545.1 -Giardia Assemblage B isolate BAH15c1 GenBank GCA_001543975.1 no 0 508 0 Giardia Assemblage B isolate BAH15c1 GiardiaDB 1394984 GCA_001543975.1_G_duodenalis_AssB_BAH15c1 GCA_001543975.1 False Giardia intestinalis assemblage B diplomonads (BAH15c1 2016) https://genome.ucsc.edu/h/GCA_001543975.1 -Giardia Assemblage B isolate GS Calgary INSDC GCA_011634595.1 no 0 19 0 Giardia Assemblage B isolate GS Calgary GiardiaDB 5741 GCA_011634595.1_ASM1163459v1 GCA_011634595.1 False Giardia intestinalis diplomonads (GS 2020) https://genome.ucsc.edu/h/GCA_011634595.1 -Giardia Assemblage B isolate GS_B GenBank GCA_000498735.1 no 543 0 0 Giardia Assemblage B isolate GS_B GiardiaDB 5741 GCA_000498735.1_ASM49873v1 GCA_000498735.1 False Giardia intestinalis diplomonads (GS 2013) https://genome.ucsc.edu/h/GCA_000498735.1 -Giardia Assemblage D isolate DID INSDC GCA_022985025.1 no 0 260 0 Giardia Assemblage D isolate DID GiardiaDB 5741 GCA_022985025.1_USDA_DID_1 GCA_022985025.1 False Giardia intestinalis diplomonads (DID 2022) https://genome.ucsc.edu/h/GCA_022985025.1 -Glossina austeni TTRI INSDC GCA_000688735.1 yes 0 2205 0 Glossina austeni TTRI VectorBase 7395 GCA_000688735.1_Glossina_austeni-1.0.3 GCA_000688735.1 False Glossina austeni tsetse fly G.austeni (2014) https://genome.ucsc.edu/h/GCA_000688735.1 -Glossina brevipalpis IAEA INSDC GCA_000671755.1 yes 0 1651 0 Glossina brevipalpis IAEA VectorBase 37001 GCA_000671755.1_Glossina_brevipalpis_1.0.3 GCA_000671755.1 False Glossina brevipalpis tsetse fly G.brevipalpis (2014) https://genome.ucsc.edu/h/GCA_000671755.1 -Glossina fuscipes IAEA INSDC GCA_000671735.1 no 0 2395 0 Glossina fuscipes IAEA VectorBase 201502 GCA_000671735.1_Glossina_fuscipes-3.0.2 GCA_000671735.1 False Glossina fuscipes fuscipes tsetse fly G.fuscipes fuscipes (2014) https://genome.ucsc.edu/h/GCA_000671735.1 -Glossina fuscipes IAEA 2018 INSDC GCA_014805625.1 yes 0 7986 0 Glossina fuscipes IAEA 2018 VectorBase 7396 GCF_014805625.2_Yale_Gfus_2 GCA_014805625.1 GCF_014805625.2 False Glossina fuscipes tsetse fly (v2 IAEA_lab_2018 2020) https://genome.ucsc.edu/h/GCF_014805625.2 -Gallus gallus isolate bGalGal1 INSDC GCF_016699485.2 yes 0 172 41 Gallus gallus isolate bGalGal1 HostDB 9031 GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b GCA_016699485.1 GCF_016699485.2 True Gallus gallus chicken white leghorn layer X broiler (broiler haplotype 2021 v2 2021) https://genome.ucsc.edu/h/GCF_016699485.2 -Giardia intestinalis Beaver INSDC GCA_011634555.1 no 0 8 0 Giardia Assemblage A Beaver GiardiaDB 5741 GCA_011634555.1_ASM1163455v1 GCA_011634555.1 False Giardia intestinalis diplomonads (beaver 2020) https://genome.ucsc.edu/h/GCA_011634555.1 -Glossina morsitans Yale INSDC GCA_001077435.1 yes 0 13807 0 Glossina morsitans Yale VectorBase 37546 GCA_001077435.1_ASM107743v1 GCA_001077435.1 False Glossina morsitans morsitans tsetse fly G.morsitans morsitans (Yale 2014) https://genome.ucsc.edu/h/GCA_001077435.1 -Giardia muris strain Roberts-Thomson GenBank GCA_006247105.1 yes 54 0 5 Giardia muris strain Roberts-Thomson GiardiaDB 5742 GCA_006247105.1_UU_GM_1.1 GCA_006247105.1 False Giardia muris diplomonads (Roberts-Thomson 2019) https://genome.ucsc.edu/h/GCA_006247105.1 -Gregarina niphandrodes Unknown strain GenBank GCA_000223845.4 yes 0 469 0 Gregarina niphandrodes Unknown strain CryptoDB 110365 GCF_000223845.1_GNI3 GCA_000223845.4 GCF_000223845.1 True Gregarina niphandrodes apicomplexans G.niphandrodes (2014) https://genome.ucsc.edu/h/GCF_000223845.1 -Glossina pallidipes IAEA INSDC GCA_000688715.1 yes 0 1726 0 Glossina pallidipes IAEA VectorBase 7398 GCA_000688715.1_Glossina_pallidipes-1.0.3 GCA_000688715.1 False Glossina pallidipes tsetse fly G.pallidipes (2014) https://genome.ucsc.edu/h/GCA_000688715.1 -Glossina palpalis IAEA INSDC GCA_000818775.1 yes 0 3926 0 Glossina palpalis IAEA VectorBase 67801 GCA_000818775.1_Glossina_palpalis_gambiensis-2.0.1 GCA_000818775.1 False Glossina palpalis gambiensis tsetse fly G.palpalis gambiensis (146720 2015) https://genome.ucsc.edu/h/GCA_000818775.1 -Hyalomma asiaticum Hyas-2018 INSDC GCA_013339685.2 yes 0 6308 11 Hyalomma asiaticum Hyas-2018 VectorBase 266040 GCA_013339685.2_BIME_Hyas_1.3 GCA_013339685.2 False Hyalomma asiaticum mite/tick H.asiaticum (Hyas-2018 2020) https://genome.ucsc.edu/h/GCA_013339685.2 -Histoplasma capsulatum G184AR INSDC GCA_017607465.1 no 0 11 0 Histoplasma capsulatum G184AR FungiDB 5037 GCA_017607465.1_ASM1760746v1 GCA_017607465.1 False Histoplasma capsulatum ascomycetes H.capsulatum (G184AR 2021) https://genome.ucsc.edu/h/GCA_017607465.1 -Histoplasma capsulatum WU24 INSDC GCA_017310585.1 no 0 0 7 Histoplasma capsulatum WU24 FungiDB 5037 GCA_017310585.1_ASM1731058v1 GCA_017310585.1 False Histoplasma capsulatum ascomycetes H.capsulatum (WU24 2021) https://genome.ucsc.edu/h/GCA_017310585.1 -Hepatospora eriocheir strain GB1 GenBank GCA_002087885.1 yes 1300 0 0 Hepatospora eriocheir strain GB1 MicrosporidiaDB 1081669 GCA_002087885.1_ASM208788v1 GCA_002087885.1 False Hepatospora eriocheir microsporidians H.eriocheir (GB1 2017) https://genome.ucsc.edu/h/GCA_002087885.1 -Hepatospora eriocheir strain canceri GenBank GCA_002087875.1 no 2344 0 0 Hepatospora eriocheir strain canceri MicrosporidiaDB 1081669 GCA_002087875.1_ASM208787v1 GCA_002087875.1 False Hepatospora eriocheir microsporidians H.eriocheir (canceri 2017) https://genome.ucsc.edu/h/GCA_002087875.1 -Hanseniaspora guilliermondii strain UTAD222 INSDC GCA_900119595.1 yes 0 208 0 Hanseniaspora guilliermondii strain UTAD222 FungiDB 56406 GCA_900119595.1_version_1 GCA_900119595.1 False Hanseniaspora guilliermondii budding yeast H.guilliermondii (UTAD222 2016) https://genome.ucsc.edu/h/GCA_900119595.1 -Hammondia hammondi strain H.H.34 GenBank GCA_000258005.2 yes 0 14860 0 Hammondia hammondi strain H.H.34 ToxoDB 99158 GCF_000258005.1_HHA1_v02 GCA_000258005.2 GCF_000258005.1 True Hammondia hammondi apicomplexans H.hammondi (H.H.34 2014) https://genome.ucsc.edu/h/GCF_000258005.1 -Haemaphysalis longicornis HaeL-2018 INSDC GCA_013339765.2 yes 0 3874 11 Haemaphysalis longicornis HaeL-2018 VectorBase 44386 GCA_013339765.2_BIME_HaeL_1.3 GCA_013339765.2 False Haemaphysalis longicornis longhorned tick (HaeL-2018 2020) https://genome.ucsc.edu/h/GCA_013339765.2 -Hamiltosporidium magnivora BE-OM-2 INSDC GCA_004325065.1 yes 0 3550 0 Hamiltosporidium magnivora BE-OM-2 MicrosporidiaDB 148818 GCA_004325065.1_BEOM2_v1 GCA_004325065.1 False Hamiltosporidium magnivora microsporidians H.magnivora (BE-OM-2 2019) https://genome.ucsc.edu/h/GCA_004325065.1 -Hamiltosporidium magnivora IL-BN-2 INSDC GCA_004325035.1 no 0 3833 0 Hamiltosporidium magnivora IL-BN-2 MicrosporidiaDB 148818 GCA_004325035.1_ASM432503v1 GCA_004325035.1 False Hamiltosporidium magnivora microsporidians H.magnivora (IL-BN-2 2019) https://genome.ucsc.edu/h/GCA_004325035.1 -Histomonas meleagridis 2922-C6/04-10x INSDC GCA_020186115.1 yes 0 187 0 Histomonas meleagridis 2922-C6/04-10x TrichDB 135588 GCA_020186115.1_ASM2018611v1 GCA_020186115.1 GCF_020186115.1 True Histomonas meleagridis H.meleagridis (2922-C6/04-10x 2021) https://genome.ucsc.edu/h/GCA_020186115.1 -Histomonas meleagridis 2922-C6/04-290x INSDC GCA_020184695.1 no 0 281 0 Histomonas meleagridis 2922-C6/04-290x TrichDB 135588 GCA_020184695.1_ASM2018469v1 GCA_020184695.1 False Histomonas meleagridis H.meleagridis (2922-C6/04-290x 2021) https://genome.ucsc.edu/h/GCA_020184695.1 -Hepatocystis sp. ex Piliocolobus tephrosceles 2019 INSDC GCA_902459845.2 yes 0 2439 0 Hepatocystis sp. ex Piliocolobus tephrosceles 2019 PlasmoDB 2600580 GCA_902459845.2_HEP1 GCA_902459845.2 False Hepatocystis sp. ex Piliocolobus tephrosceles apicomplexans H.sp. ex Piliocolobus tephrosceles (2020) https://genome.ucsc.edu/h/GCA_902459845.2 -Haemoproteus tartakovskyi strain SISKIN1 INSDC GCA_001625125.1 yes 0 2982 0 Haemoproteus tartakovskyi strain SISKIN1 PlasmoDB 707206 GCA_001625125.1_ASM162512v1 GCA_001625125.1 False Haemoproteus tartakovskyi apicomplexans H.tartakovskyi (SISKIN1 2016) https://genome.ucsc.edu/h/GCA_001625125.1 -Hamiltosporidium tvaerminnensis FI-OER-3-3 INSDC GCA_004325045.1 yes 0 2915 0 Hamiltosporidium tvaerminnensis FI-OER-3-3 MicrosporidiaDB 1176355 GCA_004325045.1_FIOER33_v1 GCA_004325045.1 False Hamiltosporidium tvaerminnensis microsporidians H.tvaerminnensis (FI-OER-3-3 2019) https://genome.ucsc.edu/h/GCA_004325045.1 -Hamiltosporidium tvaerminnensis IL-G-3 INSDC GCA_004325075.1 no 0 2738 0 Hamiltosporidium tvaerminnensis IL-G-3 MicrosporidiaDB 1176355 GCA_004325075.1_ILG3_v1 GCA_004325075.1 False Hamiltosporidium tvaerminnensis microsporidians H.tvaerminnensis (IL-G-3 2019) https://genome.ucsc.edu/h/GCA_004325075.1 -Hanseniaspora uvarum strain AWRI3580 INSDC GCA_001747055.1 yes 0 18 0 Hanseniaspora uvarum strain AWRI3580 FungiDB 29833 GCA_001747055.1_ASM174705v1 GCA_001747055.1 False Hanseniaspora uvarum budding yeast H.uvarum (AWRI3580 2016) https://genome.ucsc.edu/h/GCA_001747055.1 -Hemileia vastatrix Race XXXIII INSDC GCA_004125335.1 yes 0 116756 0 Hemileia vastatrix Race XXXIII FungiDB 203904 GCA_004125335.1_ASM412533v1 GCA_004125335.1 False Hemileia vastatrix coffee rust fungus (Race XXXIII 2019) https://genome.ucsc.edu/h/GCA_004125335.1 -Ixodes persulcatus Iper-2018 INSDC GCA_013358835.2 yes 0 11596 0 Ixodes persulcatus Iper-2018 VectorBase 34615 GCA_013358835.2_BIME_Iper_1.3 GCA_013358835.2 False Ixodes persulcatus taiga tick (Iper-2018 2020) https://genome.ucsc.edu/h/GCA_013358835.2 -Ixodes ricinus Charles River INSDC GCA_000973045.2 yes 0 204516 0 Ixodes ricinus Charles River VectorBase 34613 GCA_000973045.2_ASM97304v2 GCA_000973045.2 False Ixodes ricinus castor bean tick (Charles River 2016) https://genome.ucsc.edu/h/GCA_000973045.2 -Ixodes scapularis ISE6 INSDC GCA_002892825.2 no 0 6476 0 Ixodes scapularis ISE6 VectorBase 6945 GCF_002892825.2_ISE6_asm2.2_deduplicated GCA_002892825.2 GCF_002892825.2 False Ixodes scapularis black-legged tick (JCVI 2018) https://genome.ucsc.edu/h/GCF_002892825.2 -Ixodes scapularis PalLabHiFi INSDC GCF_016920785.2 yes 0 648 0 Ixodes scapularis PalLabHiFi VectorBase 6945 GCF_016920785.2_ASM1692078v2 GCA_016920785.2 GCF_016920785.2 True Ixodes scapularis black-legged tick (U.Maryland v2 2021) https://genome.ucsc.edu/h/GCF_016920785.2 -Ixodes scapularis Wikel INSDC GCA_000208615.1 no 0 369492 0 Ixodes scapularis Wikel VectorBase 6945 GCF_000208615.1_JCVI_ISG_i3_1.0 GCA_000208615.1 GCF_000208615.1 True Ixodes scapularis black-legged tick (Wikel colony 2008) https://genome.ucsc.edu/h/GCF_000208615.1 -Leishmania amazonensis MHOM/BR/71973/M2269 GenBank GCA_000438535.1 yes 0 2627 0 Leishmania amazonensis MHOM/BR/71973/M2269 TriTrypDB 5659 GCA_000438535.1_LeiAma1.0 GCA_000438535.1 False Leishmania amazonensis Leishmania amazonensis (2013) https://genome.ucsc.edu/h/GCA_000438535.1 -Leishmania amazonensis strain PH8 INSDC GCA_025688915.1 no 0 42 34 Leishmania amazonensis strain PH8 TriTrypDB 5659 GCA_025688915.1_ASM2568891v1 GCA_025688915.1 False Leishmania amazonensis Leishmania amazonensis (PH8 2022) https://genome.ucsc.edu/h/GCA_025688915.1 -Leishmania arabica strain LEM1108 GenBank GCA_000410695.2 yes 0 132 36 Leishmania arabica strain LEM1108 TriTrypDB 40284 GCA_000410695.2_Leishmania_arabica_LEM1108-1.0.3 GCA_000410695.2 False Leishmania arabica Leishmania arabica (LEM1108 2016) https://genome.ucsc.edu/h/GCA_000410695.2 -Leishmania donovani strain BHU 1220 GenBank GCA_000470725.1 no 0 0 36 Leishmania donovani strain BHU 1220 TriTrypDB 5661 GCA_000470725.1_BHU1220 GCA_000470725.1 False Leishmania donovani Leishmania donovani (BHU 1220 2013) https://genome.ucsc.edu/h/GCA_000470725.1 -Leishmania donovani CL-SL GenBank GCA_003719575.1 no 0 0 36 Leishmania donovani CL-SL TriTrypDB 5661 GCA_003719575.1_ASM371957v1 GCA_003719575.1 False Leishmania donovani Leishmania donovani (LdCL 2018) https://genome.ucsc.edu/h/GCA_003719575.1 -Leishmania donovani HU3 INSDC GCA_900635355.2 no 0 0 36 Leishmania donovani HU3 TriTrypDB 5661 GCA_900635355.2_LDHU3_new GCA_900635355.2 False Leishmania donovani Leishmania donovani (2020) https://genome.ucsc.edu/h/GCA_900635355.2 -Leishmania enriettii strain LEM3045 GenBank GCA_000410755.2 yes 0 459 36 Leishmania enriettii strain LEM3045 TriTrypDB 5663 GCA_000410755.2_Leishmania_enrietti_LEM3045-1.0.2 GCA_000410755.2 False Leishmania enriettii Leishmania enriettii (LEM3045 2016) https://genome.ucsc.edu/h/GCA_000410755.2 -Leishmania enriettii MCAV/BR/2001/CUR178 INSDC GCA_017916305.1 no 0 18 36 Leishmania enriettii MCAV/BR/2001/CUR178 TriTrypDB 5663 GCA_017916305.1_LU_Lenr_1.0 GCA_017916305.1 GCF_017916305.1 True Leishmania enriettii Leishmania enriettii (CUR178 2021) https://genome.ucsc.edu/h/GCA_017916305.1 -Leishmania gerbilli strain LEM452 GenBank GCA_000443025.1 yes 0 106 36 Leishmania gerbilli strain LEM452 TriTrypDB 40285 GCA_000443025.1_Leishmania_gerbilii_LEM452-1.0.2 GCA_000443025.1 False Leishmania gerbilli Leishmania gerbilli (LEM452 2013) https://genome.ucsc.edu/h/GCA_000443025.1 -Lutzomyia longipalpis Jacobina INSDC GCA_000265325.1 no 0 11532 0 Lutzomyia longipalpis Jacobina VectorBase 7200 GCA_000265325.1_Llon_1.0 GCA_000265325.1 False Lutzomyia longipalpis fly L.longipalpis (2012) https://genome.ucsc.edu/h/GCA_000265325.1 -Lutzomyia longipalpis M1 INSDC GCF_024334085.1 yes 0 0 4 Lutzomyia longipalpis M1 VectorBase 7200 GCF_024334085.1_ASM2433408v1 GCA_024334085.1 GCF_024334085.1 True Lutzomyia longipalpis fly L.longipalpis (SR_M1_2022 2022) https://genome.ucsc.edu/h/GCF_024334085.1 -Leishmania major Friedlin 2021 INSDC GCA_916722125.1 no 0 0 36 Leishmania major Friedlin 2021 TriTrypDB 347515 GCA_916722125.1_LMJFC_annotationDEFINITIVO GCA_916722125.1 False Leishmania major strain Friedlin Leishmania major strain (Friedlin 2021) https://genome.ucsc.edu/h/GCA_916722125.1 -Leishmania martiniquensis LEM2494 GenBank GCA_000409445.2 yes 0 215 36 Leishmania martiniquensis LEM2494 TriTrypDB 1303197 GCA_000409445.2_Leishmania_MAR_LEM2494-1.0.3 GCA_000409445.2 False Leishmania sp. MAR LEM2494 Leishmania sp. MAR (LEM2494 2016) https://genome.ucsc.edu/h/GCA_000409445.2 -Leishmania martiniquensis MHOM/TH/2012/LSCM1 INSDC GCA_017916325.1 no 0 6 36 Leishmania martiniquensis MHOM/TH/2012/LSCM1 TriTrypDB 1580590 GCF_017916325.1_LU_Lmar_1.0 GCA_017916325.1 GCF_017916325.1 True Leishmania martiniquensis Leishmania martiniquensis (LSCM1 2021 refseq) https://genome.ucsc.edu/h/GCF_017916325.1 -Leishmania orientalis MHOM/TH/2014/LSCM4 INSDC GCA_017916335.1 yes 0 62 36 Leishmania orientalis MHOM/TH/2014/LSCM4 TriTrypDB 2249476 GCF_017916335.1_LU_Lori_1.0 GCA_017916335.1 GCF_017916335.1 True Leishmania orientalis Leishmania orientalis (LSCM4 2021) https://genome.ucsc.edu/h/GCF_017916335.1 -Leishmania panamensis strain MHOM/PA/94/PSC-1 GenBank GCA_000755165.1 no 0 0 35 Leishmania panamensis strain MHOM/PA/94/PSC-1 TriTrypDB 5679 GCF_000755165.1_ASM75516v1 GCA_000755165.1 GCF_000755165.1 True Leishmania panamensis Leishmania panamensis (MHOM/PA/94/PSC-1 2014 kinetoplastids) https://genome.ucsc.edu/h/GCF_000755165.1 -Lomentospora prolificans JHH-5317 GenBank GCA_002276285.1 yes 1624 0 0 Lomentospora prolificans JHH-5317 FungiDB 41688 GCA_002276285.1_Lprolificans_pilon GCA_002276285.1 False Lomentospora prolificans ascomycetes L.prolificans (JHH-5317 2017) https://genome.ucsc.edu/h/GCA_002276285.1 -Leptomonas pyrrhocoris H10 GenBank GCA_001293395.1 yes 0 25 35 Leptomonas pyrrhocoris H10 TriTrypDB 157538 GCF_001293395.1_ASM129339v1 GCA_001293395.1 GCF_001293395.1 True Leptomonas pyrrhocoris Leptomonas pyrrhocoris (H10 2015 kinetoplastids) https://genome.ucsc.edu/h/GCF_001293395.1 -Lichtheimia ramosa KPH11 INSDC GCA_008728235.1 yes 0 0 10 Lichtheimia ramosa KPH11 FungiDB 688394 GCA_008728235.1_ASM872823v1 GCA_008728235.1 False Lichtheimia ramosa fungi L.ramosa (KPH11 2019) https://genome.ucsc.edu/h/GCA_008728235.1 -Leptomonas seymouri ATCC 30220 GenBank GCA_001299535.1 yes 1222 0 0 Leptomonas seymouri ATCC 30220 TriTrypDB 5684 GCA_001299535.1_ASM129953v1 GCA_001299535.1 False Leptomonas seymouri Leptomonas seymouri (ATCC 30220 2015) https://genome.ucsc.edu/h/GCA_001299535.1 -Leishmania sp. Ghana MHOM/GH/2012/GH5 INSDC GCA_017918215.1 yes 0 80 36 Leishmania sp. Ghana MHOM/GH/2012/GH5 TriTrypDB 2803181 GCA_017918215.1_LU_Lgha_1.0 GCA_017918215.1 GCF_017918215.1 True Leishmania sp. Ghana 2012 LV757 Leishmania sp. Ghana 2012 LV757 (GH5 2021) https://genome.ucsc.edu/h/GCA_017918215.1 -Leishmania sp. Namibia MPRO/NA/1975/252/LV425 INSDC GCA_017918225.1 yes 0 31 36 Leishmania sp. Namibia MPRO/NA/1975/252/LV425 TriTrypDB 2802991 GCA_017918225.1_LU_LNam_1.0 GCA_017918225.1 GCF_017918225.1 True Leishmania sp. Namibia Leishmania sp. Namibia (253 2021) https://genome.ucsc.edu/h/GCA_017918225.1 -Leishmania tarentolae Parrot Tar II 2019 INSDC GCA_009731335.1 no 0 179 0 Leishmania tarentolae Parrot Tar II 2019 TriTrypDB 5689 GCA_009731335.1_Lta_assembly01 GCA_009731335.1 False Leishmania tarentolae Leishmania tarentolae (Parrot Tar II 2019) https://genome.ucsc.edu/h/GCA_009731335.1 -Leishmania turanica strain LEM423 GenBank GCA_000441995.1 yes 0 183 36 Leishmania turanica strain LEM423 TriTrypDB 62297 GCA_000441995.1_Leishmania_turanica_LEM423-1.0.2 GCA_000441995.1 False Leishmania turanica Leishmania turanica (LEM423 2013) https://genome.ucsc.edu/h/GCA_000441995.1 -Mitosporidium daphniae UGP3 GenBank GCA_000760515.2 yes 0 610 0 Mitosporidium daphniae UGP3 MicrosporidiaDB 1485682 GCF_000760515.2_UGP1.1 GCA_000760515.2 GCF_000760515.2 True Mitosporidium daphniae microsporidians M.daphniae https://genome.ucsc.edu/h/GCF_000760515.2 -Musca domestica aabys INSDC GCA_000371365.1 yes 0 20487 0 Musca domestica aabys VectorBase 7370 GCF_000371365.1_Musca_domestica-2.0.2 GCA_000371365.1 GCF_000371365.1 True Musca domestica house fly (aabys 2013 refseq) https://genome.ucsc.edu/h/GCF_000371365.1 -Musca domestica aabys 2023 INSDC GCF_030504385.1 no 0 339 0 Musca domestica aabys 2023 VectorBase 7370 GCF_030504385.1_Musca_domestica.polishedcontigs.V.1.1 GCA_030504385.2 GCF_030504385.1 False Musca domestica house fly (aabys 2023) https://genome.ucsc.edu/h/GCF_030504385.1 -Monocercomonoides exilis PA203 GenBank GCA_001643675.2 yes 0 101 0 Monocercomonoides exilis PA203 GiardiaDB 2049356 GCA_001643675.2_ASM164367v2 GCA_001643675.2 GCF_001643675.1 True Monocercomonoides exilis M.exilis (PA203 2021) https://genome.ucsc.edu/h/GCA_001643675.2 -Macaca fascicularis REF INSDC GCF_000364345.1 yes 0 7579 21 Macaca fascicularis REF HostDB 9541 GCF_000364345.1_Macaca_fascicularis_5.0 GCA_000364345.1 GCF_000364345.1 False Macaca fascicularis crab-eating macaque WashU 2013 refseq https://genome.ucsc.edu/h/GCF_000364345.1 -Monilinia fructicola CPMC6 INSDC GCA_016906325.1 yes 0 99 0 Monilinia fructicola CPMC6 FungiDB 38448 GCA_016906325.1_ASM1690632v1 GCA_016906325.1 False Monilinia fructicola ascomycetes M.fructicola (CPMC6 2021) https://genome.ucsc.edu/h/GCA_016906325.1 -Macaca mulatta isolate AG07107 INSDC GCA_003339765.3 yes 0 2916 22 Macaca mulatta isolate AG07107 HostDB 9544 GCF_003339765.1_Mmul_10 GCA_003339765.3 GCF_003339765.1 False Macaca mulatta Rhesus monkey (2019 U. Washington) https://genome.ucsc.edu/h/GCF_003339765.1 -Madurella mycetomatis mm55 INSDC GCA_001275765.2 yes 0 804 0 Madurella mycetomatis mm55 FungiDB 100816 GCA_001275765.2_ASM127576v2 GCA_001275765.2 False Madurella mycetomatis ascomycetes M.mycetomatis (mm55 2016) https://genome.ucsc.edu/h/GCA_001275765.2 -Myotis myotis mMyoMyo1 INSDC GCF_014108235.1 yes 0 92 0 Myotis myotis mMyoMyo1 HostDB 51298 GCF_014108235.1_mMyoMyo1.p GCA_014108235.1 GCF_014108235.1 False Myotis myotis greater mouse-eared bat (2020 Bat1K) https://genome.ucsc.edu/h/GCF_014108235.1 -Malassezia pachydermatis CBS 1879 INSDC GCA_001278385.1 yes 0 91 0 Malassezia pachydermatis CBS 1879 FungiDB 77020 GCF_001278385.1_MalaPachy GCA_001278385.1 GCF_001278385.1 True Malassezia pachydermatis basidiomycetes M.pachydermatis https://genome.ucsc.edu/h/GCF_001278385.1 -Malassezia restricta KCTC 27527 GenBank GCA_003290485.1 yes 0 0 9 Malassezia restricta KCTC 27527 FungiDB 76775 GCF_003290485.1_ASM329048v1 GCA_003290485.1 GCF_003290485.1 True Malassezia restricta basidiomycetes M.restricta https://genome.ucsc.edu/h/GCF_003290485.1 -Naganishia albida JCM2334 GenBank GCA_001599735.1 no 74 0 0 Naganishia albida JCM2334 FungiDB 100951 GCA_001599735.1_JCM_2334_assembly_v001 GCA_001599735.1 False Naganishia albida basidiomycetes N.albida (JCM 2334 2016) https://genome.ucsc.edu/h/GCA_001599735.1 -Naganishia albida NRRL Y-1402 GenBank GCA_001444555.1 yes 834 0 0 Naganishia albida NRRL Y-1402 FungiDB 100951 GCA_001444555.1_ASM144455v1 GCA_001444555.1 False Naganishia albida basidiomycetes N.albida (NRRL Y-1402 2015) https://genome.ucsc.edu/h/GCA_001444555.1 -Nematocida ausubeli ERTm2 GenBank GCA_000250695.1 yes 0 202 0 Nematocida ausubeli ERTm2 MicrosporidiaDB 1913371 GCA_000250695.1_Nema_parisii_ERTm2_V1 GCA_000250695.1 False Nematocida ausubeli microsporidians N.ausubeli (ERTm2 2012) https://genome.ucsc.edu/h/GCA_000250695.1 -Nematocida ausubeli ERTm6 GenBank GCA_000738915.1 no 0 22 0 Nematocida ausubeli ERTm6 MicrosporidiaDB 1913371 GCF_000738915.1_Nema_sp_1_ERTm6_V2 GCA_000738915.1 GCF_000738915.1 True Nematocida ausubeli microsporidians N.ausubeli (ERTm6 2014) https://genome.ucsc.edu/h/GCF_000738915.1 -Neospora caninum Liverpool 2019 INSDC GCA_016097395.1 no 31 0 13 Neospora caninum Liverpool 2019 ToxoDB 29176 GCA_016097395.1_Ncaninum_LIV GCA_016097395.1 False Neospora caninum apicomplexans N.caninum (Liverpool 2020) https://genome.ucsc.edu/h/GCA_016097395.1 -Nosema ceranae BRL INSDC GCA_004919615.1 no 0 110 0 Nosema ceranae BRL MicrosporidiaDB 40302 GCA_004919615.1_Ncer_3.0 GCA_004919615.1 False Vairimorpha ceranae microsporidians V.ceranae (BRL 2019) https://genome.ucsc.edu/h/GCA_004919615.1 -Nosema ceranae strain PA08_1199 GenBank GCA_000988165.1 no 536 0 0 Nosema ceranae strain PA08_1199 MicrosporidiaDB 40302 GCF_000988165.1_ASM98816v1 GCA_000988165.1 GCF_000988165.1 True Vairimorpha ceranae microsporidians N.ceranae https://genome.ucsc.edu/h/GCF_000988165.1 -Nematocida displodere strain JUm2807 GenBank GCA_001642395.1 yes 40 0 0 Nematocida displodere strain JUm2807 MicrosporidiaDB 1805483 GCA_001642395.1_ASM164239v1 GCA_001642395.1 GCF_001642395.1 True Nematocida displodere microsporidians N.displodere (JUm2807 2016) https://genome.ucsc.edu/h/GCA_001642395.1 -Naegleria fowleri ATCC 30863 GenBank GCA_000499105.1 no 0 1124 0 Naegleria fowleri ATCC 30863 AmoebaDB 5763 GCA_000499105.1_Naegleria_fowleri_1.0 GCA_000499105.1 False Naegleria fowleri brain-eating amoeba (ATCC 30863 2013) https://genome.ucsc.edu/h/GCA_000499105.1 -Naegleria fowleri strain ATCC 30894 INSDC GCA_008403515.1 no 0 81 0 Naegleria fowleri strain ATCC 30894 AmoebaDB 5763 GCF_008403515.1_ASM840351v1 GCA_008403515.1 GCF_008403515.1 False Naegleria fowleri brain-eating amoeba (ATCC 30894 2019) https://genome.ucsc.edu/h/GCF_008403515.1 -Naegleria fowleri strain Ty INSDC GCA_014843625.1 yes 0 0 37 Naegleria fowleri strain Ty AmoebaDB 5763 GCA_014843625.1_ASM1484362v1 GCA_014843625.1 False Naegleria fowleri brain-eating amoeba (Ty 2020) https://genome.ucsc.edu/h/GCA_014843625.1 -Nakaseomyces glabratus BG2 INSDC GCA_014217725.1 no 0 0 13 Nakaseomyces glabratus BG2 FungiDB 5478 GCA_014217725.1_ASM1421772v1 GCA_014217725.1 False Nakaseomyces glabratus budding yeast N.glabratus (BG2 2020) https://genome.ucsc.edu/h/GCA_014217725.1 -Nakaseomyces glabratus BG3993 INSDC GCA_020450195.1 no 0 0 13 Nakaseomyces glabratus BG3993 FungiDB 5478 GCA_020450195.1_ASM2045019v1 GCA_020450195.1 False Nakaseomyces glabratus budding yeast N.glabratus (BG3993 2021) https://genome.ucsc.edu/h/GCA_020450195.1 -Nakaseomyces glabratus CBS138 2020 INSDC GCA_010111755.1 no 0 0 13 Nakaseomyces glabratus CBS138 2020 FungiDB 5478 GCF_010111755.1_ASM1011175v1 GCA_010111755.1 GCF_010111755.1 True Nakaseomyces glabratus budding yeast N.glabratus (ATCC 2001 2020) https://genome.ucsc.edu/h/GCF_010111755.1 -Nakaseomyces glabratus DSY562 INSDC GCA_002219185.1 no 0 5 13 Nakaseomyces glabratus DSY562 FungiDB 5478 GCA_002219185.1_ASM221918v1 GCA_002219185.1 False Nakaseomyces glabratus budding yeast N.glabratus (DSY562 2017) https://genome.ucsc.edu/h/GCA_002219185.1 -Nosema granulosis Ou3-Ou53 INSDC GCA_015832245.1 yes 0 1754 0 Nosema granulosis Ou3-Ou53 MicrosporidiaDB 83296 GCA_015832245.1_ASM1583224v1 GCA_015832245.1 False Nosema granulosis microsporidians N.granulosis (Ou3-Ou53 2020) https://genome.ucsc.edu/h/GCA_015832245.1 -Naegleria lovaniensis strain ATCC 30569 INSDC GCA_003324165.2 yes 0 109 0 Naegleria lovaniensis strain ATCC 30569 AmoebaDB 51637 GCF_003324165.1_Nlova_2.1 GCA_003324165.2 GCF_003324165.1 False Naegleria lovaniensis N.lovaniensis (ATCC 30569 2021) https://genome.ucsc.edu/h/GCF_003324165.1 -Naegleria lovaniensis NL_76_15_250 INSDC GCA_022530875.1 no 0 199 0 Naegleria lovaniensis NL_76_15_250 AmoebaDB 51637 GCA_022530875.1_ASM2253087v1 GCA_022530875.1 False Naegleria lovaniensis N.lovaniensis (NL_76_15_250 2022) https://genome.ucsc.edu/h/GCA_022530875.1 -Nematocida major JUm2507 INSDC GCA_021653875.1 yes 0 111 0 Nematocida major JUm2507 MicrosporidiaDB 1912982 GCF_021653875.1_ASM2165387v1 GCA_021653875.1 GCF_021653875.1 True Nematocida major microsporidians N.major (JUm2507 2022) https://genome.ucsc.edu/h/GCF_021653875.1 -Ordospora colligata FI-SK-17-1 INSDC GCA_004325055.1 no 0 26 0 Ordospora colligata FI-SK-17-1 MicrosporidiaDB 174685 GCA_004325055.1_Ordospora_FISK_v1 GCA_004325055.1 False Ordospora colligata microsporidians O.colligata (FI-SK-17-1 2019) https://genome.ucsc.edu/h/GCA_004325055.1 -Ordospora colligata GB-EP-1 INSDC GCA_004324935.1 no 0 18 0 Ordospora colligata GB-EP-1 MicrosporidiaDB 174685 GCA_004324935.1_Ordospora_GBEP_v1 GCA_004324935.1 False Ordospora colligata microsporidians O.colligata (GB-EP-1 2019) https://genome.ucsc.edu/h/GCA_004324935.1 -Ordospora colligata NO-V-7 INSDC GCA_004324945.1 no 0 21 0 Ordospora colligata NO-V-7 MicrosporidiaDB 174685 GCA_004324945.1_Ordospora_NOV7_v1 GCA_004324945.1 False Ordospora colligata microsporidians O.colligata (NO-V-7 2019) https://genome.ucsc.edu/h/GCA_004324945.1 -Plasmodium adleri G01 GenBank GCA_900097015.1 yes 68 0 14 Plasmodium adleri G01 PlasmoDB 880535 GCF_900097015.1_PADLG01 GCA_900097015.1 GCF_900097015.1 True Plasmodium sp. gorilla clade G2 apicomplexans P.sp. gorilla clade G2 (2018) https://genome.ucsc.edu/h/GCF_900097015.1 -Podosphaera aphanis DRCT72020 INSDC GCA_022627015.2 yes 0 12702 0 Podosphaera aphanis DRCT72020 FungiDB 79252 GCA_022627015.2_ASM2262701v2 GCA_022627015.2 False Podosphaera aphanis powdery mildews (DRCT72020 2022) https://genome.ucsc.edu/h/GCA_022627015.2 -Phlebotomus argentipes India INSDC GCF_947086385.1 yes 0 64 0 Phlebotomus argentipes India VectorBase 94469 GCF_947086385.1_Phlebotomus_argentipes_genome_assembly GCA_947086385.1 GCF_947086385.1 True Phlebotomus argentipes fly P.argentipes (2022) https://genome.ucsc.edu/h/GCF_947086385.1 -Phialophora attinorum CBS 131958 INSDC GCF_001299255.1 yes 0 131 0 Phialophora attinorum CBS 131958 FungiDB 1664694 GCF_001299255.1_ASM129925v1 GCA_001299255.1 GCF_001299255.1 True Cyphellophora attinorum ascomycetes P.attinorum https://genome.ucsc.edu/h/GCF_001299255.1 -Plasmodium billcollinsi G01 GenBank GCA_900257145.2 yes 0 0 14 Plasmodium billcollinsi G01 PlasmoDB 720590 GCA_900257145.2_Plasmodium_billcollinsi GCA_900257145.2 False Plasmodium sp. DRC-Itaito apicomplexans P.sp. DRC-Itaito (2020) https://genome.ucsc.edu/h/GCA_900257145.2 -Plasmodium blacklocki G01 GenBank GCA_900097035.1 yes 83 0 14 Plasmodium blacklocki G01 PlasmoDB 880536 GCA_900097035.1_PBLACG01 GCA_900097035.1 False Plasmodium sp. gorilla clade G3 apicomplexans P.sp. gorilla clade G3 (2018) https://genome.ucsc.edu/h/GCA_900097035.1 -Plasmodium brasilianum strain Bolivian I INSDC GCA_023973825.1 yes 0 29 14 Plasmodium brasilianum strain Bolivian I PlasmoDB 5824 GCF_023973825.1_ASM2397382v1 GCA_023973825.1 GCF_023973825.1 False Plasmodium brasilianum apicomplexans P.brasilianum (Bolivian I 2022) https://genome.ucsc.edu/h/GCF_023973825.1 -Phytophthora cactorum 10300 INSDC GCA_003287315.1 yes 0 4623 0 Phytophthora cactorum 10300 FungiDB 29920 GCA_003287315.1_Pcac_10300_v1 GCA_003287315.1 False Phytophthora cactorum downy mildews (10300 2018) https://genome.ucsc.edu/h/GCA_003287315.1 -Pneumocystis canis CanA INSDC GCA_017788925.1 yes 0 33 0 Pneumocystis canis CanA FungiDB 2698477 GCA_017788925.1_ASM1778892v1 GCA_017788925.1 False Pneumocystis canis ascomycetes P.canis (CanA 2021) https://genome.ucsc.edu/h/GCA_017788925.1 -Phytophthora cinnamomi GKB4 INSDC GCA_018691715.1 yes 0 133 0 Phytophthora cinnamomi GKB4 FungiDB 4785 GCA_018691715.1_ASM1869171v1 GCA_018691715.1 GCF_018691715.1 True Phytophthora cinnamomi downy mildews (GKB4 2021) https://genome.ucsc.edu/h/GCA_018691715.1 -Plasmodium coatneyi Hackeri GenBank GCA_001680005.1 yes 0 0 14 Plasmodium coatneyi Hackeri PlasmoDB 208452 GCF_001680005.1_ASM168000v1 GCA_001680005.1 GCF_001680005.1 True Plasmodium coatneyi apicomplexans P.coatneyi (Hackeri 2016) https://genome.ucsc.edu/h/GCF_001680005.1 -Podospora comata strain T mat+ INSDC GCA_900290415.1 yes 0 0 7 Podospora comata strain T mat+ FungiDB 48703 GCA_900290415.1_version1 GCA_900290415.1 False Podospora comata ascomycetes P.comata (T 2018) https://genome.ucsc.edu/h/GCA_900290415.1 -Paratrypanosoma confusum CUL13 GenBank GCA_002921335.1 yes 1922 266 0 Paratrypanosoma confusum CUL13 TriTrypDB 1470209 GCA_002921335.1_ASM292133v1 GCA_002921335.1 False Paratrypanosoma confusum Paratrypanosoma confusum (CUL13MS 2018) https://genome.ucsc.edu/h/GCA_002921335.1 -Peronospora effusa R13 INSDC GCA_003843895.1 yes 0 784 0 Peronospora effusa R13 FungiDB 542832 GCA_003843895.1_ASM384389v1 GCA_003843895.1 False Peronospora effusa downy mildews (R13 2018) https://genome.ucsc.edu/h/GCA_003843895.1 -Penicillium expansum d1 INSDC GCA_000769735.1 yes 0 270 0 Penicillium expansum d1 FungiDB 27334 GCA_000769735.1_ASM76973v1 GCA_000769735.1 False Penicillium expansum ascomycetes P.expansum (d1 2014) https://genome.ucsc.edu/h/GCA_000769735.1 -Plasmodium falciparum 7G8 2019 INSDC GCA_009761555.1 no 0 20 0 Plasmodium falciparum 7G8 2019 PlasmoDB 5833 GCA_009761555.1_7G8_v1 GCA_009761555.1 False Plasmodium falciparum malaria parasite P. falciparum (7G8 2019) https://genome.ucsc.edu/h/GCA_009761555.1 -Plasmodium falciparum CD01 GenBank GCA_900617135.1 no 5 0 14 Plasmodium falciparum CD01 PlasmoDB 5833 GCA_900617135.1_PfCD01-2 GCA_900617135.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900617135.1 -Plasmodium falciparum GA01 GenBank GCA_900632005.1 no 4 0 14 Plasmodium falciparum GA01 PlasmoDB 5833 GCA_900632005.1_PfGA01-3 GCA_900632005.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632005.1 -Plasmodium falciparum GB4 GenBank GCA_900632035.1 no 10 0 14 Plasmodium falciparum GB4 PlasmoDB 5833 GCA_900632035.1_PfGB4-3 GCA_900632035.1 False Plasmodium falciparum malaria parasite P. falciparum (GB4 2018) https://genome.ucsc.edu/h/GCA_900632035.1 -Plasmodium falciparum GN01 GenBank GCA_900631995.1 no 3 0 14 Plasmodium falciparum GN01 PlasmoDB 5833 GCA_900631995.1_PfGN01-3 GCA_900631995.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900631995.1 -Plasmodium falciparum IT GenBank GCA_900632055.1 no 11 0 14 Plasmodium falciparum IT PlasmoDB 5833 GCA_900632055.1_PfIT-3 GCA_900632055.1 False Plasmodium falciparum malaria parasite P. falciparum (type strain: I 2018) https://genome.ucsc.edu/h/GCA_900632055.1 -Plasmodium falciparum KE01 GenBank GCA_900631975.1 no 5 0 14 Plasmodium falciparum KE01 PlasmoDB 5833 GCA_900631975.1_PfKE01-3 GCA_900631975.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900631975.1 -Plasmodium falciparum KH01 GenBank GCA_900632025.1 no 6 0 14 Plasmodium falciparum KH01 PlasmoDB 5833 GCA_900632025.1_PfKH01-3 GCA_900632025.1 False Plasmodium falciparum malaria parasite P. falciparum (KH1 2018) https://genome.ucsc.edu/h/GCA_900632025.1 -Plasmodium falciparum KH02 GenBank GCA_900632015.1 no 5 0 14 Plasmodium falciparum KH02 PlasmoDB 5833 GCA_900632015.1_PfKH02-3 GCA_900632015.1 False Plasmodium falciparum malaria parasite P. falciparum (KH2 2018) https://genome.ucsc.edu/h/GCA_900632015.1 -Plasmodium falciparum ML01 GenBank GCA_900632085.1 no 101 0 14 Plasmodium falciparum ML01 PlasmoDB 5833 GCA_900632085.1_PfML01-3 GCA_900632085.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632085.1 -Plasmodium falciparum NF135.C10 INSDC GCA_009761425.1 no 0 21 0 Plasmodium falciparum NF135.C10 PlasmoDB 5833 GCA_009761425.1_NF135.C10_v1 GCA_009761425.1 False Plasmodium falciparum malaria parasite P. falciparum (NF135.C10 2019) https://genome.ucsc.edu/h/GCA_009761425.1 -Plasmodium falciparum NF166 INSDC GCA_009761515.1 no 0 30 0 Plasmodium falciparum NF166 PlasmoDB 5833 GCA_009761515.1_NF166_v1 GCA_009761515.1 False Plasmodium falciparum malaria parasite P. falciparum (NF166 2019) https://genome.ucsc.edu/h/GCA_009761515.1 -Plasmodium falciparum SD01 GenBank GCA_900632095.1 no 4 0 13 Plasmodium falciparum SD01 PlasmoDB 5833 GCA_900632095.1_PfSD01-3 GCA_900632095.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632095.1 -Plasmodium falciparum SN01 GenBank GCA_900632075.1 no 20 0 14 Plasmodium falciparum SN01 PlasmoDB 5833 GCA_900632075.1_PfSN01-3 GCA_900632075.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632075.1 -Plasmodium falciparum TG01 GenBank GCA_900632065.1 no 63 0 14 Plasmodium falciparum TG01 PlasmoDB 5833 GCA_900632065.1_PfTG01-3 GCA_900632065.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632065.1 -Plasmodium fragile strain nilgiri GenBank GCA_000956335.1 yes 0 247 0 Plasmodium fragile strain nilgiri PlasmoDB 5857 GCF_000956335.1_Plas_frag_nilgiri_V1 GCA_000956335.1 GCF_000956335.1 True Plasmodium fragile apicomplexans P.fragile (nilgiri 2015) https://genome.ucsc.edu/h/GCF_000956335.1 -Plasmodium gaboni strain G01 GenBank GCA_900097045.1 no 82 0 14 Plasmodium gaboni strain G01 PlasmoDB 647221 GCA_900097045.1_PGABG01 GCA_900097045.1 False Plasmodium gaboni apicomplexans P.gaboni (2021) https://genome.ucsc.edu/h/GCA_900097045.1 -Plasmodium gaboni strain SY75 GenBank GCA_001602025.1 yes 818 0 14 Plasmodium gaboni strain SY75 PlasmoDB 647221 GCF_001602025.1_ASM160202v1 GCA_001602025.1 GCF_001602025.1 True Plasmodium gaboni apicomplexans P.gaboni (SY75 2016) https://genome.ucsc.edu/h/GCF_001602025.1 -Plasmodium gallinaceum 8A GenBank GCA_900005855.1 yes 152 0 0 Plasmodium gallinaceum 8A PlasmoDB 5849 GCF_900005855.1_PGAL8A GCA_900005855.1 GCF_900005855.1 False Plasmodium gallinaceum apicomplexans P.gallinaceum (8A 2016) https://genome.ucsc.edu/h/GCF_900005855.1 -Porcisia hertigi MCOE/PA/1965/C119 INSDC GCA_017918235.1 yes 0 38 36 Porcisia hertigi MCOE/PA/1965/C119 TriTrypDB 2761500 GCA_017918235.1_LU_Pher_1.0 GCA_017918235.1 GCF_017918235.1 True Porcisia hertigi Porcisia hertigi (C119 2021) https://genome.ucsc.edu/h/GCA_017918235.1 -Pediculus humanus USDA INSDC GCA_000006295.1 yes 0 1882 0 Pediculus humanus USDA VectorBase 121224 GCF_000006295.1_JCVI_LOUSE_1.0 GCA_000006295.1 GCF_000006295.1 True Pediculus humanus corporis human body louse https://genome.ucsc.edu/h/GCF_000006295.1 -Plasmodium knowlesi strain A1H1 INSDC GCA_900162085.1 no 0 0 14 Plasmodium knowlesi strain A1H1 PlasmoDB 5850 GCA_900162085.1_PkA1H1_v1 GCA_900162085.1 False Plasmodium knowlesi apicomplexans P.knowlesi (2017) https://genome.ucsc.edu/h/GCA_900162085.1 -Plasmodium knowlesi strain Malayan Strain Pk1 A GenBank GCA_002140095.1 no 0 28 0 Plasmodium knowlesi strain Malayan Strain Pk1 A PlasmoDB 5850 GCA_002140095.1_PKNOHv1 GCA_002140095.1 False Plasmodium knowlesi apicomplexans P.knowlesi (Malayan Strain Pk1 A 2017) https://genome.ucsc.edu/h/GCA_002140095.1 -Pichia kudriavzevii strain CBS5147 INSDC GCA_003054405.1 no 0 0 5 Pichia kudriavzevii strain CBS5147 FungiDB 4909 GCA_003054405.1_ASM305440v1 GCA_003054405.1 False Pichia kudriavzevii budding yeast P.kudriavzevii (CBS5147 2018) https://genome.ucsc.edu/h/GCA_003054405.1 -Pichia kudriavzevii strain CBS573 INSDC GCA_003054445.1 yes 0 0 5 Pichia kudriavzevii strain CBS573 FungiDB 4909 GCF_003054445.1_ASM305444v1 GCA_003054445.1 GCF_003054445.1 False Pichia kudriavzevii budding yeast P.kudriavzevii https://genome.ucsc.edu/h/GCF_003054445.1 -Pneumocystis sp. macacae isolate P2C INSDC GCA_018127085.1 yes 0 3 16 Pneumocystis sp. 'macacae' P2C FungiDB 2698480 GCA_018127085.1_P2C.v1.0 GCA_018127085.1 False Pneumocystis sp. 'macacae' ascomycetes P.sp. 'macacae' (P2C 2021) https://genome.ucsc.edu/h/GCA_018127085.1 -Plasmodium malariae UG01 GenBank GCA_900090045.1 yes 47 0 14 Plasmodium malariae UG01 PlasmoDB 5858 GCF_900090045.1_PmUG01 GCA_900090045.1 GCF_900090045.1 False Plasmodium malariae Plasmodium malariae (2016) https://genome.ucsc.edu/h/GCF_900090045.1 -Pseudoloma neurophilia strain MK1 GenBank GCA_001432165.1 yes 1603 0 0 Pseudoloma neurophilia strain MK1 MicrosporidiaDB 146866 GCA_001432165.1_ASM143216v1 GCA_001432165.1 False Pseudoloma neurophilia microsporidians P.neurophilia (MK1 2015) https://genome.ucsc.edu/h/GCA_001432165.1 -Pneumocystis oryctolagi CS1 INSDC GCA_017311285.1 yes 0 38 0 Pneumocystis oryctolagi CS1 FungiDB 42067 GCA_017311285.1_Pneumocystis_oryctolagi_MERGE_1.1 GCA_017311285.1 False Pneumocystis oryctolagi ascomycetes P.oryctolagi (RABM 2021) https://genome.ucsc.edu/h/GCA_017311285.1 -Plasmodium ovale curtisi GH01 GenBank GCA_900090035.2 yes 638 0 14 Plasmodium ovale curtisi GH01 PlasmoDB 36330 GCA_900090035.2_PocGH01 GCA_900090035.2 False Plasmodium ovale malaria parasite P. ovale (2016) https://genome.ucsc.edu/h/GCA_900090035.2 -Plasmodium ovale wallikeri PowCR01 INSDC GCA_900090025.2 no 0 763 14 Plasmodium ovale wallikeri PowCR01 PlasmoDB 36330 GCA_900090025.2_PowCR01 GCA_900090025.2 False Plasmodium ovale malaria parasite P. ovale (2016) https://genome.ucsc.edu/h/GCA_900090025.2 -Phytophthora palmivora var. palmivora strain sbr112.9 GenBank GCA_002911725.1 yes 24809 0 0 Phytophthora palmivora var. palmivora strain sbr112.9 FungiDB 4796 GCA_002911725.1_ASM291172v1 GCA_002911725.1 False Phytophthora palmivora downy mildews (sbr112.9 2018) https://genome.ucsc.edu/h/GCA_002911725.1 -Phlebotomus papatasi Israel INSDC GCA_000262795.1 no 0 106826 0 Phlebotomus papatasi Israel VectorBase 29031 GCA_000262795.1_Ppap_1.0 GCA_000262795.1 False Phlebotomus papatasi fly P.papatasi (2012) https://genome.ucsc.edu/h/GCA_000262795.1 -Phlebotomus papatasi M1 INSDC GCF_024763615.1 yes 0 640 5 Phlebotomus papatasi M1 VectorBase 29031 GCF_024763615.1_Ppap_2.1 GCA_024763615.2 GCF_024763615.1 False Phlebotomus papatasi fly P.papatasi (M1 2022) https://genome.ucsc.edu/h/GCF_024763615.1 -Pyricularia pennisetigena Br36 INSDC GCA_004337985.1 yes 0 103 5 Pyricularia pennisetigena Br36 FungiDB 1578925 GCF_004337985.1_PpBr36 GCA_004337985.1 GCF_004337985.1 True Pyricularia pennisetigena ascomycetes P.pennisetigena (Br36 2019 refseq) https://genome.ucsc.edu/h/GCF_004337985.1 -Phytophthora plurivora AV1007 GenBank GCA_002247145.1 yes 1897 0 0 Phytophthora plurivora AV1007 FungiDB 639000 GCA_002247145.1_Plurivora_assembly_v1.fn GCA_002247145.1 False Phytophthora plurivora downy mildews (AV1007 2017) https://genome.ucsc.edu/h/GCA_002247145.1 -Plasmodium praefalciparum strain G01 INSDC GCA_900095595.1 yes 0 39 14 Plasmodium praefalciparum strain G01 PlasmoDB 880534 GCA_900095595.1_PPRFG01 GCA_900095595.1 False Plasmodium sp. gorilla clade G1 apicomplexans P.sp. gorilla clade G1 (2018) https://genome.ucsc.edu/h/GCA_900095595.1 -Phytophthora ramorum 14567 INSDC GCA_020800235.1 no 0 27 0 Phytophthora ramorum 14567 FungiDB 164328 GCA_020800235.1_ASM2080023v1 GCA_020800235.1 False Phytophthora ramorum sudden oak death agent (14567 PR-15-019 primary hap 2021) https://genome.ucsc.edu/h/GCA_020800235.1 -Phytophthora ramorum strain Pr102 GenBank GCA_020800215.1 yes 0 28 0 Phytophthora ramorum strain Pr102 FungiDB 164328 GCA_020800215.1_PR-102_v3_p GCA_020800215.1 GCF_020800215.1 True Phytophthora ramorum sudden oak death agent (Pr-102 primary hap 2021) https://genome.ucsc.edu/h/GCA_020800215.1 -Plasmodium reichenowi CDC GenBank GCA_000723685.1 yes 356 0 14 Plasmodium reichenowi CDC PlasmoDB 5854 GCF_000723685.1_PREICH001 GCA_000723685.1 GCF_000723685.1 True Plasmodium reichenowi apicomplexans P.reichenowi (CDC 2014) https://genome.ucsc.edu/h/GCF_000723685.1 -Plasmodium reichenowi G01 GenBank GCA_900097025.1 no 34 0 14 Plasmodium reichenowi G01 PlasmoDB 5854 GCA_900097025.1_PRG01 GCA_900097025.1 False Plasmodium reichenowi apicomplexans P.reichenowi (2018) https://genome.ucsc.edu/h/GCA_900097025.1 -Plasmodium relictum SGS1-like GenBank GCA_900005765.1 yes 460 0 14 Plasmodium relictum SGS1-like PlasmoDB 85471 GCF_900005765.1_PRELSG GCA_900005765.1 GCF_900005765.1 False Plasmodium relictum apicomplexans P.relictum (SGS1 2016) https://genome.ucsc.edu/h/GCF_900005765.1 -Puccinia sorghi strain RO10H11247 INSDC GCA_001263375.1 yes 0 15715 0 Puccinia sorghi strain RO10H11247 FungiDB 27349 GCA_001263375.1_ASM126337v1 GCA_001263375.1 False Puccinia sorghi rust P.sorghi (RO10H11247 2015) https://genome.ucsc.edu/h/GCA_001263375.1 -Puccinia striiformis strain 93-210 INSDC GCA_002920065.1 yes 0 492 0 Puccinia striiformis strain 93-210 FungiDB 27350 GCA_002920065.1_ASM292006v1 GCA_002920065.1 False Puccinia striiformis rust P.striiformis (93-210 2018) https://genome.ucsc.edu/h/GCA_002920065.1 -Puccinia striiformis 93TX-2 INSDC GCA_002920205.1 no 0 561 0 Puccinia striiformis 93TX-2 FungiDB 27350 GCA_002920205.1_ASM292020v1 GCA_002920205.1 False Puccinia striiformis rust P.striiformis (93TX-2 2018) https://genome.ucsc.edu/h/GCA_002920205.1 -Paecilomyces variotii CBS 101075 INSDC GCF_004022145.1 yes 0 86 0 Paecilomyces variotii CBS 101075 FungiDB 264951 GCF_004022145.1_Paevar1 GCA_004022145.1 GCF_004022145.1 True Paecilomyces variotii ascomycetes B.spectabilis https://genome.ucsc.edu/h/GCF_004022145.1 -Plasmodium vinckei Cameroon EL INSDC GCA_903994265.1 no 0 0 14 Plasmodium vinckei Cameroon EL PlasmoDB 5860 GCA_903994265.1_PVSEL_v1 GCA_903994265.1 False Plasmodium vinckei apicomplexans P.vinckei (2020) https://genome.ucsc.edu/h/GCA_903994265.1 -Plasmodium vinckei brucechwatti DA INSDC GCA_903994205.1 no 0 0 14 Plasmodium vinckei brucechwatti DA PlasmoDB 119398 GCA_903994205.1_PVBDA_v1 GCA_903994205.1 False Plasmodium vinckei brucechwatti apicomplexans P.vinckei brucechwatti (2020) https://genome.ucsc.edu/h/GCA_903994205.1 -Plasmodium vinckei lentum DE INSDC GCA_903994225.1 no 0 0 14 Plasmodium vinckei lentum DE PlasmoDB 138297 GCA_903994225.1_PVLDE_v1 GCA_903994225.1 False Plasmodium vinckei lentum apicomplexans P.vinckei lentum (2020) https://genome.ucsc.edu/h/GCA_903994225.1 -Plasmodium vinckei petteri strain CR GenBank GCA_000524515.1 no 0 66 0 Plasmodium vinckei petteri strain CR PlasmoDB 138298 GCA_000524515.1_Plas_vinc_pett_CR_V1 GCA_000524515.1 False Plasmodium vinckei petteri apicomplexans P.vinckei petteri (CR 2014) https://genome.ucsc.edu/h/GCA_000524515.1 -Plasmodium vinckei petteri CR 2020 INSDC GCA_903994235.1 no 0 0 14 Plasmodium vinckei petteri CR 2020 PlasmoDB 138298 GCA_903994235.1_PVPCR_v1 GCA_903994235.1 False Plasmodium vinckei petteri apicomplexans P.vinckei petteri (2020) https://genome.ucsc.edu/h/GCA_903994235.1 -Plasmodium vinckei vinckei CY INSDC GCA_900681995.1 yes 0 0 14 Plasmodium vinckei vinckei CY PlasmoDB 54757 GCF_900681995.1_PVVCY_v1 GCA_900681995.1 GCF_900681995.1 True Plasmodium vinckei vinckei apicomplexans P.vinckei vinckei (2019) https://genome.ucsc.edu/h/GCF_900681995.1 -Plasmodium vinckei vinckei strain vinckei GenBank GCA_000709005.1 no 0 49 0 Plasmodium vinckei vinckei strain vinckei PlasmoDB 54757 GCF_000709005.1_Plas_vinc_vinckei_V1 GCA_000709005.1 GCF_000709005.1 True Plasmodium vinckei vinckei apicomplexans P.vinckei (vinckei 2014) https://genome.ucsc.edu/h/GCF_000709005.1 -Plasmodium vivax P01 GenBank GCA_900093555.2 yes 226 0 14 Plasmodium vivax P01 PlasmoDB 5855 GCA_900093555.2_GCA_900093555 GCA_900093555.2 False Plasmodium vivax malaria parasite P. vivax (PvP01 2019) https://genome.ucsc.edu/h/GCA_900093555.2 -Plasmodium vivax PAM INSDC GCA_949152365.1 no 0 28 0 Plasmodium vivax PAM PlasmoDB 5855 GCA_949152365.1_PVPAM GCA_949152365.1 False Plasmodium vivax malaria parasite P. vivax (Pv01-19 2023) https://genome.ucsc.edu/h/GCA_949152365.1 -Plasmodium vivax PvSY56 INSDC GCA_003402215.1 no 0 14 0 Plasmodium vivax PvSY56 PlasmoDB 5855 GCA_003402215.1_PvSY56_v1 GCA_003402215.1 False Plasmodium vivax malaria parasite P. vivax (PvSY56 2018) https://genome.ucsc.edu/h/GCA_003402215.1 -Plasmodium vivax PvW1 INSDC GCA_914969965.1 no 0 19 0 Plasmodium vivax PvW1 PlasmoDB 5855 GCA_914969965.1_5987STDY8548200 GCA_914969965.1 False Plasmodium vivax malaria parasite P. vivax (PvW1 2021) https://genome.ucsc.edu/h/GCA_914969965.1 -Pneumocystis wakefieldiae 2A INSDC GCA_017301755.1 yes 0 0 17 Pneumocystis wakefieldiae 2A FungiDB 38082 GCA_017301755.1_ASM1730175v1 GCA_017301755.1 False Pneumocystis wakefieldiae ascomycetes P.wakefieldiae (2A 2021) https://genome.ucsc.edu/h/GCA_017301755.1 -Plasmodium yoelii yoelii 17X GenBank GCA_900002385.2 yes 0 0 14 Plasmodium yoelii yoelii 17X PlasmoDB 5861 GCF_900002385.2_GCA_900002385 GCA_900002385.2 GCF_900002385.2 False Plasmodium yoelii apicomplexans P.yoelii (17X 2019) https://genome.ucsc.edu/h/GCF_900002385.2 -Plasmodium yoelii yoelii 17XNL 2023 INSDC GCA_020844765.3 no 0 0 14 Plasmodium yoelii yoelii 17XNL 2023 PlasmoDB 73239 GCA_020844765.3_17XNL_PSU_2 GCA_020844765.3 False Plasmodium yoelii yoelii apicomplexans P.yoelii yoelii (17XNL clone 1.1 2023) https://genome.ucsc.edu/h/GCA_020844765.3 -Plasmodium yoelii yoelii YM INSDC GCA_900002395.1 no 0 181 14 Plasmodium yoelii yoelii YM PlasmoDB 5861 GCA_900002395.1_PYYM01 GCA_900002395.1 False Plasmodium yoelii apicomplexans P.yoelii (YM 2014) https://genome.ucsc.edu/h/GCA_900002395.1 -Rhipicephalus annulatus KleinGrass INSDC GCA_013436015.1 yes 0 16339 0 Rhipicephalus annulatus KleinGrass VectorBase 34611 GCA_013436015.1_TxGen_Rann GCA_013436015.1 False Rhipicephalus annulatus mite/tick R.annulatus (Klein Grass 2020) https://genome.ucsc.edu/h/GCA_013436015.1 -Rhizophagus irregularis A1 (DAOM-664342) GenBank GCA_001593125.1 no 11196 0 0 Rhizophagus irregularis A1 (DAOM-664342) FungiDB 588596 GCA_001593125.1_ASM159312v1 GCA_001593125.1 False Rhizophagus irregularis glomeromycetes (A1 2016) https://genome.ucsc.edu/h/GCA_001593125.1 -Rhizophagus irregularis C2 INSDC GCA_020716745.1 no 0 0 33 Rhizophagus irregularis C2 FungiDB 588596 GCA_020716745.1_ASM2071674v1 GCA_020716745.1 False Rhizophagus irregularis glomeromycetes (C2 2021) https://genome.ucsc.edu/h/GCA_020716745.1 -Raffaelea lauricola RL4 INSDC GCA_014183025.1 yes 0 169 0 Raffaelea lauricola RL4 FungiDB 483707 GCA_014183025.1_ASM1418302v1 GCA_014183025.1 False Harringtonia lauricola ascomycetes H.lauricola (RL4 2020) https://genome.ucsc.edu/h/GCA_014183025.1 -Rickenella mellea Ricmel1 INSDC GCA_004355085.1 yes 0 848 0 Rickenella mellea Ricmel1 FungiDB 50990 GCA_004355085.1_Ricmel1 GCA_004355085.1 False Rickenella mellea basidiomycetes R.mellea (SZMC22713 2019) https://genome.ucsc.edu/h/GCA_004355085.1 -Rhipicephalus microplus Rmic-2018 INSDC GCA_013339725.1 yes 7036 0 11 Rhipicephalus microplus Rmic-2018 VectorBase 6941 GCF_013339725.1_ASM1333972v1 GCA_013339725.1 GCF_013339725.1 False Rhipicephalus microplus southern cattle tick (Rmic-2018 2020 refseq) https://genome.ucsc.edu/h/GCF_013339725.1 -Rhizopus microsporus var. microsporus ATCC 52814 INSDC GCA_002083745.1 yes 0 560 0 Rhizopus microsporus var. microsporus ATCC 52814 FungiDB 86635 GCA_002083745.1_Rhimi_ATCC52814_1 GCA_002083745.1 False Rhizopus microsporus var. microsporus fungi R.microsporus var. microsporus (ATCC 52814 2017) https://genome.ucsc.edu/h/GCA_002083745.1 -Rattus norvegicus BN/NHsdMcwi INSDC GCA_015227675.2 yes 0 153 22 Rattus norvegicus BN/NHsdMcwi HostDB 10116 GCF_015227675.2_mRatBN7.2 GCA_015227675.2 GCF_015227675.2 True Rattus norvegicus Norway rat BN7.2 https://genome.ucsc.edu/h/GCF_015227675.2 -Rhodnius prolixus CDC INSDC GCA_000181055.3 yes 0 16537 0 Rhodnius prolixus CDC VectorBase 13249 GCA_000181055.3_Rhodnius_prolixus-3.0.3 GCA_000181055.3 False Rhodnius prolixus bugs R.prolixus (2015) https://genome.ucsc.edu/h/GCA_000181055.3 -Rhipicephalus sanguineus Rsan-2018 INSDC GCF_013339695.2 yes 0 2316 11 Rhipicephalus sanguineus Rsan-2018 VectorBase 34632 GCF_013339695.2_BIME_Rsan_1.4 GCA_013339695.2 GCF_013339695.2 False Rhipicephalus sanguineus brown dog tick (v1.4 Rsan-2018 2022) https://genome.ucsc.edu/h/GCF_013339695.2 -Scedosporium apiospermum IHEM 14462 GenBank GCA_000732125.1 yes 176 0 0 Scedosporium apiospermum IHEM 14462 FungiDB 563466 GCF_000732125.1_ScApio1.0 GCA_000732125.1 GCF_000732125.1 True Scedosporium apiospermum ascomycetes S.apiospermum https://genome.ucsc.edu/h/GCF_000732125.1 -Stomoxys calcitrans USDA INSDC GCA_001015335.1 yes 0 12042 0 Stomoxys calcitrans USDA VectorBase 35570 GCF_001015335.1_Stomoxys_calcitrans-1.0.1 GCA_001015335.1 GCF_001015335.1 True Stomoxys calcitrans stable fly (8C7A2A5H3J4 2015 rewfseq) https://genome.ucsc.edu/h/GCF_001015335.1 -Sabethes cyaneus ScyaPA1 INSDC GCF_943734655.1 yes 0 5 3 Sabethes cyaneus ScyaPA1 VectorBase 53552 GCF_943734655.1_idSabCyanKW18_F2 GCA_943734655.2 GCF_943734655.1 False Sabethes cyaneus mosquito S.cyaneus (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734655.1 -Synchytrium endobioticum MB42 INSDC GCA_006535955.1 yes 0 786 0 Synchytrium endobioticum MB42 FungiDB 286115 GCA_006535955.1_ASM653595v1 GCA_006535955.1 False Synchytrium endobioticum chytrids & allies (MB42 2019) https://genome.ucsc.edu/h/GCA_006535955.1 -Saccharomycodes ludwigii UTAD17 INSDC GCA_900491785.1 yes 0 1360 0 Saccharomycodes ludwigii UTAD17 FungiDB 36035 GCA_900491785.1_S_ludwigii_v1 GCA_900491785.1 False Saccharomycodes ludwigii budding yeast S.ludwigii (UTAD17 2018) https://genome.ucsc.edu/h/GCA_900491785.1 -Sarcocystis neurona SN3 GenBank GCA_000727475.1 yes 701 171 0 Sarcocystis neurona SN3 ToxoDB 42890 GCA_000727475.1_ASM72747v1 GCA_000727475.1 False Sarcocystis neurona apicomplexans S.neurona (SN3 2014) https://genome.ucsc.edu/h/GCA_000727475.1 -Sarcocystis neurona SO SN1 GenBank GCA_000875885.1 no 0 3066 0 Sarcocystis neurona SO SN1 ToxoDB 42890 GCA_000875885.1_ASM87588v1 GCA_000875885.1 False Sarcocystis neurona apicomplexans S.neurona (SN1 2015) https://genome.ucsc.edu/h/GCA_000875885.1 -Saccharomyces paradoxus CBS432 INSDC GCA_002079055.1 yes 0 0 16 Saccharomyces paradoxus CBS432 FungiDB 27291 GCF_002079055.1_ASM207905v1 GCA_002079055.1 GCF_002079055.1 False Saccharomyces paradoxus budding yeast S.paradoxus https://genome.ucsc.edu/h/GCF_002079055.1 -Sarcoptes scabiei Arlian INSDC GCA_000828355.1 yes 0 18859 0 Sarcoptes scabiei Arlian VectorBase 52283 GCA_000828355.1_SarSca1.0 GCA_000828355.1 False Sarcoptes scabiei mite/tick S.scabiei (Arlian Lab 2015) https://genome.ucsc.edu/h/GCA_000828355.1 -Trichoderma atroviride strain JCM 9410 INSDC GCA_001599035.1 yes 0 23 0 Trichoderma atroviride strain JCM 9410 FungiDB 63577 GCA_001599035.1_JCM_9410_assembly_v001 GCA_001599035.1 False Trichoderma atroviride ascomycetes T.atroviride (JCM 9410 2016) https://genome.ucsc.edu/h/GCA_001599035.1 -Trypanosoma brucei EATRO1125 INSDC GCA_019096175.1 no 685 0 11 Trypanosoma brucei EATRO1125 TriTrypDB 5691 GCA_019096175.1_IZB_EATRO1125_Draft_genome_1.0 GCA_019096175.1 False Trypanosoma brucei Trypanosoma brucei (EATRO1125 2021) https://genome.ucsc.edu/h/GCA_019096175.1 -Trypanosoma brucei Lister strain 427 2018 GenBank GCA_900497135.1 no 272 0 44 Trypanosoma brucei Lister strain 427 2018 TriTrypDB 5702 GCA_900497135.1_HGAP3_Tb427v9 GCA_900497135.1 False Trypanosoma brucei brucei Trypanosoma brucei brucei (2018) https://genome.ucsc.edu/h/GCA_900497135.1 -Trichomonascus ciferrii CBS 4856 INSDC GCA_008704605.1 yes 0 583 0 Trichomonascus ciferrii CBS 4856 FungiDB 44093 GCA_008704605.1_ASM870460v1 GCA_008704605.1 False Trichomonascus ciferrii budding yeast T.ciferrii (CBS 4856 2019) https://genome.ucsc.edu/h/GCA_008704605.1 -Trypanosoma congolense IL3000 2019 GenBank GCA_003013265.1 no 364 0 11 Trypanosoma congolense IL3000 2019 TriTrypDB 1068625 GCA_003013265.1_ASM301326v1 GCA_003013265.1 False Trypanosoma congolense IL3000 Trypanosoma congolense (IL3000 2018 kinetoplastids) https://genome.ucsc.edu/h/GCA_003013265.1 -Thelohania contejeani T1 INSDC GCA_014805555.1 yes 0 1391 0 Thelohania contejeani T1 MicrosporidiaDB 164912 GCA_014805555.1_ASM1480555v1 GCA_014805555.1 False Astathelohania contejeani microsporidians A.contejeani (T1 2020) https://genome.ucsc.edu/h/GCA_014805555.1 -Trypanosoma congolense Tc1/148 INSDC GCA_002287245.1 no 0 536 0 Trypanosoma congolense Tc1/148 TriTrypDB 5692 GCA_002287245.1_ASM228724v1 GCA_002287245.1 False Trypanosoma congolense Trypanosoma congolense (Tc1/148 2017) https://genome.ucsc.edu/h/GCA_002287245.1 -Trypanosoma cruzi strain 231 GenBank GCA_900252365.1 no 8469 0 0 Trypanosoma cruzi strain 231 TriTrypDB 5693 GCA_900252365.1_TcIII_231rod GCA_900252365.1 False Trypanosoma cruzi Trypanosoma cruzi (231 2018) https://genome.ucsc.edu/h/GCA_900252365.1 -Trypanosoma cruzi Berenice INSDC GCA_013358655.1 no 0 923 0 Trypanosoma cruzi Berenice TriTrypDB 5693 GCA_013358655.1_ASM1335865v1 GCA_013358655.1 False Trypanosoma cruzi Trypanosoma cruzi (Berenice 2020) https://genome.ucsc.edu/h/GCA_013358655.1 -Trypanosoma cruzi Brazil A4 GenBank GCA_015033625.1 no 359 0 43 Trypanosoma cruzi Brazil A4 TriTrypDB 5693 GCA_015033625.1_ASM1503362v1 GCA_015033625.1 False Trypanosoma cruzi Trypanosoma cruzi (Brazil clone A4 2020) https://genome.ucsc.edu/h/GCA_015033625.1 -Trypanosoma cruzi Bug2148 GenBank GCA_002749415.1 no 929 0 0 Trypanosoma cruzi Bug2148 TriTrypDB 5693 GCA_002749415.1_ASM274941v1 GCA_002749415.1 False Trypanosoma cruzi Trypanosoma cruzi (Bug2148 2017) https://genome.ucsc.edu/h/GCA_002749415.1 -Trypanosoma cruzi strain CL INSDC GCA_003719155.1 no 0 7764 0 Trypanosoma cruzi strain CL TriTrypDB 5693 GCA_003719155.1_ASM371915v1 GCA_003719155.1 False Trypanosoma cruzi Trypanosoma cruzi (CL 2018) https://genome.ucsc.edu/h/GCA_003719155.1 -Trypanosoma cruzi Dm28c 2017 GenBank GCA_002219105.2 no 0 1029 0 Trypanosoma cruzi Dm28c 2017 TriTrypDB 85057 GCA_002219105.2_TcruziDm28cPB1 GCA_002219105.2 False Trypanosoma cruzi cruzi Trypanosoma cruzi cruzi (Dm28c 2017) https://genome.ucsc.edu/h/GCA_002219105.2 -Trypanosoma cruzi Dm28c 2018 GenBank GCA_003177105.1 no 636 0 0 Trypanosoma cruzi Dm28c 2018 TriTrypDB 5693 GCA_003177105.1_ASM317710v1 GCA_003177105.1 False Trypanosoma cruzi Trypanosoma cruzi (Dm28c 2018) https://genome.ucsc.edu/h/GCA_003177105.1 -Trypanosoma cruzi strain G INSDC GCA_003719455.1 no 0 1450 0 Trypanosoma cruzi strain G TriTrypDB 5693 GCA_003719455.1_ASM371945v1 GCA_003719455.1 False Trypanosoma cruzi Trypanosoma cruzi (G 2018) https://genome.ucsc.edu/h/GCA_003719455.1 -Trypanosoma cruzi strain S11 INSDC GCA_003594385.1 no 0 7855 0 Trypanosoma cruzi strain S11 TriTrypDB 5693 GCA_003594385.1_ASM359438v1 GCA_003594385.1 False Trypanosoma cruzi Trypanosoma cruzi (S11 2018) https://genome.ucsc.edu/h/GCA_003594385.1 -Trypanosoma cruzi strain S15 INSDC GCA_003594585.1 no 0 9197 0 Trypanosoma cruzi strain S15 TriTrypDB 5693 GCA_003594585.1_ASM359458v1 GCA_003594585.1 False Trypanosoma cruzi Trypanosoma cruzi (S15 2018) https://genome.ucsc.edu/h/GCA_003594585.1 -Trypanosoma cruzi strain S154a INSDC GCA_003594715.1 no 0 6946 0 Trypanosoma cruzi strain S154a TriTrypDB 5693 GCA_003594715.1_ASM359471v1 GCA_003594715.1 False Trypanosoma cruzi Trypanosoma cruzi (S154a 2018) https://genome.ucsc.edu/h/GCA_003594715.1 -Trypanosoma cruzi strain S162a INSDC GCA_003594605.1 no 0 8588 0 Trypanosoma cruzi strain S162a TriTrypDB 5693 GCA_003594605.1_ASM359460v1 GCA_003594605.1 False Trypanosoma cruzi Trypanosoma cruzi (S162a 2018) https://genome.ucsc.edu/h/GCA_003594605.1 -Trypanosoma cruzi strain S23b INSDC GCA_003594425.1 no 0 7145 0 Trypanosoma cruzi strain S23b TriTrypDB 5693 GCA_003594425.1_ASM359442v1 GCA_003594425.1 False Trypanosoma cruzi Trypanosoma cruzi (S23b 2018) https://genome.ucsc.edu/h/GCA_003594425.1 -Trypanosoma cruzi strain S44a INSDC GCA_003594705.1 no 0 4971 0 Trypanosoma cruzi strain S44a TriTrypDB 5693 GCA_003594705.1_ASM359470v1 GCA_003594705.1 False Trypanosoma cruzi Trypanosoma cruzi (S44a 2018) https://genome.ucsc.edu/h/GCA_003594705.1 -Trypanosoma cruzi strain S92a INSDC GCA_003594445.1 no 0 7134 0 Trypanosoma cruzi strain S92a TriTrypDB 5693 GCA_003594445.1_ASM359444v1 GCA_003594445.1 False Trypanosoma cruzi Trypanosoma cruzi (S92a 2018) https://genome.ucsc.edu/h/GCA_003594445.1 -Trypanosoma cruzi Sylvio X10/1-2012 GenBank GCA_000188675.2 no 27019 0 0 Trypanosoma cruzi Sylvio X10/1-2012 TriTrypDB 5693 GCA_000188675.2_Tc_SX10_v2.0 GCA_000188675.2 False Trypanosoma cruzi Trypanosoma cruzi (Sylvio X10/1 2012) https://genome.ucsc.edu/h/GCA_000188675.2 -Trypanosoma cruzi TCC GenBank GCA_003177095.1 no 1236 0 0 Trypanosoma cruzi TCC TriTrypDB 5693 GCA_003177095.1_TCC_diploid_1.0 GCA_003177095.1 False Trypanosoma cruzi Trypanosoma cruzi (TCC 2018) https://genome.ucsc.edu/h/GCA_003177095.1 -Trypanosoma cruzi strain Y GenBank GCA_002749425.1 no 9821 0 0 Trypanosoma cruzi strain Y TriTrypDB 5693 GCA_002749425.1_ASM274942v1 GCA_002749425.1 False Trypanosoma cruzi Trypanosoma cruzi (Y 2017) https://genome.ucsc.edu/h/GCA_002749425.1 -Trypanosoma cruzi Y C6 GenBank GCA_015033655.1 no 226 0 40 Trypanosoma cruzi Y C6 TriTrypDB 5693 GCA_015033655.1_ASM1503365v1 GCA_015033655.1 False Trypanosoma cruzi Trypanosoma cruzi (Y clone C6 2020) https://genome.ucsc.edu/h/GCA_015033655.1 -Trypanosoma cruzi strain Ycl2 INSDC GCA_003594485.1 no 0 6884 0 Trypanosoma cruzi strain Ycl2 TriTrypDB 5693 GCA_003594485.1_ASM359448v1 GCA_003594485.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl2 2018) https://genome.ucsc.edu/h/GCA_003594485.1 -Trypanosoma cruzi strain Ycl4 INSDC GCA_003594405.1 no 0 6664 0 Trypanosoma cruzi strain Ycl4 TriTrypDB 5693 GCA_003594405.1_ASM359440v1 GCA_003594405.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl4 2018) https://genome.ucsc.edu/h/GCA_003594405.1 -Trypanosoma cruzi strain Ycl6 INSDC GCA_003594465.1 no 0 6967 0 Trypanosoma cruzi strain Ycl6 TriTrypDB 5693 GCA_003594465.1_ASM359446v1 GCA_003594465.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl6 2018) https://genome.ucsc.edu/h/GCA_003594465.1 -Trypanosoma cruzi marinkellei strain B7 GenBank GCA_000300495.1 no 0 16783 0 Trypanosoma cruzi marinkellei strain B7 TriTrypDB 85056 GCA_000300495.1_ASM30049v1 GCA_000300495.1 False Trypanosoma cruzi marinkellei Trypanosoma cruzi marinkellei (B7 2012) https://genome.ucsc.edu/h/GCA_000300495.1 -Trypanosoma equiperdum OVI INSDC GCA_001457755.2 yes 0 2026 0 Trypanosoma equiperdum OVI TriTrypDB 5694 GCF_001457755.1_Trypanosoma_equiperdum_OVI_V2 GCA_001457755.2 GCF_001457755.1 True Trypanosoma equiperdum Trypanosoma equiperdum (OVI 2016) https://genome.ucsc.edu/h/GCF_001457755.1 -Trypanosoma evansi strain STIB 805 GenBank GCA_917563935.1 yes 0 0 13 Trypanosoma evansi strain STIB 805 TriTrypDB 5697 GCA_917563935.1_Assembly1 GCA_917563935.1 False Trypanosoma evansi Trypanosoma evansi (2021) https://genome.ucsc.edu/h/GCA_917563935.1 -Toxoplasma gondii strain ME49xCTG F1 S27 INSDC GCA_014898695.1 no 0 48 0 Toxoplasma gondii strain ME49xCTG F1 S27 ToxoDB 5811 GCA_014898695.1_ASM1489869v1 GCA_014898695.1 False Toxoplasma gondii apicomplexans T.gondii (ME49xCTG S27 2020) https://genome.ucsc.edu/h/GCA_014898695.1 -Toxoplasma gondii RH 2016 GenBank GCA_001593265.1 no 441 0 0 Toxoplasma gondii RH 2016 ToxoDB 383379 GCA_001593265.1_ToxRH1.0 GCA_001593265.1 False Toxoplasma gondii RH apicomplexans T.gondii (RH 2016) https://genome.ucsc.edu/h/GCA_001593265.1 -Trypanosoma grayi ANR4 GenBank GCA_000691245.1 yes 2871 0 0 Trypanosoma grayi ANR4 TriTrypDB 71804 GCF_000691245.1_Tgr_V1 GCA_000691245.1 GCF_000691245.1 True Trypanosoma grayi Trypanosoma grayi (ANR4 2014 kinetoplastids) https://genome.ucsc.edu/h/GCF_000691245.1 -Trachipleistophora hominis Unknown strain GenBank GCA_000316135.1 yes 0 310 0 Trachipleistophora hominis Unknown strain MicrosporidiaDB 72359 GCA_000316135.1_ASM31613v1 GCA_000316135.1 False Trachipleistophora hominis microsporidians T.hominis (2013) https://genome.ucsc.edu/h/GCA_000316135.1 -Triatoma infestans isolate FIOC_28 INSDC GCA_011037195.1 yes 0 14951 0 Triatoma infestans isolate FIOC_28 VectorBase 30076 GCA_011037195.1_UVM_Tinf_1.0 GCA_011037195.1 False Triatoma infestans bugs T.infestans (FIOC_28 2020) https://genome.ucsc.edu/h/GCA_011037195.1 -Talaromyces marneffei TM4 INSDC GCA_003971505.1 no 0 0 8 Talaromyces marneffei TM4 FungiDB 37727 GCA_003971505.1_ASM397150v1 GCA_003971505.1 False Talaromyces marneffei ascomycetes T.marneffei (TM4 2018) https://genome.ucsc.edu/h/GCA_003971505.1 -Trypanosoma melophagium St. Kilda INSDC GCA_022059095.1 yes 0 64 0 Trypanosoma melophagium St. Kilda TriTrypDB 715481 GCF_022059095.1_T.mel.1 GCA_022059095.1 GCF_022059095.1 True Trypanosoma melophagium Trypanosoma melophagium (St. Kilda St. Kilda 2022 refseq) https://genome.ucsc.edu/h/GCF_022059095.1 -Trichophyton mentagrophytes TIMM 2789 INSDC GCA_003118255.1 yes 0 16543 0 Trichophyton mentagrophytes TIMM 2789 FungiDB 523103 GCA_003118255.1_ABySS_70bp_45k_152cov_v1 GCA_003118255.1 False Trichophyton mentagrophytes ascomycetes T.mentagrophytes (TIMM 2789 2018) https://genome.ucsc.edu/h/GCA_003118255.1 -Tubulinosema ratisbonensis Franzen INSDC GCA_004000155.1 yes 0 952 0 Tubulinosema ratisbonensis Franzen MicrosporidiaDB 291195 GCA_004000155.1_ASM400015v1 GCA_004000155.1 False Tubulinosema ratisbonensis microsporidians T.ratisbonensis (Franzen 2019) https://genome.ucsc.edu/h/GCA_004000155.1 -Trichoderma reesei QM6a 2017 INSDC GCA_002006585.1 no 0 0 7 Trichoderma reesei QM6a 2017 FungiDB 431241 GCA_002006585.1_ASM200658v1 GCA_002006585.1 False Trichoderma reesei QM6a ascomycetes T.reesei (QM6a 2017) https://genome.ucsc.edu/h/GCA_002006585.1 -Trichomonas tenax strain NIH4 ATCC 30207 INSDC GCA_900231805.1 yes 0 4161 0 Trichomonas tenax strain NIH4 ATCC 30207 TrichDB 43075 GCA_900231805.1_PRJEB22701 GCA_900231805.1 False Trichomonas tenax trichomonads (NIH4 ATCC 30207 2019) https://genome.ucsc.edu/h/GCA_900231805.1 -Trypanosoma theileri isolate Edinburgh GenBank GCA_002087225.1 yes 253 0 0 Trypanosoma theileri isolate Edinburgh TriTrypDB 67003 GCF_002087225.1_Tth_v3 GCA_002087225.1 GCF_002087225.1 True Trypanosoma theileri Trypanosoma theileri (Edinburgh 2017 kinetoplastids) https://genome.ucsc.edu/h/GCF_002087225.1 -Trichomonas vaginalis G3 2022 INSDC GCA_026262505.1 yes 0 212 6 Trichomonas vaginalis G3 2022 TrichDB 412133 GCF_026262505.1_NYU_TvagG3_2 GCA_026262505.1 GCF_026262505.1 True Trichomonas vaginalis G3 Trichomonas vaginalis (G3 2022) https://genome.ucsc.edu/h/GCF_026262505.1 -Verruconis gallopava strain CBS 43764 INSDC GCA_000836295.1 yes 0 367 0 Verruconis gallopava strain CBS 43764 FungiDB 253628 GCF_000836295.1_O_gall_CBS43764 GCA_000836295.1 GCF_000836295.1 True Verruconis gallopava ascomycetes V.gallopava https://genome.ucsc.edu/h/GCF_000836295.1 -Xylaria arbuscula CBS 124340 INSDC GCA_022385695.1 yes 0 89 0 Xylaria arbuscula CBS 124340 FungiDB 114810 GCA_022385695.1_Xylarb124340_1 GCA_022385695.1 False Xylaria arbuscula ascomycetes X.arbuscula (CBS 124340 2022) https://genome.ucsc.edu/h/GCA_022385695.1 -Yarrowia lipolytica CLIB89 (W29) GenBank GCA_001761485.1 no 0 0 6 Yarrowia lipolytica CLIB89 (W29) FungiDB 4952 GCA_001761485.1_ASM176148v1 GCA_001761485.1 GCF_001761485.1 False Yarrowia lipolytica budding yeast Y.lipolytica (CLIB89W29 2016) https://genome.ucsc.edu/h/GCA_001761485.1 +Organism Genome Source Genome Version/Assembly ID Is Reference Strain Contigs Supercontigs Chromosomes Species Strain VEuPathDB Project taxId asmId genBank refSeq identical sciName comName ucscBrowser geneModelUrl +Edhazardia aedis USNM 41457 GenBank GCA_000230595.3 yes 1429 0 0 Edhazardia aedis USNM 41457 MicrosporidiaDB 1003232 GCA_000230595.3_Edha_aedis_V4b GCA_000230595.3 False Edhazardia aedis USNM 41457 microsporidians E.aedis (USNM 41457 2015) https://genome.ucsc.edu/h/GCA_000230595.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/595/GCA_000230595.3/genes/GCA_000230595.3_Edha_aedis_V4b.augustus.gtf.gz +Kluyveromyces marxianus DMKU3-1042 INSDC GCF_001417885.1 yes 0 0 8 Kluyveromyces marxianus DMKU3-1042 FungiDB 1003335 GCF_001417885.1_Kmar_1.0 GCA_001417885.1 GCF_001417885.1 True Kluyveromyces marxianus DMKU3-1042 budding yeast K.marxianus (DMKU3-1042 2014 refseq) https://genome.ucsc.edu/h/GCF_001417885.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/001/417/885/GCF_001417885.1/genes/GCF_001417885.1_Kmar_1.0.ncbiRefSeq.gtf.gz +Aspergillus luchuensis IFO 4308 GenBank GCA_000239835.2 no 1016 146 0 Aspergillus luchuensis IFO 4308 FungiDB 1033177 GCA_000239835.2_Akaw_assembly01 GCA_000239835.2 False Aspergillus luchuensis IFO 4308 ascomycetes A.luchuensis IFO 4308 (IFO4308 2011) https://genome.ucsc.edu/h/GCA_000239835.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/239/835/GCA_000239835.2/genes/GCA_000239835.2_Akaw_assembly01.augustus.gtf.gz +Epichloe glyceriae E277 INSDC GCA_000225285.2 yes 3076 0 0 Epichloe glyceriae E277 FungiDB 1035635 GCA_000225285.2_EpiGly_1.0 GCA_000225285.2 False Epichloe glyceriae E277 ascomycetes E.glyceriae (E277 2011) https://genome.ucsc.edu/h/GCA_000225285.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/225/285/GCA_000225285.2/genes/GCA_000225285.2_EpiGly_1.0.augustus.gtf.gz +Aspergillus versicolor CBS 583.65 GenBank GCA_001890125.1 yes 0 51 0 Aspergillus versicolor CBS 583.65 FungiDB 1036611 GCF_001890125.1_Aspve1 GCA_001890125.1 GCF_001890125.1 True Aspergillus versicolor CBS 583.65 ascomycetes A.versicolor CBS 583.65 https://genome.ucsc.edu/h/GCF_001890125.1 +Aspergillus sydowii CBS 593.65 GenBank GCA_001890705.1 yes 0 97 0 Aspergillus sydowii CBS 593.65 FungiDB 1036612 GCF_001890705.1_Aspsy1 GCA_001890705.1 GCF_001890705.1 True Aspergillus sydowii CBS 593.65 ascomycetes A.sydowii CBS 593.65 https://genome.ucsc.edu/h/GCF_001890705.1 +Nosema apis BRL 01 INSDC GCA_000447185.1 yes 0 554 0 Nosema apis BRL 01 MicrosporidiaDB 1037528 GCA_000447185.1_NapisBRLv01 GCA_000447185.1 False Vairimorpha apis BRL 01 microsporidians V.apis (BRL 01 2013) https://genome.ucsc.edu/h/GCA_000447185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/447/185/GCA_000447185.1/genes/GCA_000447185.1_NapisBRLv01.augustus.gtf.gz +Trypanosoma vivax Y486 GenBank GCA_000227375.1 yes 8279 0 11 Trypanosoma vivax Y486 TriTrypDB 1055687 GCA_000227375.1_ASM22737v1 GCA_000227375.1 False Trypanosoma vivax Y486 Trypanosoma vivax (Y486 2011) https://genome.ucsc.edu/h/GCA_000227375.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/375/GCA_000227375.1/genes/GCA_000227375.1_ASM22737v1.augustus.gtf.gz +Trypanosoma congolense IL3000 GenBank GCA_000227395.2 yes 2828 0 11 Trypanosoma congolense IL3000 TriTrypDB 1068625 GCA_000227395.2_ASM22739v2 GCA_000227395.2 False Trypanosoma congolense IL3000 Trypanosoma congolense (IL3000 2011) https://genome.ucsc.edu/h/GCA_000227395.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/395/GCA_000227395.2/genes/GCA_000227395.2_ASM22739v2.augustus.gtf.gz +Pneumocystis murina B123 INSDC GCA_000349005.2 yes 0 20 0 Pneumocystis murina B123 FungiDB 1069680 GCF_000349005.2_Pneumo_murina_B123_V4 GCA_000349005.2 GCF_000349005.2 True Pneumocystis murina B123 ascomycetes P.murina B123 https://genome.ucsc.edu/h/GCF_000349005.2 +Aspergillus wentii DTO 134E9 GenBank GCA_001890725.1 yes 0 27 0 Aspergillus wentii DTO 134E9 FungiDB 1073089 GCF_001890725.1_Aspwe1 GCA_001890725.1 GCF_001890725.1 True Aspergillus wentii DTO 134E9 ascomycetes A.wentii DTO 134E9 https://genome.ucsc.edu/h/GCF_001890725.1 +Penicilliopsis zonata CBS 506.65 GenBank GCA_001890105.1 yes 0 246 0 Penicilliopsis zonata CBS 506.65 FungiDB 1073090 GCF_001890105.1_Aspzo1 GCA_001890105.1 GCF_001890105.1 True Penicilliopsis zonata CBS 506.65 ascomycetes P.zonata CBS 506.65 https://genome.ucsc.edu/h/GCF_001890105.1 +Toxoplasma gondii ARI GenBank GCA_000250965.2 no 0 2723 0 Toxoplasma gondii ARI ToxoDB 1074872 GCA_000250965.2_TGARI_v2 GCA_000250965.2 False Toxoplasma gondii ARI apicomplexans T.gondii (ARI 2016) https://genome.ucsc.edu/h/GCA_000250965.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/965/GCA_000250965.2/genes/GCA_000250965.2_TGARI_v2.augustus.gtf.gz +Toxoplasma gondii COUG GenBank GCA_000338675.2 no 4075 105 0 Toxoplasma gondii COUG ToxoDB 1074873 GCA_000338675.2_TGCOUG_v2 GCA_000338675.2 False Toxoplasma gondii COUG apicomplexans T.gondii (COUG 2017) https://genome.ucsc.edu/h/GCA_000338675.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/675/GCA_000338675.2/genes/GCA_000338675.2_TGCOUG_v2.augustus.gtf.gz +Entamoeba nuttalli P19 GenBank GCF_000257125.1 yes 0 5233 0 Entamoeba nuttalli P19 AmoebaDB 1076696 GCA_000257125.1_ENU1_v1 GCA_000257125.1 GCF_000257125.1 True Entamoeba nuttalli P19 E.nuttalli (P19 2012) https://genome.ucsc.edu/h/GCA_000257125.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/257/125/GCF_000257125.1/genes/GCF_000257125.1_ENU1_v1.augustus.gtf.gz +Pyronema omphalodes CBS 100304 INSDC GCA_024516155.1 yes 0 260 0 Pyronema omphalodes CBS 100304 FungiDB 337075 GCA_024516155.1_Pyrom1 GCA_024516155.1 False Pyronema omphalodes ascomycetes P.omphalodes (CBS 144459 2022) https://genome.ucsc.edu/h/GCA_024516155.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/024/516/155/GCA_024516155.1/genes/GCA_024516155.1_Pyrom1.augustus.gtf.gz +Fusarium odoratissimum NRRL 54006 GenBank GCA_000260195.2 no 0 418 0 Fusarium odoratissimum NRRL 54006 FungiDB 1089451 GCF_000260195.1_FO_II5_V1 GCA_000260195.2 GCF_000260195.1 True Fusarium odoratissimum NRRL 54006 ascomycetes F.odoratissimum NRRL 54006 https://genome.ucsc.edu/h/GCF_000260195.1 +Fusarium oxysporum f. sp. melonis 26406 GenBank GCA_000260495.2 no 0 1146 0 Fusarium oxysporum f. sp. melonis 26406 FungiDB 1089452 GCA_000260495.2_FO_melonis_V1 GCA_000260495.2 False Fusarium oxysporum f. sp. melonis 26406 ascomycetes F.oxysporum f. sp. melonis (26406 2014) https://genome.ucsc.edu/h/GCA_000260495.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/260/495/GCA_000260495.2/genes/GCA_000260495.2_FO_melonis_V1.augustus.gtf.gz +Phytophthora sojae strain P6497 GenBank GCA_000149755.2 yes 0 82 0 Phytophthora sojae strain P6497 FungiDB 67593 GCF_000149755.1_P.sojae_V3.0 GCA_000149755.2 GCF_000149755.1 True Phytophthora sojae downy mildews (P6497 2011) https://genome.ucsc.edu/h/GCF_000149755.1 +Taphrina deformans PYCC 5710 INSDC GCA_000312925.2 yes 0 394 0 Taphrina deformans PYCC 5710 FungiDB 1097556 GCA_000312925.2_ASM31292v2 GCA_000312925.2 False Taphrina deformans PYCC 5710 peach leaf curl fungus (PYCC 5710 2013) https://genome.ucsc.edu/h/GCA_000312925.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/312/925/GCA_000312925.2/genes/GCA_000312925.2_ASM31292v2.augustus.gtf.gz +Claviceps purpurea 20.1 INSDC GCA_000347355.1 yes 0 191 0 Claviceps purpurea 20.1 FungiDB 1111077 GCA_000347355.1_ASM34735v1 GCA_000347355.1 False Claviceps purpurea 20.1 ergot fungus (20.1 2012) https://genome.ucsc.edu/h/GCA_000347355.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/347/355/GCA_000347355.1/genes/GCA_000347355.1_ASM34735v1.augustus.gtf.gz +Plasmodium cynomolgi strain B GenBank GCA_000321355.1 no 0 1649 14 Plasmodium cynomolgi strain B PlasmoDB 1120755 GCF_000321355.1_PcynB_1.0 GCA_000321355.1 GCF_000321355.1 True Plasmodium cynomolgi strain B apicomplexans P.cynomolgi strain (B 2012) https://genome.ucsc.edu/h/GCF_000321355.1 +Macrophomina phaseolina MS6 INSDC GCA_000302655.1 yes 0 1506 0 Macrophomina phaseolina MS6 FungiDB 1126212 GCA_000302655.1_MphMS6_1.0 GCA_000302655.1 False Macrophomina phaseolina MS6 charcoal rot (MS6 2012) https://genome.ucsc.edu/h/GCA_000302655.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/302/655/GCA_000302655.1/genes/GCA_000302655.1_MphMS6_1.0.augustus.gtf.gz +Toxoplasma gondii GAB2-2007-GAL-DOM2 GenBank GCA_000325525.2 no 0 2481 0 Toxoplasma gondii GAB2-2007-GAL-DOM2 ToxoDB 1130820 GCA_000325525.2_TGGABGALDOM2_v2.1 GCA_000325525.2 False Toxoplasma gondii GAB2-2007-GAL-DOM2 apicomplexans T.gondii (GAB2-2007-GAL-DOM2 2014) https://genome.ucsc.edu/h/GCA_000325525.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/325/525/GCA_000325525.2/genes/GCA_000325525.2_TGGABGALDOM2_v2.1.augustus.gtf.gz +Toxoplasma gondii TgCatPRC2 GenBank GCA_000256725.2 no 0 3060 0 Toxoplasma gondii TgCatPRC2 ToxoDB 1130821 GCA_000256725.2_TGCATPRC2_v2 GCA_000256725.2 False Toxoplasma gondii TgCatPRC2 apicomplexans T.gondii (TgCatPRC2 2016) https://genome.ucsc.edu/h/GCA_000256725.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/725/GCA_000256725.2/genes/GCA_000256725.2_TGCATPRC2_v2.augustus.gtf.gz +Babesia microti strain RI GenBank GCA_000691945.2 yes 0 0 4 Babesia microti strain RI PiroplasmaDB 1133968 GCF_000691945.2_ASM69194v2 GCA_000691945.2 GCF_000691945.2 False Babesia microti strain RI apicomplexans B.microti strain (RI 2015) https://genome.ucsc.edu/h/GCF_000691945.2 +Pleurotus ostreatus PC15 INSDC GCA_000697685.1 yes 0 12 0 Pleurotus ostreatus PC15 FungiDB 1137138 GCA_000697685.1_PleosPC15_2 GCA_000697685.1 False Pleurotus ostreatus PC15 oyster mushroom (PC15 2014) https://genome.ucsc.edu/h/GCA_000697685.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/697/685/GCA_000697685.1/genes/GCA_000697685.1_PleosPC15_2.augustus.gtf.gz +Pleurotus ostreatus PC9 INSDC GCF_014466165.1 no 0 16 0 Pleurotus ostreatus PC9 FungiDB 5322 GCF_014466165.1_ASM1446616v1 GCA_014466165.1 GCF_014466165.1 False Pleurotus ostreatus oyster mushroom https://genome.ucsc.edu/h/GCF_014466165.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/014/466/165/GCF_014466165.1/genes/GCF_014466165.1_ASM1446616v1.ncbiRefSeq.gtf.gz +Aspergillus luchuensis CBS 106.47 GenBank GCA_001890685.1 yes 0 100 0 Aspergillus luchuensis CBS 106.47 FungiDB 1137211 GCA_001890685.1_Aspfo1 GCA_001890685.1 False Aspergillus luchuensis CBS 106.47 ascomycetes A.luchuensis (CBS 106.47 2016) https://genome.ucsc.edu/h/GCA_001890685.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/685/GCA_001890685.1/genes/GCA_001890685.1_Aspfo1.augustus.gtf.gz +Anncaliia algerae Undeen GenBank GCA_000313815.1 no 8427 0 0 Anncaliia algerae Undeen MicrosporidiaDB 723287 GCA_000313815.1_ASM31381v1 GCA_000313815.1 False Anncaliia algerae microsporidians A.algerae (Undeen 2012) https://genome.ucsc.edu/h/GCA_000313815.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/313/815/GCA_000313815.1/genes/GCA_000313815.1_ASM31381v1.augustus.gtf.gz +Saprolegnia diclina VS20 GenBank GCA_000281045.1 yes 0 390 0 Saprolegnia diclina VS20 FungiDB 1156394 GCF_000281045.1_Sap_diclina_VS20_V1 GCA_000281045.1 GCF_000281045.1 True Saprolegnia diclina VS20 oomycetes (VS20 2013) https://genome.ucsc.edu/h/GCF_000281045.1 +Hortaea werneckii EXF-2000 INSDC GCA_002127715.1 yes 0 628 0 Hortaea werneckii EXF-2000 FungiDB 1157616 GCA_002127715.1_HwerPB1 GCA_002127715.1 False Hortaea werneckii EXF-2000 ascomycetes H.werneckii (EXF-2000 2017) https://genome.ucsc.edu/h/GCA_002127715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/127/715/GCA_002127715.1/genes/GCA_002127715.1_HwerPB1.augustus.gtf.gz +Aspergillus glaucus CBS 516.65 GenBank GCA_001890805.1 yes 0 82 0 Aspergillus glaucus CBS 516.65 FungiDB 1160497 GCF_001890805.1_Aspgl1 GCA_001890805.1 GCF_001890805.1 True Aspergillus glaucus CBS 516.65 ascomycetes A.glaucus CBS 516.65 https://genome.ucsc.edu/h/GCF_001890805.1 +Chromera velia CCMP2878 GenBank GCA_018398765.1 yes 0 5963 0 Chromera velia CCMP2878 CryptoDB 1169474 GCA_018398765.1_ASM1839876v1 GCA_018398765.1 False Chromera velia CCMP2878 C.velia (CCMP2878 2021) https://genome.ucsc.edu/h/GCA_018398765.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/765/GCA_018398765.1/genes/GCA_018398765.1_ASM1839876v1.augustus.gtf.gz +Vitrella brassicaformis CCMP3155 GenBank GCA_001179505.1 yes 0 1064 0 Vitrella brassicaformis CCMP3155 CryptoDB 1169540 GCA_001179505.1_Vbrassicaformis GCA_001179505.1 False Vitrella brassicaformis CCMP3155 V.brassicaformis CCMP3155 (2015) https://genome.ucsc.edu/h/GCA_001179505.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/179/505/GCA_001179505.1/genes/GCA_001179505.1_Vbrassicaformis.augustus.gtf.gz +Penicillium digitatum Pd1 INSDC GCF_000315645.1 yes 0 53 0 Penicillium digitatum Pd1 FungiDB 1170230 GCF_000315645.1_PdigPd1_v1 GCA_000315645.2 GCF_000315645.1 False Penicillium digitatum Pd1 ascomycetes P.digitatum (Pd1 2012 refseq) https://genome.ucsc.edu/h/GCF_000315645.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/315/645/GCF_000315645.1/genes/GCF_000315645.1_PdigPd1_v1.ncbiRefSeq.gtf.gz +Encephalitozoon romaleae SJ-2008 GenBank GCA_000280035.2 yes 0 0 13 Encephalitozoon romaleae SJ-2008 MicrosporidiaDB 1178016 GCF_000280035.1_ASM28003v2 GCA_000280035.2 GCF_000280035.1 True Encephalitozoon romaleae SJ-2008 microsporidians E.romaleae SJ-2008 https://genome.ucsc.edu/h/GCF_000280035.1 +Cladophialophora psammophila CBS 110553 INSDC GCA_000585535.1 yes 0 123 0 Cladophialophora psammophila CBS 110553 FungiDB 1182543 GCF_000585535.1_Clad_psam_CBS_110553_V1 GCA_000585535.1 GCF_000585535.1 True Cladophialophora psammophila CBS 110553 ascomycetes C.psammophila CBS 110553 https://genome.ucsc.edu/h/GCF_000585535.1 +Cladophialophora yegresii CBS 114405 INSDC GCA_000585515.1 yes 0 8 0 Cladophialophora yegresii CBS 114405 FungiDB 1182544 GCF_000585515.1_Clad_yegr_CBS_114405_V1 GCA_000585515.1 GCF_000585515.1 True Cladophialophora yegresii CBS 114405 ascomycetes C.yegresii CBS 114405 https://genome.ucsc.edu/h/GCF_000585515.1 +Exophiala aquamarina CBS 119918 INSDC GCA_000709125.1 yes 0 151 0 Exophiala aquamarina CBS 119918 FungiDB 1182545 GCF_000709125.1_Exop_aqua_CBS_119918_V1 GCA_000709125.1 GCF_000709125.1 True Exophiala aquamarina CBS 119918 ascomycetes E.aquamarina CBS 119918 https://genome.ucsc.edu/h/GCF_000709125.1 +Trichosporon asahii var. asahii CBS 2479 INSDC GCA_000293215.1 yes 0 77 0 Trichosporon asahii var. asahii CBS 2479 FungiDB 1186058 GCF_000293215.1_Trichosporon_asahii_1 GCA_000293215.1 GCF_000293215.1 True Trichosporon asahii var. asahii CBS 2479 basidiomycetes T.asahii var. asahii CBS 2479 https://genome.ucsc.edu/h/GCF_000293215.1 +Toxoplasma gondii CtCo5 GenBank GCA_000278365.1 no 6177 0 0 Toxoplasma gondii CtCo5 ToxoDB 1194599 GCA_000278365.1_ASM27836v1 GCA_000278365.1 False Toxoplasma gondii CtCo5 apicomplexans T.gondii (CtCo5 2012) https://genome.ucsc.edu/h/GCA_000278365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/278/365/GCA_000278365.1/genes/GCA_000278365.1_ASM27836v1.augustus.gtf.gz +Verticillium dahliae JR2 INSDC GCA_000400815.2 yes 0 0 8 Verticillium dahliae JR2 FungiDB 1202531 GCA_000400815.2_VDAG_JR2v.4.0 GCA_000400815.2 False Verticillium dahliae JR2 ascomycetes V.dahliae (JR2 2014) https://genome.ucsc.edu/h/GCA_000400815.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/400/815/GCA_000400815.2/genes/GCA_000400815.2_VDAG_JR2v.4.0.augustus.gtf.gz +Leishmania aethiopica L147 GenBank GCA_000444285.2 yes 0 124 36 Leishmania aethiopica L147 TriTrypDB 1206056 GCA_000444285.2_Leishmania_aethiopica-L147-2.0.3 GCA_000444285.2 False Leishmania aethiopica L147 Leishmania aethiopica (L147 2016) https://genome.ucsc.edu/h/GCA_000444285.2 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 +Leishmania tropica L590 GenBank GCA_000410715.1 yes 0 124 36 Leishmania tropica L590 TriTrypDB 1206058 GCA_000410715.1_Leishmania_tropica_L590-2.0.2 GCA_000410715.1 False Leishmania tropica L590 Leishmania tropica (L590 2013) https://genome.ucsc.edu/h/GCA_000410715.1 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 +Trypanosoma cruzi Tula cl2 GenBank GCA_000365225.1 no 43931 1780 0 Trypanosoma cruzi Tula cl2 TriTrypDB 1206070 GCA_000365225.1_Trypanosoma_cruzi_Tula_cl2-1.0.1 GCA_000365225.1 False Trypanosoma cruzi Tula cl2 Trypanosoma cruzi (Tula cl2 2013) https://genome.ucsc.edu/h/GCA_000365225.1 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 +Toxoplasma gondii RH-88 INSDC GCA_013099955.1 no 0 183 13 Toxoplasma gondii RH-88 ToxoDB 5811 GCA_013099955.1_tgrh88 GCA_013099955.1 False Toxoplasma gondii apicomplexans T.gondii (RH-88 2020) https://genome.ucsc.edu/h/GCA_013099955.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/099/955/GCA_013099955.1/genes/GCA_013099955.1_tgrh88.augustus.gtf.gz +Pneumocystis jirovecii SE8 GenBank GCA_000333975.2 yes 0 328 0 Pneumocystis jirovecii SE8 FungiDB 42068 GCA_000333975.2_ASM33397v2 GCA_000333975.2 False Pneumocystis jirovecii ascomycetes P.jirovecii (SE8 2012) https://genome.ucsc.edu/h/GCA_000333975.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/975/GCA_000333975.2/genes/GCA_000333975.2_ASM33397v2.augustus.gtf.gz +Cyphellophora europaea CBS 101466 GenBank GCA_000365145.2 yes 0 19 0 Cyphellophora europaea CBS 101466 FungiDB 1220924 GCF_000365145.1_Phia_euro_CBS_101466_V1 GCA_000365145.2 GCF_000365145.1 True Cyphellophora europaea CBS 101466 ascomycetes C.europaea CBS 101466 https://genome.ucsc.edu/h/GCF_000365145.1 +Mucor circinelloides 1006PhL GenBank GCA_000401635.1 yes 0 470 0 Mucor circinelloides 1006PhL FungiDB 1220926 GCA_000401635.1_Muco_sp_1006Ph_V1 GCA_000401635.1 False Mucor circinelloides 1006PhL fungi M.circinelloides (1006PhL 2013) https://genome.ucsc.edu/h/GCA_000401635.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/401/635/GCA_000401635.1/genes/GCA_000401635.1_Muco_sp_1006Ph_V1.augustus.gtf.gz +Pythium aphanidermatum DAOM BR444 GenBank GCA_000387445.2 yes 0 1774 0 Pythium aphanidermatum DAOM BR444 FungiDB 1223555 GCA_000387445.2_pag1_scaffolds_v1 GCA_000387445.2 False Pythium aphanidermatum DAOM BR444 oomycetes (DAOM BR444 2013) https://genome.ucsc.edu/h/GCA_000387445.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/445/GCA_000387445.2/genes/GCA_000387445.2_pag1_scaffolds_v1.augustus.gtf.gz +Pythium arrhenomanes ATCC 12531 GenBank GCA_000387505.2 yes 0 10972 0 Pythium arrhenomanes ATCC 12531 FungiDB 1223556 GCA_000387505.2_par_scaffolds_v1 GCA_000387505.2 False Pythium arrhenomanes ATCC 12531 oomycetes (ATCC 12531 2013) https://genome.ucsc.edu/h/GCA_000387505.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/505/GCA_000387505.2/genes/GCA_000387505.2_par_scaffolds_v1.augustus.gtf.gz +Globisporangium irregulare DAOM BR486 GenBank GCA_000387425.2 yes 0 5887 0 Globisporangium irregulare DAOM BR486 FungiDB 1223557 GCA_000387425.2_pir_scaffolds_v1 GCA_000387425.2 False Globisporangium irregulare DAOM BR486 oomycetes (DAOM BR486 2013) https://genome.ucsc.edu/h/GCA_000387425.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/425/GCA_000387425.2/genes/GCA_000387425.2_pir_scaffolds_v1.augustus.gtf.gz +Globisporangium iwayamae DAOM BR242034 GenBank GCA_000387465.2 yes 0 11542 0 Globisporangium iwayamae DAOM BR242034 FungiDB 1223558 GCA_000387465.2_piw_scaffolds_v1 GCA_000387465.2 False Globisporangium iwayamae DAOM BR242034 oomycetes (DAOM BR242034 2013) https://genome.ucsc.edu/h/GCA_000387465.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/465/GCA_000387465.2/genes/GCA_000387465.2_piw_scaffolds_v1.augustus.gtf.gz +Globisporangium ultimum var. sporangiiferum BR650 GenBank GCA_000387525.2 no 0 5482 0 Globisporangium ultimum var. sporangiiferum BR650 FungiDB 1223559 GCA_000387525.2_pug3_scaffolds_v1 GCA_000387525.2 False Globisporangium ultimum var. sporangiiferum BR650 oomycetes (DAOM BR650 2013) https://genome.ucsc.edu/h/GCA_000387525.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/525/GCA_000387525.2/genes/GCA_000387525.2_pug3_scaffolds_v1.augustus.gtf.gz +Phytopythium vexans DAOM BR484 GenBank GCA_000387545.2 yes 0 3685 0 Phytopythium vexans DAOM BR484 FungiDB 1223560 GCA_000387545.2_pve_scaffolds_v1 GCA_000387545.2 False Phytopythium vexans DAOM BR484 oomycetes (DAOM BR484 2013) https://genome.ucsc.edu/h/GCA_000387545.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/545/GCA_000387545.2/genes/GCA_000387545.2_pve_scaffolds_v1.augustus.gtf.gz +Fusarium proliferatum ET1 GenBank GCA_900067095.1 yes 32 0 0 Fusarium proliferatum ET1 FungiDB 1227346 GCF_900067095.1_F._proliferatum_ET1_version_1 GCA_900067095.1 GCF_900067095.1 True Fusarium proliferatum ET1 ascomycetes F.proliferatum ET1 https://genome.ucsc.edu/h/GCF_900067095.1 +Fusarium oxysporum f. sp. cubense race 1 GenBank GCA_000350345.1 no 0 1341 0 Fusarium oxysporum f. sp. cubense race 1 FungiDB 1229664 GCA_000350345.1_Foc1_1.0 GCA_000350345.1 False Fusarium oxysporum f. sp. cubense race 1 ascomycetes F.oxysporum f. sp. cubense (race 1 2013) https://genome.ucsc.edu/h/GCA_000350345.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/345/GCA_000350345.1/genes/GCA_000350345.1_Foc1_1.0.augustus.gtf.gz +Malassezia sympodialis ATCC 42132 INSDC GCA_900149145.1 yes 0 0 8 Malassezia sympodialis ATCC 42132 FungiDB 1230383 GCA_900149145.1_Msy_ATCC_42132_Feb2016 GCA_900149145.1 False Malassezia sympodialis ATCC 42132 basidiomycetes M.sympodialis (ATCC 42132 2017) https://genome.ucsc.edu/h/GCA_900149145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/149/145/GCA_900149145.1/genes/GCA_900149145.1_Msy_ATCC_42132_Feb2016.augustus.gtf.gz +Plasmodium inui San Antonio 1 GenBank GCA_000524495.1 yes 0 323 0 Plasmodium inui San Antonio 1 PlasmoDB 1237626 GCF_000524495.1_Plas_inui_San_Antonio_1_V1 GCA_000524495.1 GCF_000524495.1 True Plasmodium inui San Antonio 1 apicomplexans P.inui (San Antonio 1 2014) https://genome.ucsc.edu/h/GCF_000524495.1 +Anncaliia algerae PRA109 GenBank GCA_000385855.2 yes 0 7113 0 Anncaliia algerae PRA109 MicrosporidiaDB 1240240 GCA_000385855.2_Annc_alge_PRA109_V4 GCA_000385855.2 False Anncaliia algerae PRA109 microsporidians A.algerae (PRA109 2014) https://genome.ucsc.edu/h/GCA_000385855.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/855/GCA_000385855.2/genes/GCA_000385855.2_Annc_alge_PRA109_V4.augustus.gtf.gz +Emmonsia crescens UAMH 3008 INSDC GCA_001008285.1 yes 0 1734 0 Emmonsia crescens UAMH 3008 FungiDB 1247875 GCA_001008285.1_ASM100828v1 GCA_001008285.1 False Emmonsia crescens UAMH 3008 ascomycetes E.crescens (UAMH 3008 2015) https://genome.ucsc.edu/h/GCA_001008285.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/008/285/GCA_001008285.1/genes/GCA_001008285.1_ASM100828v1.augustus.gtf.gz +Acanthamoeba castellanii str. Neff GenBank GCA_000313135.1 yes 0 384 0 Acanthamoeba castellanii str. Neff AmoebaDB 1257118 GCF_000313135.1_Acastellanii.strNEFF_v1 GCA_000313135.1 GCF_000313135.1 True Acanthamoeba castellanii str. Neff A.castellanii str. (Neff 2013) https://genome.ucsc.edu/h/GCF_000313135.1 +Ophiostoma piceae UAMH 11346 INSDC GCA_000410735.1 yes 0 45 0 Ophiostoma piceae UAMH 11346 FungiDB 1262450 GCA_000410735.1_Opiceae_UAMHv01 GCA_000410735.1 False Ophiostoma piceae UAMH 11346 ascomycetes O.piceae (UAMH 11346 2013) https://genome.ucsc.edu/h/GCA_000410735.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/735/GCA_000410735.1/genes/GCA_000410735.1_Opiceae_UAMHv01.augustus.gtf.gz +Lichtheimia corymbifera JMRC:FSU:9682 INSDC GCA_000723665.1 yes 0 209 0 Lichtheimia corymbifera JMRC:FSU:9682 FungiDB 1263082 GCA_000723665.1_454Minimus GCA_000723665.1 False Lichtheimia corymbifera JMRC:FSU:9682 mucoromycotan L.corymbifera JMRC:FSU:9682 (FSU 9682 2014) https://genome.ucsc.edu/h/GCA_000723665.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/665/GCA_000723665.1/genes/GCA_000723665.1_454Minimus.augustus.gtf.gz +Plasmodium vivax Sal-1 GenBank GCA_000002415.2 no 2733 0 14 Plasmodium vivax Sal-1 PlasmoDB 5855 GCF_000002415.2_ASM241v2 GCA_000002415.2 GCF_000002415.2 False Plasmodium vivax malaria parasite P. vivax (Salvador I 2009) https://genome.ucsc.edu/h/GCF_000002415.2 +Blumeria graminis f. sp. tritici 96224 INSDC GCA_900519115.1 yes 0 0 12 Blumeria graminis f. sp. tritici 96224 FungiDB 62690 GCA_900519115.1_Bgt_genome_v3.16 GCA_900519115.1 False Blumeria graminis f. sp. tritici grass mildew (2019) https://genome.ucsc.edu/h/GCA_900519115.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/519/115/GCA_900519115.1/genes/GCA_900519115.1_Bgt_genome_v3.16.augustus.gtf.gz +Plasmodium cynomolgi strain M GenBank GCA_900180395.1 yes 40 0 14 Plasmodium cynomolgi strain M PlasmoDB 5827 GCA_900180395.1_PcyM GCA_900180395.1 False Plasmodium cynomolgi apicomplexans P.cynomolgi (M 2017) https://genome.ucsc.edu/h/GCA_900180395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/180/395/GCA_900180395.1/genes/GCA_900180395.1_PcyM.augustus.gtf.gz +Metarhizium anisopliae ARSEF 549 INSDC GCA_000814975.1 yes 0 74 0 Metarhizium anisopliae ARSEF 549 FungiDB 1276135 GCA_000814975.1_MAN_1.0 GCA_000814975.1 False Metarhizium anisopliae ARSEF 549 ascomycetes M.anisopliae (ARSEF 549 2015) https://genome.ucsc.edu/h/GCA_000814975.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/814/975/GCA_000814975.1/genes/GCA_000814975.1_MAN_1.0.augustus.gtf.gz +Zymoseptoria tritici ST99CH_3D1 INSDC GCA_900184105.1 no 0 0 21 Zymoseptoria tritici ST99CH_3D1 FungiDB 1276537 GCA_900184105.1_ST99CH_3D1 GCA_900184105.1 False Zymoseptoria tritici ST99CH_3D1 ascomycetes Z.tritici ST99CH_3D1 (2017) https://genome.ucsc.edu/h/GCA_900184105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/184/105/GCA_900184105.1/genes/GCA_900184105.1_ST99CH_3D1.augustus.gtf.gz +Cladophialophora carrionii CBS 160.54 INSDC GCA_000365165.2 no 0 19 0 Cladophialophora carrionii CBS 160.54 FungiDB 1279043 GCF_000365165.1_Clad_carr_CBS_160_54_V1 GCA_000365165.2 GCF_000365165.1 True Cladophialophora carrionii CBS 160.54 ascomycetes C.carrionii CBS 160.54 https://genome.ucsc.edu/h/GCF_000365165.1 +Fusarium fujikuroi IMI 58289 GenBank GCA_900079805.1 yes 0 0 12 Fusarium fujikuroi IMI 58289 FungiDB 1279085 GCF_900079805.1_Fusarium_fujikuroi_IMI58289_V2 GCA_900079805.1 GCF_900079805.1 True Fusarium fujikuroi IMI 58289 ascomycetes F.fujikuroi IMI 58289 https://genome.ucsc.edu/h/GCF_900079805.1 +Stachybotrys chartarum IBT 40293 INSDC GCA_000732565.1 yes 0 2342 0 Stachybotrys chartarum IBT 40293 FungiDB 1280524 GCA_000732565.1_S40293v1 GCA_000732565.1 False Stachybotrys chartarum IBT 40293 ascomycetes S.chartarum (IBT 40293 2014) https://genome.ucsc.edu/h/GCA_000732565.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/732/565/GCA_000732565.1/genes/GCA_000732565.1_S40293v1.augustus.gtf.gz +Anncaliia algerae PRA339 GenBank GCA_000385875.2 no 0 431 0 Anncaliia algerae PRA339 MicrosporidiaDB 1288291 GCA_000385875.2_Annc_alge_insect_USDA_JJB_V2 GCA_000385875.2 False Anncaliia algerae PRA339 microsporidians A.algerae (PRA339 2014) https://genome.ucsc.edu/h/GCA_000385875.2 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 +Leishmania panamensis MHOM/COL/81/L13 GenBank GCA_000340495.1 yes 0 820 36 Leishmania panamensis MHOM/COL/81/L13 TriTrypDB 1295824 GCA_000340495.1_Leishmania_panamensis_L13-1.3.1 GCA_000340495.1 False Leishmania panamensis MHOM/COL/81/L13 Leishmania panamensis (MHOM/COL/81/L13 2013) https://genome.ucsc.edu/h/GCA_000340495.1 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 +Leishmania braziliensis MHOM/BR/75/M2903 GenBank GCA_000340355.2 no 0 709 35 Leishmania braziliensis MHOM/BR/75/M2903 TriTrypDB 1295825 GCA_000340355.2_Leishmania_braziliensis_M2903-1.0.6 GCA_000340355.2 False Leishmania braziliensis MHOM/BR/75/M2903 Leishmania braziliensis (MHOM/BR/75/M2903 2016 kinetoplastids) https://genome.ucsc.edu/h/GCA_000340355.2 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 +Cryptococcus gattii EJB2 GenBank GCA_000835745.1 no 0 282 0 Cryptococcus gattii VGI EJB2 FungiDB 1296103 GCA_000835745.1_Cryp_gatt_EJB2_V1 GCA_000835745.1 False Cryptococcus gattii EJB2 basidiomycetes C.gattii (EJB2 2015) https://genome.ucsc.edu/h/GCA_000835745.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/835/745/GCA_000835745.1/genes/GCA_000835745.1_Cryp_gatt_EJB2_V1.augustus.gtf.gz +Cryptococcus gattii NT-10 GenBank GCA_000935105.1 no 0 226 0 Cryptococcus gattii VGI NT10 FungiDB 1296108 GCA_000935105.1_Cryp_gatt_NT-10_V1 GCA_000935105.1 False Cryptococcus gattii NT-10 basidiomycetes C.gattii (NT-10 2015) https://genome.ucsc.edu/h/GCA_000935105.1 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 +Cryptococcus gattii CA1873 GenBank GCA_000855695.1 no 0 33 0 Cryptococcus gattii VGIII CA1873 FungiDB 1296111 GCA_000855695.1_Cryp_gatt_CA1873_V1 GCA_000855695.1 False Cryptococcus bacillisporus CA1873 basidiomycetes C.bacillisporus (CA1873 2015) https://genome.ucsc.edu/h/GCA_000855695.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/855/695/GCA_000855695.1/genes/GCA_000855695.1_Cryp_gatt_CA1873_V1.augustus.gtf.gz +Kwoniella heveanensis CBS 569 GenBank GCA_000507425.3 yes 0 242 0 Kwoniella heveanensis CBS 569 FungiDB 1296119 GCA_000507425.3_Cryp_heve_CBS569_V2 GCA_000507425.3 False Kwoniella heveanensis CBS 569 basidiomycetes K.heveanensis (CBS 569 2016) https://genome.ucsc.edu/h/GCA_000507425.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/507/425/GCA_000507425.3/genes/GCA_000507425.3_Cryp_heve_CBS569_V2.augustus.gtf.gz +Mastigamoeba balamuthi ATCC 30984 INSDC GCA_902651635.1 yes 0 1925 0 Mastigamoeba balamuthi ATCC 30984 AmoebaDB 108607 GCA_902651635.1_mastiga_genome_v5.1 GCA_902651635.1 False Mastigamoeba balamuthi M.balamuthi (2019) https://genome.ucsc.edu/h/GCA_902651635.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/902/651/635/GCA_902651635.1/genes/GCA_902651635.1_mastiga_genome_v5.1.augustus.gtf.gz +Lentinus tigrinus ALCF2SS1-7 INSDC GCA_003813185.1 yes 0 207 0 Lentinus tigrinus ALCF2SS1-7 FungiDB 1328758 GCA_003813185.1_Lenti7_1 GCA_003813185.1 GCF_003813185.1 True Lentinus tigrinus ALCF2SS1-7 basidiomycetes L.tigrinus (ALCF2SS1-7 2018) https://genome.ucsc.edu/h/GCA_003813185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/813/185/GCA_003813185.1/genes/GCA_003813185.1_Lenti7_1.augustus.gtf.gz +Aspergillus niger ATCC 13496 GenBank GCA_003344705.1 no 0 133 0 Aspergillus niger ATCC 13496 FungiDB 1353008 GCA_003344705.1_Aspni_bvT_1 GCA_003344705.1 False Aspergillus niger ATCC 13496 ascomycetes A.niger (ATCC 13496 2018) https://genome.ucsc.edu/h/GCA_003344705.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/344/705/GCA_003344705.1/genes/GCA_003344705.1_Aspni_bvT_1.augustus.gtf.gz +Ordospora colligata OC4 GenBank GCA_000803265.1 yes 15 0 0 Ordospora colligata OC4 MicrosporidiaDB 1354746 GCF_000803265.1_ASM80326v1 GCA_000803265.1 GCF_000803265.1 True Ordospora colligata OC4 microsporidians O.colligata OC4 https://genome.ucsc.edu/h/GCF_000803265.1 +Encephalitozoon cuniculi EcunIII-L GenBank GCA_001078035.1 no 0 0 15 Encephalitozoon cuniculi EcunIII-L MicrosporidiaDB 1355160 GCA_001078035.1_ECIIIL GCA_001078035.1 False Encephalitozoon cuniculi EcunIII-L microsporidians E.cuniculi (EcunIII-L 2015) https://genome.ucsc.edu/h/GCA_001078035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/078/035/GCA_001078035.1/genes/GCA_001078035.1_ECIIIL.augustus.gtf.gz +Spraguea lophii 42_110 GenBank GCA_000430065.1 yes 1392 0 0 Spraguea lophii 42_110 MicrosporidiaDB 1358809 GCA_000430065.1_Sprlop1.0 GCA_000430065.1 False Spraguea lophii 42_110 microsporidians S.lophii (42_110 2013) https://genome.ucsc.edu/h/GCA_000430065.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/430/065/GCA_000430065.1/genes/GCA_000430065.1_Sprlop1.0.augustus.gtf.gz +Plasmodium falciparum HB3 GenBank GCA_900631985.1 no 12 0 14 Plasmodium falciparum HB3 PlasmoDB 5833 GCA_900631985.1_PfHB3-3 GCA_900631985.1 False Plasmodium falciparum malaria parasite P. falciparum (HB3 2018) https://genome.ucsc.edu/h/GCA_900631985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/985/GCA_900631985.1/genes/GCA_900631985.1_PfHB3-3.augustus.gtf.gz +Aspergillus campestris IBT 28561 GenBank GCA_002847485.1 yes 62 0 0 Aspergillus campestris IBT 28561 FungiDB 1392248 GCF_002847485.1_Aspcam1 GCA_002847485.1 GCF_002847485.1 True Aspergillus campestris IBT 28561 ascomycetes A.campestris IBT 28561 https://genome.ucsc.edu/h/GCF_002847485.1 +Aspergillus steynii IBT 23096 GenBank GCA_002849105.1 yes 37 0 0 Aspergillus steynii IBT 23096 FungiDB 1392250 GCF_002849105.1_Aspste1 GCA_002849105.1 GCF_002849105.1 True Aspergillus steynii IBT 23096 ascomycetes A.steynii IBT 23096 https://genome.ucsc.edu/h/GCF_002849105.1 +Aspergillus novofumigatus IBT 16806 GenBank GCA_002847465.1 yes 62 0 0 Aspergillus novofumigatus IBT 16806 FungiDB 1392255 GCF_002847465.1_Aspnov1 GCA_002847465.1 GCF_002847465.1 True Aspergillus novofumigatus IBT 16806 ascomycetes A.novofumigatus IBT 16806 https://genome.ucsc.edu/h/GCF_002847465.1 +Aspergillus ochraceoroseus IBT 24754 GenBank GCA_002846915.2 yes 34 0 0 Aspergillus ochraceoroseus IBT 24754 FungiDB 1392256 GCF_002846915.1_Aspergillus_ochraceoroseus_IBT_24754_v1.1 GCA_002846915.2 GCF_002846915.1 True Aspergillus ochraceoroseus IBT 24754 ascomycetes A.ochraceoroseus IBT 24754 https://genome.ucsc.edu/h/GCF_002846915.1 +Cryptococcus neoformans var. neoformans XL280 INSDC GCA_002216205.1 no 0 32 5 Cryptococcus neoformans var. neoformans XL280 FungiDB 1396488 GCA_002216205.1_ASM221620v1 GCA_002216205.1 False Cryptococcus neoformans var. neoformans XL280 basidiomycetes C.neoformans var. neoformans (XL280 2017) https://genome.ucsc.edu/h/GCA_002216205.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/205/GCA_002216205.1/genes/GCA_002216205.1_ASM221620v1.augustus.gtf.gz +Sporothrix schenckii 1099-18 GenBank GCA_000961545.1 yes 15 0 0 Sporothrix schenckii 1099-18 FungiDB 1397361 GCF_000961545.1_S_schenckii_v1 GCA_000961545.1 GCF_000961545.1 True Sporothrix schenckii 1099-18 ascomycetes S.schenckii (1099-18 2015 refseq) https://genome.ucsc.edu/h/GCF_000961545.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/961/545/GCA_000961545.1/genes/GCA_000961545.1_S_schenckii_v1.ncbiRefSeq.gtf.gz +Sporothrix brasiliensis 5110 GenBank GCA_000820605.1 yes 12 0 0 Sporothrix brasiliensis 5110 FungiDB 1398154 GCF_000820605.1_S_brasiliensis_5110_v1 GCA_000820605.1 GCF_000820605.1 True Sporothrix brasiliensis 5110 ascomycetes S.brasiliensis 5110 https://genome.ucsc.edu/h/GCF_000820605.1 +Pneumocystis jirovecii RU7 INSDC GCA_001477535.1 no 0 70 0 Pneumocystis jirovecii RU7 FungiDB 1408657 GCF_001477535.1_Pneu_jiro_RU7_V2 GCA_001477535.1 GCF_001477535.1 True Pneumocystis jirovecii RU7 ascomycetes P.jirovecii RU7 https://genome.ucsc.edu/h/GCF_001477535.1 +Pneumocystis carinii B80 INSDC GCF_001477545.1 yes 0 62 0 Pneumocystis carinii B80 FungiDB 1408658 GCF_001477545.1_Pneu_cari_B80_V3 GCA_001477545.1 GCF_001477545.1 True Pneumocystis carinii B80 ascomycetes P.carinii B80 https://genome.ucsc.edu/h/GCF_001477545.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/001/477/545/GCF_001477545.1/genes/GCF_001477545.1_Pneu_cari_B80_V3.ncbiRefSeq.gtf.gz +Trypanosoma cruzi Dm28c 2014 GenBank GCA_000496795.1 no 1210 0 0 Trypanosoma cruzi Dm28c 2014 TriTrypDB 1416333 GCA_000496795.1_T.cruzi.Dm28c_v01 GCA_000496795.1 False Trypanosoma cruzi Dm28c Trypanosoma cruzi (Dm28c 2013) https://genome.ucsc.edu/h/GCA_000496795.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/496/795/GCA_000496795.1/genes/GCA_000496795.1_T.cruzi.Dm28c_v01.augustus.gtf.gz +Fonsecaea pedrosoi CBS 271.37 GenBank GCA_000835455.1 yes 0 11 0 Fonsecaea pedrosoi CBS 271.37 FungiDB 1442368 GCF_000835455.1_Fons_pedr_CBS_271_37_V1 GCA_000835455.1 GCF_000835455.1 True Fonsecaea pedrosoi CBS 271.37 ascomycetes F.pedrosoi CBS 271.37 https://genome.ucsc.edu/h/GCF_000835455.1 +Rhinocladiella mackenziei CBS 650.93 INSDC GCA_000835555.1 yes 0 17 0 Rhinocladiella mackenziei CBS 650.93 FungiDB 1442369 GCF_000835555.1_Rhin_mack_CBS_650_93_V1 GCA_000835555.1 GCF_000835555.1 True Rhinocladiella mackenziei CBS 650.93 ascomycetes R.mackenziei CBS 650.93 https://genome.ucsc.edu/h/GCF_000835555.1 +Cladophialophora bantiana CBS 173.52 INSDC GCA_000835475.1 yes 0 60 0 Cladophialophora bantiana CBS 173.52 FungiDB 1442370 GCF_000835475.1_Clad_bant_CBS_173_52_V1 GCA_000835475.1 GCF_000835475.1 True Cladophialophora bantiana CBS 173.52 ascomycetes C.bantiana CBS 173.52 https://genome.ucsc.edu/h/GCF_000835475.1 +Fonsecaea multimorphosa CBS 102226 INSDC GCA_000836435.1 yes 0 67 0 Fonsecaea multimorphosa CBS 102226 FungiDB 1442371 GCF_000836435.1_Fons_mult_CBS_102226_V1 GCA_000836435.1 GCF_000836435.1 True Fonsecaea multimorphosa CBS 102226 ascomycetes F.multimorphosa CBS 102226 https://genome.ucsc.edu/h/GCF_000836435.1 +Emergomyces pasteurianus Ep9510 INSDC GCA_001883825.1 yes 0 1643 0 Emergomyces pasteurianus Ep9510 FungiDB 1447872 GCA_001883825.1_Emmo_past_UAMH9510_V1 GCA_001883825.1 False Emergomyces pasteurianus Ep9510 ascomycetes E.pasteurianus Ep9510 (UAMH 9510 2016) https://genome.ucsc.edu/h/GCA_001883825.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/825/GCA_001883825.1/genes/GCA_001883825.1_Emmo_past_UAMH9510_V1.augustus.gtf.gz +Aspergillus eucalypticola CBS 122712 INSDC GCA_003184535.1 yes 0 131 0 Aspergillus eucalypticola CBS 122712 FungiDB 1448314 GCF_003184535.1_Aspeuc1 GCA_003184535.1 GCF_003184535.1 True Aspergillus eucalypticola CBS 122712 ascomycetes A.eucalypticola CBS 122712 https://genome.ucsc.edu/h/GCF_003184535.1 +Aspergillus uvarum CBS 121591 INSDC GCA_003184745.1 yes 0 172 0 Aspergillus uvarum CBS 121591 FungiDB 1448315 GCF_003184745.1_Aspuva1 GCA_003184745.1 GCF_003184745.1 True Aspergillus uvarum CBS 121591 ascomycetes A.uvarum CBS 121591 https://genome.ucsc.edu/h/GCF_003184745.1 +Aspergillus ibericus CBS 121593 INSDC GCA_003184845.1 yes 0 116 0 Aspergillus ibericus CBS 121593 FungiDB 1448316 GCF_003184845.1_Aspibe1 GCA_003184845.1 GCF_003184845.1 True Aspergillus ibericus CBS 121593 ascomycetes A.ibericus CBS 121593 https://genome.ucsc.edu/h/GCF_003184845.1 +Aspergillus sclerotiicarbonarius CBS 121057 INSDC GCA_003184635.1 yes 0 166 0 Aspergillus sclerotiicarbonarius CBS 121057 FungiDB 1448318 GCA_003184635.1_Aspscle1 GCA_003184635.1 False Aspergillus sclerotiicarbonarius CBS 121057 ascomycetes A.sclerotiicarbonarius (CBS 121057 2018) https://genome.ucsc.edu/h/GCA_003184635.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/635/GCA_003184635.1/genes/GCA_003184635.1_Aspscle1.augustus.gtf.gz +Aspergillus fijiensis CBS 313.89 INSDC GCA_003184825.1 yes 0 149 0 Aspergillus fijiensis CBS 313.89 FungiDB 1448319 GCF_003184825.1_Aspfij1 GCA_003184825.1 GCF_003184825.1 True Aspergillus fijiensis CBS 313.89 ascomycetes A.fijiensis CBS 313.89 https://genome.ucsc.edu/h/GCF_003184825.1 +Aspergillus ellipticus CBS 707.79 INSDC GCA_003184645.1 yes 0 518 0 Aspergillus ellipticus CBS 707.79 FungiDB 1448320 GCA_003184645.1_Aspell1 GCA_003184645.1 False Aspergillus ellipticus CBS 707.79 ascomycetes A.ellipticus (CBS 707.79 2018) https://genome.ucsc.edu/h/GCA_003184645.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/645/GCA_003184645.1/genes/GCA_003184645.1_Aspell1.augustus.gtf.gz +Aspergillus heteromorphus CBS 117.55 INSDC GCA_003184545.1 yes 0 205 0 Aspergillus heteromorphus CBS 117.55 FungiDB 1448321 GCF_003184545.1_Asphet1 GCA_003184545.1 GCF_003184545.1 True Aspergillus heteromorphus CBS 117.55 ascomycetes A.heteromorphus CBS 117.55 https://genome.ucsc.edu/h/GCF_003184545.1 +Aspergillus homomorphus CBS 101889 INSDC GCA_003184865.1 yes 0 152 0 Aspergillus homomorphus CBS 101889 FungiDB 1450537 GCF_003184865.1_Asphom1 GCA_003184865.1 GCF_003184865.1 True Aspergillus homomorphus CBS 101889 ascomycetes A.homomorphus CBS 101889 https://genome.ucsc.edu/h/GCF_003184865.1 +Theileria equi strain WA GenBank GCA_000342415.1 yes 0 8 2 Theileria equi strain WA PiroplasmaDB 1537102 GCF_000342415.1_JCVI-bewag-v1.1 GCA_000342415.1 GCF_000342415.1 True Theileria equi strain WA apicomplexans T.equi strain (WA 2012) https://genome.ucsc.edu/h/GCF_000342415.1 +Cryptosporidium sp. chipmunk LX-2015 GenBank GCA_000831705.1 yes 853 0 0 Cryptosporidium sp. chipmunk LX-2015 CryptoDB 1603071 GCA_000831705.1_ASM83170v1 GCA_000831705.1 False Cryptosporidium sp. chipmunk LX-2015 apicomplexans C.sp. (chipmunk LX-2015 2015) https://genome.ucsc.edu/h/GCA_000831705.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/831/705/GCA_000831705.1/genes/GCA_000831705.1_ASM83170v1.augustus.gtf.gz +Nematocida ironsii ERTm5 INSDC GCA_001642415.1 yes 0 186 0 Nematocida ironsii ERTm5 MicrosporidiaDB 1805481 GCA_001642415.1_ASM164241v1 GCA_001642415.1 False Nematocida sp. ERTm5 microsporidians N.sp. (ERTm5 2016) https://genome.ucsc.edu/h/GCA_001642415.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/415/GCA_001642415.1/genes/GCA_001642415.1_ASM164241v1.augustus.gtf.gz +Trypanosoma brucei brucei TREU927 GenBank GCA_000002445.1 yes 115 0 16 Trypanosoma brucei brucei TREU927 TriTrypDB 185431 GCF_000002445.2_ASM244v1 GCA_000002445.1 GCF_000002445.2 True Trypanosoma brucei brucei TREU927 Trypanosoma brucei brucei (927/4 GUTat10.1 2005 kinetoplastids) https://genome.ucsc.edu/h/GCF_000002445.2 +Amphiamblys sp. WSBS2006 GenBank GCA_001875675.1 yes 1727 0 0 unclassified Amphiamblys WSBS2006 MicrosporidiaDB 1866961 GCA_001875675.1_ASM187567v1 GCA_001875675.1 False Amphiamblys sp. WSBS2006 microsporidians A.sp. (WSBS2006 2016) https://genome.ucsc.edu/h/GCA_001875675.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/875/675/GCA_001875675.1/genes/GCA_001875675.1_ASM187567v1.augustus.gtf.gz +Cryptococcus neoformans var. neoformans JEC21 GenBank GCA_000091045.1 yes 0 0 14 Cryptococcus neoformans var. neoformans JEC21 FungiDB 214684 GCF_000091045.1_ASM9104v1 GCA_000091045.1 GCF_000091045.1 True Cryptococcus neoformans var. neoformans JEC21 basidiomycetes C.neoformans (JEC21 2005 refseq) https://genome.ucsc.edu/h/GCF_000091045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/091/045/GCA_000091045.1/genes/GCA_000091045.1_ASM9104v1.augustus.gtf.gz +Coccidioides posadasii C735 delta SOWgp GenBank GCA_000151335.1 no 0 55 0 Coccidioides posadasii C735 delta SOWgp FungiDB 222929 GCF_000151335.2_JCVI-cpa1-1.0 GCA_000151335.1 GCF_000151335.2 True Coccidioides posadasii C735 delta SOWgp ascomycetes C.posadasii (C735 delta SOWgp 2009 refseq) https://genome.ucsc.edu/h/GCF_000151335.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/335/GCA_000151335.1/genes/GCA_000151335.1_JCVI-cpa1-1.0.augustus.gtf.gz +Chaetothyriales sp. CBS 132003 INSDC GCA_003709865.1 yes 0 118 0 Chaetothyriales sp. CBS 132003 FungiDB 2249419 GCA_003709865.1_ASM370986v1 GCA_003709865.1 False Chaetothyriales sp. CBS 132003 ascomycetes C.sp. (CBS 132003 2018) https://genome.ucsc.edu/h/GCA_003709865.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/865/GCA_003709865.1/genes/GCA_003709865.1_ASM370986v1.augustus.gtf.gz +Aspergillus nidulans FGSC A4 GenBank GCA_000149205.2 yes 0 0 8 Aspergillus nidulans FGSC A4 FungiDB 227321 GCF_000149205.2_ASM14920v2 GCA_000149205.2 GCF_000149205.2 True Aspergillus nidulans FGSC A4 ascomycetes A.nidulans (FGSC A4 2012 refseq) https://genome.ucsc.edu/h/GCF_000149205.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/205/GCA_000149205.2/genes/GCA_000149205.2_ASM14920v2.augustus.gtf.gz +Fusarium graminearum PH-1 GenBank GCA_900044135.1 yes 0 1 4 Fusarium graminearum PH-1 FungiDB 5518 GCA_900044135.1_GZPH1RResV1 GCA_900044135.1 False Fusarium graminearum ascomycetes F.graminearum (PH-1 GZPH1RResV1 2016) https://genome.ucsc.edu/h/GCA_900044135.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/044/135/GCA_900044135.1/genes/GCA_900044135.1_GZPH1RResV1.augustus.gtf.gz +Cryptococcus neoformans var. grubii H99 GenBank GCA_000149245.3 no 0 0 14 Cryptococcus neoformans var. grubii H99 FungiDB 235443 GCF_000149245.1_CNA3 GCA_000149245.3 GCF_000149245.1 True Cryptococcus neoformans var. grubii H99 basidiomycetes C.neoformans var. grubii H99 https://genome.ucsc.edu/h/GCF_000149245.1 +Candida albicans SC5314 GenBank GCA_000182965.3 yes 0 0 8 Candida albicans SC5314 FungiDB 237561 GCF_000182965.3_ASM18296v3 GCA_000182965.3 GCF_000182965.3 True Candida albicans SC5314 budding yeast C.albicans SC5314 https://genome.ucsc.edu/h/GCF_000182965.3 +Ustilago maydis 521 GenBank GCA_000328475.2 yes 0 4 23 Ustilago maydis 521 FungiDB 5270 GCF_000328475.2_Umaydis521_2.0 GCA_000328475.2 GCF_000328475.2 True Mycosarcoma maydis smut fungi U.maydis 521 https://genome.ucsc.edu/h/GCF_000328475.2 +Coprinopsis cinerea okayama7#130 GenBank GCA_000182895.1 yes 0 67 0 Coprinopsis cinerea okayama7#130 FungiDB 240176 GCF_000182895.1_CC3 GCA_000182895.1 GCF_000182895.1 True Coprinopsis cinerea okayama7#130 basidiomycetes C.cinerea (okayama7#130 2010 refseq) https://genome.ucsc.edu/h/GCF_000182895.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/895/GCA_000182895.1/genes/GCA_000182895.1_CC3.augustus.gtf.gz +Pyricularia oryzae 70-15 GenBank GCA_000002495.2 yes 0 46 7 Pyricularia oryzae 70-15 FungiDB 242507 GCF_000002495.2_MG8 GCA_000002495.2 GCF_000002495.2 True Pyricularia oryzae 70-15 rice blast fungus https://genome.ucsc.edu/h/GCF_000002495.2 +Rhizopus delemar RA 99-880 GenBank GCA_000149305.1 yes 0 81 0 Rhizopus delemar RA 99-880 FungiDB 246409 GCA_000149305.1_RO3 GCA_000149305.1 GCF_000149305.1 True Rhizopus delemar RA 99-880 mucoromycotan R.delemar (RA 99-880 2009) https://genome.ucsc.edu/h/GCA_000149305.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/305/GCA_000149305.1/genes/GCA_000149305.1_RO3.augustus.gtf.gz +Coccidioides immitis RS GenBank GCA_000149335.2 yes 0 6 0 Coccidioides immitis RS FungiDB 246410 GCF_000149335.2_ASM14933v2 GCA_000149335.2 GCF_000149335.2 True Coccidioides immitis RS ascomycetes C.immitis RS https://genome.ucsc.edu/h/GCF_000149335.2 +Microsporidium sp. FI-F-10 INSDC GCA_021821965.1 yes 0 22 0 Microsporidium sp. FI-F-10 MicrosporidiaDB 3039483 GCF_021821965.1_FI-F-10_v._1 GCA_021821965.1 GCF_021821965.1 True Ordospora pajunii microsporidians O.pajunii (FI-F-10 2022) https://genome.ucsc.edu/h/GCF_021821965.1 +Phanerochaete chrysosporium RP-78 GenBank GCA_000167175.1 yes 0 232 0 Phanerochaete chrysosporium RP-78 FungiDB 273507 GCA_000167175.1_ASM16717v1 GCA_000167175.1 False Phanerochaete chrysosporium RP-78 basidiomycetes P.chrysosporium (RP-78 2004) https://genome.ucsc.edu/h/GCA_000167175.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/167/175/GCA_000167175.1/genes/GCA_000167175.1_ASM16717v1.augustus.gtf.gz +Cryptococcus neoformans var. neoformans B-3501A GenBank GCA_000149385.1 no 0 0 14 Cryptococcus neoformans var. neoformans B-3501A FungiDB 283643 GCF_000149385.1_ASM14938v1 GCA_000149385.1 GCF_000149385.1 True Cryptococcus neoformans var. neoformans B-3501A basidiomycetes C.neoformans var. neoformans B-3501A https://genome.ucsc.edu/h/GCF_000149385.1 +Kluyveromyces lactis NRRL Y-1140 INSDC GCA_000002515.1 yes 0 0 6 Kluyveromyces lactis NRRL Y-1140 FungiDB 28985 GCF_000002515.2_ASM251v1 GCA_000002515.1 GCF_000002515.2 False Kluyveromyces lactis budding yeast K.lactis https://genome.ucsc.edu/h/GCF_000002515.2 +Yarrowia lipolytica CLIB122 GenBank GCA_000002525.1 yes 0 0 6 Yarrowia lipolytica CLIB122 FungiDB 284591 GCF_000002525.2_ASM252v1 GCA_000002525.1 GCF_000002525.2 False Yarrowia lipolytica CLIB122 budding yeast Y.lipolytica (CLIB122 2004 refseq) https://genome.ucsc.edu/h/GCF_000002525.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/525/GCA_000002525.1/genes/GCA_000002525.1_ASM252v1.augustus.gtf.gz +Debaryomyces hansenii CBS767 INSDC GCA_000006445.2 yes 0 0 7 Debaryomyces hansenii CBS767 FungiDB 284592 GCF_000006445.2_ASM644v2 GCA_000006445.2 GCF_000006445.2 False Debaryomyces hansenii CBS767 budding yeast D.hansenii CBS767 https://genome.ucsc.edu/h/GCF_000006445.2 +Nakaseomyces glabratus CBS 138 GenBank GCA_000002545.2 yes 0 0 13 Nakaseomyces glabratus CBS 138 FungiDB 5478 GCF_000002545.3_ASM254v2 GCA_000002545.2 GCF_000002545.3 False Nakaseomyces glabratus budding yeast N.glabratus (CBS 138 2008 refseq) https://genome.ucsc.edu/h/GCF_000002545.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/545/GCA_000002545.2/genes/GCA_000002545.2_ASM254v2.augustus.gtf.gz +Encephalitozoon cuniculi GB-M1 GenBank GCA_000091225.2 yes 0 0 11 Encephalitozoon cuniculi GB-M1 MicrosporidiaDB 284813 GCF_000091225.2_ASM9122v2 GCA_000091225.2 GCF_000091225.2 True Encephalitozoon cuniculi GB-M1 microsporidians E.cuniculi (v2 GB-M1 2017) https://genome.ucsc.edu/h/GCF_000091225.2 +Porospora cf. gigantea A INSDC GCA_019968955.1 yes 0 787 0 Porospora gigantea A CryptoDB 2853593 GCF_019968955.1_MNHN_PgigA_v1 GCA_019968955.1 GCF_019968955.1 True Porospora cf. gigantea A apicomplexans P.cf. gigantea (A 2021) https://genome.ucsc.edu/h/GCF_019968955.1 +Acanthamoeba sp. SK_2022c INSDC GCA_027944975.1 no 0 20778 0 Acanthamoeba sp. SK_2022c AmoebaDB 2919603 GCA_027944975.1_ASM2794497v1 GCA_027944975.1 False Acanthamoeba sp. SK_2022c A.sp. (SK_2022c 2023) https://genome.ucsc.edu/h/GCA_027944975.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/027/944/975/GCA_027944975.1/genes/GCA_027944975.1_ASM2794497v1.augustus.gtf.gz +Acanthamoeba sp. SK_2022b INSDC GCA_027943245.1 no 0 1790 0 Acanthamoeba sp. SK_2022b AmoebaDB 2919604 GCA_027943245.1_ASM2794324v1 GCA_027943245.1 False Acanthamoeba sp. SK_2022b A.sp. (SK_2022b 2023) https://genome.ucsc.edu/h/GCA_027943245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/245/GCA_027943245.1/genes/GCA_027943245.1_ASM2794324v1.augustus.gtf.gz +Acanthamoeba sp. SK_2022a INSDC GCA_027943295.1 no 0 2108 0 Acanthamoeba sp. SK_2022a AmoebaDB 2919605 GCA_027943295.1_ASM2794329v1 GCA_027943295.1 False Acanthamoeba sp. SK_2022a A.sp. (SK_2022a 2023) https://genome.ucsc.edu/h/GCA_027943295.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/295/GCA_027943295.1/genes/GCA_027943295.1_ASM2794329v1.augustus.gtf.gz +Entamoeba histolytica HM-1:IMSS GenBank GCA_000208925.2 yes 0 1496 0 Entamoeba histolytica HM-1:IMSS AmoebaDB 294381 GCF_000208925.1_JCVI_ESG2_1.0 GCA_000208925.2 GCF_000208925.1 True Entamoeba histolytica HM-1:IMSS E.histolytica (HM-1:IMSS 2008) https://genome.ucsc.edu/h/GCF_000208925.1 +Meyerozyma guilliermondii ATCC 6260 INSDC GCA_000149425.1 yes 0 9 0 Meyerozyma guilliermondii ATCC 6260 FungiDB 294746 GCF_000149425.1_ASM14942v1 GCA_000149425.1 GCF_000149425.1 True Meyerozyma guilliermondii ATCC 6260 budding yeast M.guilliermondii ATCC 6260 https://genome.ucsc.edu/h/GCF_000149425.1 +Candida tropicalis MYA-3404 GenBank GCA_000006335.3 yes 0 23 0 Candida tropicalis MYA-3404 FungiDB 294747 GCF_000006335.3_ASM633v3 GCA_000006335.3 GCF_000006335.3 True Candida tropicalis MYA-3404 budding yeast C.tropicalis MYA-3404 https://genome.ucsc.edu/h/GCF_000006335.3 +Candida albicans WO-1 GenBank GCA_000149445.2 no 0 16 0 Candida albicans WO-1 FungiDB 294748 GCA_000149445.2_ASM14944v2 GCA_000149445.2 False Candida albicans WO-1 budding yeast C.albicans (WO-1 2009) https://genome.ucsc.edu/h/GCA_000149445.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/445/GCA_000149445.2/genes/GCA_000149445.2_ASM14944v2.augustus.gtf.gz +Cryptococcus gattii VGII R265 GenBank GCA_002954075.1 yes 0 0 14 Cryptococcus gattii VGII R265 FungiDB 294750 GCF_002954075.1_C._deuterogattii_R265_chr GCA_002954075.1 GCF_002954075.1 False Cryptococcus deuterogattii R265 basidiomycetes C.deuterogattii (R265 2018) https://genome.ucsc.edu/h/GCF_002954075.1 +Chaetomium globosum CBS 148.51 INSDC GCA_000143365.1 yes 0 21 0 Chaetomium globosum CBS 148.51 FungiDB 306901 GCF_000143365.1_ASM14336v1 GCA_000143365.1 GCF_000143365.1 True Chaetomium globosum CBS 148.51 ascomycetes C.globosum CBS 148.51 https://genome.ucsc.edu/h/GCF_000143365.1 +Clavispora lusitaniae ATCC 42720 GenBank GCA_000003835.1 yes 0 9 0 Clavispora lusitaniae ATCC 42720 FungiDB 306902 GCF_000003835.1_ASM383v1 GCA_000003835.1 GCF_000003835.1 True Clavispora lusitaniae ATCC 42720 budding yeast C.lusitaniae (ATCC 42720 2009 refseq) https://genome.ucsc.edu/h/GCF_000003835.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/835/GCA_000003835.1/genes/GCA_000003835.1_ASM383v1.augustus.gtf.gz +Plasmodium chabaudi chabaudi GenBank GCA_900002335.2 yes 0 0 14 Plasmodium chabaudi chabaudi PlasmoDB 31271 GCF_900002335.3_GCA_900002335 GCA_900002335.2 GCF_900002335.3 False Plasmodium chabaudi chabaudi apicomplexans P.chabaudi chabaudi (AS 2019) https://genome.ucsc.edu/h/GCF_900002335.3 +Parastagonospora nodorum SN15 INSDC GCA_016801405.1 yes 0 0 23 Parastagonospora nodorum SN15 FungiDB 321614 GCA_016801405.1_ASM1680140v1 GCA_016801405.1 False Parastagonospora nodorum SN15 ascomycetes P.nodorum (SN15 2021) https://genome.ucsc.edu/h/GCA_016801405.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/801/405/GCA_016801405.1/genes/GCA_016801405.1_ASM1680140v1.augustus.gtf.gz +Aspergillus fumigatus Af293 GenBank GCA_000002655.1 yes 0 0 8 Aspergillus fumigatus Af293 FungiDB 330879 GCF_000002655.1_ASM265v1 GCA_000002655.1 GCF_000002655.1 True Aspergillus fumigatus Af293 ascomycetes A.fumigatus Af293 https://genome.ucsc.edu/h/GCF_000002655.1 +Aspergillus fischeri NRRL 181 GenBank GCA_000149645.4 yes 0 163 0 Aspergillus fischeri NRRL 181 FungiDB 331117 GCF_000149645.3_ASM14964v4 GCA_000149645.4 GCF_000149645.3 True Aspergillus fischeri NRRL 181 ascomycetes A.fischeri (v4 NRRL 181 2006) https://genome.ucsc.edu/h/GCF_000149645.3 +Botrytis cinerea B05.10 GenBank GCA_000143535.4 yes 0 0 18 Botrytis cinerea B05.10 FungiDB 332648 GCF_000143535.2_ASM14353v4 GCA_000143535.4 GCF_000143535.2 True Botrytis cinerea B05.10 ascomycetes B.cinerea B05.10 https://genome.ucsc.edu/h/GCF_000143535.2 +Aspergillus flavus NRRL3357 GenBank GCA_000006275.3 yes 0 282 0 Aspergillus flavus NRRL3357 FungiDB 332952 GCA_000006275.3_JCVI-afl1-v3.0 GCA_000006275.3 False Aspergillus flavus NRRL3357 ascomycetes A.flavus (NRRL3357 2020) https://genome.ucsc.edu/h/GCA_000006275.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/006/275/GCA_000006275.3/genes/GCA_000006275.3_JCVI-afl1-v3.0.augustus.gtf.gz +Theileria parva strain Muguga GenBank GCA_000165365.1 yes 0 6 2 Theileria parva strain Muguga PiroplasmaDB 333668 GCF_000165365.1_ASM16536v1 GCA_000165365.1 GCF_000165365.1 True Theileria parva strain Muguga apicomplexans T.parva strain (Muguga 2005) https://genome.ucsc.edu/h/GCF_000165365.1 +Fusarium verticillioides 7600 GenBank GCA_000149555.1 yes 0 10 11 Fusarium verticillioides 7600 FungiDB 334819 GCF_000149555.1_ASM14955v1 GCA_000149555.1 GCF_000149555.1 False Fusarium verticillioides 7600 ascomycetes F.verticillioides 7600 https://genome.ucsc.edu/h/GCF_000149555.1 +Zymoseptoria tritici IPO323 GenBank GCA_000219625.1 yes 0 0 21 Zymoseptoria tritici IPO323 FungiDB 336722 GCF_000219625.1_MYCGR_v2.0 GCA_000219625.1 GCF_000219625.1 True Zymoseptoria tritici IPO323 ascomycetes Z.tritici (IPO323 2011 refseq) https://genome.ucsc.edu/h/GCF_000219625.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/219/625/GCA_000219625.1/genes/GCA_000219625.1_MYCGR_v2.0.ncbiRefSeq.gtf.gz +Uncinocarpus reesii 1704 GenBank GCA_000003515.2 yes 0 44 0 Uncinocarpus reesii 1704 FungiDB 336963 GCF_000003515.1_ASM351v2 GCA_000003515.2 GCF_000003515.1 True Uncinocarpus reesii 1704 ascomycetes U.reesii 1704 https://genome.ucsc.edu/h/GCF_000003515.1 +Histoplasma capsulatum NAm1 GenBank GCA_000149585.1 no 0 276 0 Histoplasma capsulatum NAm1 FungiDB 2059318 GCF_000149585.1_ASM14958v1 GCA_000149585.1 GCF_000149585.1 True Histoplasma mississippiense ascomycetes H.capsulatum NAm1 https://genome.ucsc.edu/h/GCF_000149585.1 +Aspergillus terreus NIH2624 GenBank GCA_000149615.1 yes 0 26 0 Aspergillus terreus NIH2624 FungiDB 341663 GCF_000149615.1_ASM14961v1 GCA_000149615.1 GCF_000149615.1 True Aspergillus terreus NIH2624 ascomycetes A.terreus NIH2624 https://genome.ucsc.edu/h/GCF_000149615.1 +Aspergillus clavatus NRRL 1 GenBank GCA_000002715.1 yes 0 143 0 Aspergillus clavatus NRRL 1 FungiDB 344612 GCF_000002715.2_ASM271v1 GCA_000002715.1 GCF_000002715.2 True Aspergillus clavatus NRRL 1 ascomycetes A.clavatus NRRL 1 https://genome.ucsc.edu/h/GCF_000002715.2 +Leishmania major strain Friedlin GenBank GCA_000002725.2 yes 0 0 36 Leishmania major strain Friedlin TriTrypDB 347515 GCF_000002725.2_ASM272v2 GCA_000002725.2 GCF_000002725.2 True Leishmania major strain Friedlin Leishmania major (Friedlin 2011 kinetoplastids refseq) https://genome.ucsc.edu/h/GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/725/GCA_000002725.2/genes/GCA_000002725.2_ASM272v2.augustus.gtf.gz +Dictyostelium discoideum AX4 INSDC GCF_000004695.1 yes 0 33 7 Dictyostelium discoideum AX4 AmoebaDB 352472 GCA_000004695.1_dicty_2.7 GCA_000004695.1 GCF_000004695.1 False Dictyostelium discoideum AX4 cellular slime molds (AX4 2009) https://genome.ucsc.edu/h/GCA_000004695.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/004/695/GCF_000004695.1/genes/GCF_000004695.1_dicty_2.7.augustus.gtf.gz +Plasmodium yoelii yoelii 17XNL GenBank GCA_000003085.2 no 5617 0 0 Plasmodium yoelii yoelii 17XNL PlasmoDB 73239 GCF_000003085.2_ASM308v2 GCA_000003085.2 GCF_000003085.2 True Plasmodium yoelii yoelii apicomplexans P.yoelii yoelii (17XNL 2002) https://genome.ucsc.edu/h/GCF_000003085.2 +Cryptosporidium hominis TU502 GenBank GCA_000006425.1 yes 1422 0 0 Cryptosporidium hominis TU502 CryptoDB 353151 GCF_000006425.1_ASM642v1 GCA_000006425.1 GCF_000006425.1 True Cryptosporidium hominis TU502 apicomplexans C.hominis (TU502 2004 refseq) https://genome.ucsc.edu/h/GCF_000006425.1 +Cryptosporidium parvum Iowa II GenBank GCA_000165345.1 yes 0 0 8 Cryptosporidium parvum Iowa II CryptoDB 353152 GCF_000165345.1_ASM16534v1 GCA_000165345.1 GCF_000165345.1 True Cryptosporidium parvum Iowa II apicomplexans C.parvum (Iowa type II 2007) https://genome.ucsc.edu/h/GCF_000165345.1 +Trypanosoma cruzi strain CL Brener GenBank GCA_000209065.1 no 29407 0 0 Trypanosoma cruzi strain CL Brener TriTrypDB 5693 GCF_000209065.1_ASM20906v1 GCA_000209065.1 GCF_000209065.1 True Trypanosoma cruzi Trypanosoma cruzi (CL Brener 2005 kinetoplastids) https://genome.ucsc.edu/h/GCF_000209065.1 +Theileria annulata strain Ankara GenBank GCA_000003225.1 yes 0 0 4 Theileria annulata strain Ankara PiroplasmaDB 5874 GCA_000003225.1_ASM322v1 GCA_000003225.1 GCF_000003225.2 False Theileria annulata apicomplexans T.annulata (Ankara isolate clone C9 2005) https://genome.ucsc.edu/h/GCA_000003225.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/225/GCA_000003225.1/genes/GCA_000003225.1_ASM322v1.augustus.gtf.gz +Plasmodium falciparum 3D7 GenBank GCA_000002765.3 yes 0 0 14 Plasmodium falciparum 3D7 PlasmoDB 36329 GCF_000002765.5_GCA_000002765 GCA_000002765.3 GCF_000002765.5 False Plasmodium falciparum 3D7 malaria parasite P. falciparum (3D7 2016 refseq) https://genome.ucsc.edu/h/GCF_000002765.5 +Trypanosoma cruzi strain Esmeraldo GenBank GCA_000327425.1 no 15007 796 0 Trypanosoma cruzi strain Esmeraldo TriTrypDB 366581 GCA_000327425.1_Trypanosoma_cruzi-5.1.3 GCA_000327425.1 False Trypanosoma cruzi strain Esmeraldo Trypanosoma cruzi strain (Esmeraldo cl. 3 2013) https://genome.ucsc.edu/h/GCA_000327425.1 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 +Neurospora crassa OR74A GenBank GCA_000182925.2 yes 0 13 7 Neurospora crassa OR74A FungiDB 367110 GCF_000182925.2_NC12 GCA_000182925.2 GCF_000182925.2 True Neurospora crassa OR74A ascomycetes N.crassa OR74A https://genome.ucsc.edu/h/GCF_000182925.2 +Cryptococcus gattii WM276 GenBank GCA_000185945.1 yes 0 0 14 Cryptococcus gattii VGI WM276 FungiDB 367775 GCF_000185945.1_ASM18594v1 GCA_000185945.1 GCF_000185945.1 True Cryptococcus gattii WM276 basidiomycetes C.gattii WM276 https://genome.ucsc.edu/h/GCF_000185945.1 +Entamoeba dispar SAW760 GenBank GCA_000209125.2 yes 0 3312 0 Entamoeba dispar SAW760 AmoebaDB 370354 GCF_000209125.1_JCVI_EDISG_1.0 GCA_000209125.2 GCF_000209125.1 True Entamoeba dispar SAW760 E.dispar (SAW760 2008) https://genome.ucsc.edu/h/GCF_000209125.1 +Entamoeba invadens IP1 GenBank GCA_000330505.1 yes 0 1144 0 Entamoeba invadens IP1 AmoebaDB 370355 GCF_000330505.1_EIA2_v2 GCA_000330505.1 GCF_000330505.1 True Entamoeba invadens IP1 E.invadens (IP1 2013) https://genome.ucsc.edu/h/GCF_000330505.1 +Lodderomyces elongisporus NRRL YB-4239 INSDC GCA_000149685.1 yes 0 27 0 Lodderomyces elongisporus NRRL YB-4239 FungiDB 379508 GCF_000149685.1_ASM14968v1 GCA_000149685.1 GCF_000149685.1 True Lodderomyces elongisporus NRRL YB-4239 budding yeast L.elongisporus (NRRL YB-4239 2007 refseq) https://genome.ucsc.edu/h/GCF_000149685.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/685/GCA_000149685.1/genes/GCA_000149685.1_ASM14968v1.augustus.gtf.gz +Aspergillus niger ATCC 1015 GenBank GCA_000230395.2 no 0 24 0 Aspergillus niger ATCC 1015 FungiDB 380704 GCA_000230395.2_ASPNI_v3.0 GCA_000230395.2 False Aspergillus niger ATCC 1015 ascomycetes A.niger (ATCC 1015 2011) https://genome.ucsc.edu/h/GCA_000230395.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/395/GCA_000230395.2/genes/GCA_000230395.2_ASPNI_v3.0.augustus.gtf.gz +Pseudocercospora fijiensis CIRAD86 INSDC GCA_000340215.1 yes 0 56 0 Pseudocercospora fijiensis CIRAD86 FungiDB 383855 GCF_000340215.1_Mycfi2 GCA_000340215.1 GCF_000340215.1 True Pseudocercospora fijiensis CIRAD86 ascomycetes P.fijiensis CIRAD86 https://genome.ucsc.edu/h/GCF_000340215.1 +Ascosphaera apis ARSEF 7405 INSDC GCA_001636715.1 yes 0 82 0 Ascosphaera apis ARSEF 7405 FungiDB 392613 GCA_001636715.1_AAP_1.0 GCA_001636715.1 False Ascosphaera apis ARSEF 7405 ascomycetes A.apis (ARSEF 7405 2016) https://genome.ucsc.edu/h/GCA_001636715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/636/715/GCA_001636715.1/genes/GCA_001636715.1_AAP_1.0.augustus.gtf.gz +Coccidioides immitis H538.4 GenBank GCA_000149815.1 no 0 553 0 Coccidioides immitis H538.4 FungiDB 396776 GCA_000149815.1_ASM14981v1 GCA_000149815.1 False Coccidioides immitis H538.4 ascomycetes C.immitis (H538.4 2006) https://genome.ucsc.edu/h/GCA_000149815.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/815/GCA_000149815.1/genes/GCA_000149815.1_ASM14981v1.augustus.gtf.gz +Schizosaccharomyces japonicus yFS275 GenBank GCA_000149845.2 yes 0 32 0 Schizosaccharomyces japonicus yFS275 FungiDB 402676 GCF_000149845.2_SJ5 GCA_000149845.2 GCF_000149845.2 True Schizosaccharomyces japonicus yFS275 ascomycetes S.japonicus yFS275 https://genome.ucsc.edu/h/GCF_000149845.2 +Batrachochytrium dendrobatidis JEL423 GenBank GCA_000149865.1 yes 0 69 0 Batrachochytrium dendrobatidis JEL423 FungiDB 403673 GCA_000149865.1_BD_JEL423 GCA_000149865.1 False Batrachochytrium dendrobatidis JEL423 chytrids B.dendrobatidis (JEL423 2006) https://genome.ucsc.edu/h/GCA_000149865.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/865/GCA_000149865.1/genes/GCA_000149865.1_BD_JEL423.augustus.gtf.gz +Phytophthora infestans T30-4 GenBank GCA_000142945.1 yes 0 4921 0 Phytophthora infestans T30-4 FungiDB 403677 GCF_000142945.1_ASM14294v1 GCA_000142945.1 GCF_000142945.1 True Phytophthora infestans T30-4 potato late blight agent (T30-4 2009) https://genome.ucsc.edu/h/GCF_000142945.1 +Coccidioides immitis RMSCC 2394 GenBank GCA_000149895.1 no 0 23 0 Coccidioides immitis RMSCC 2394 FungiDB 404692 GCA_000149895.1_ASM14989v1 GCA_000149895.1 False Coccidioides immitis RMSCC 2394 ascomycetes C.immitis (RMSCC 2394 2006) https://genome.ucsc.edu/h/GCA_000149895.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/895/GCA_000149895.1/genes/GCA_000149895.1_ASM14989v1.augustus.gtf.gz +Trichomonas vaginalis G3 GenBank GCA_000002825.1 no 0 64764 0 Trichomonas vaginalis G3 TrichDB 412133 GCF_000002825.2_ASM282v1 GCA_000002825.1 GCF_000002825.2 True Trichomonas vaginalis G3 trichomonads (G3; ATCC PRA-98 2007) https://genome.ucsc.edu/h/GCF_000002825.2 +Trichoderma virens Gv29-8 GenBank GCA_000170995.2 yes 93 0 0 Trichoderma virens Gv29-8 FungiDB 413071 GCF_000170995.1_TRIVI_v2.0 GCA_000170995.2 GCF_000170995.1 True Trichoderma virens Gv29-8 ascomycetes T.virens Gv29-8 https://genome.ucsc.edu/h/GCF_000170995.1 +Eimeria tenella strain Houghton GenBank GCA_000499545.1 no 0 4664 0 Eimeria tenella strain Houghton ToxoDB 5802 GCF_000499545.1_ETH001 GCA_000499545.1 GCF_000499545.1 True Eimeria tenella apicomplexans E.tenella (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499545.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/545/GCA_000499545.1/genes/GCA_000499545.1_ETH001.augustus.gtf.gz +Puccinia graminis f. sp. tritici CRL 75-36-700-3 GenBank GCA_000149925.1 yes 0 392 0 Puccinia graminis f. sp. tritici CRL 75-36-700-3 FungiDB 418459 GCF_000149925.1_ASM14992v1 GCA_000149925.1 GCF_000149925.1 True Puccinia graminis f. sp. tritici CRL 75-36-700-3 rust fungi P.graminis f. sp. tritici CRL 75-36-700-3 https://genome.ucsc.edu/h/GCF_000149925.1 +Leishmania braziliensis MHOM/BR/75/M2904 GenBank GCA_000002845.2 yes 103 0 36 Leishmania braziliensis MHOM/BR/75/M2904 TriTrypDB 420245 GCF_000002845.2_ASM284v2 GCA_000002845.2 GCF_000002845.2 True Leishmania braziliensis MHOM/BR/75/M2904 Leishmania braziliensis (MHOM/BR/75/M2904 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000002845.2 +Aspergillus niger CBS 513.88 GenBank GCA_000002855.2 yes 0 19 0 Aspergillus niger CBS 513.88 FungiDB 5061 GCF_000002855.4_ASM285v2 GCA_000002855.2 GCF_000002855.4 True Aspergillus niger ascomycetes A.niger (v4 2007) https://genome.ucsc.edu/h/GCF_000002855.4 +Malassezia restricta CBS 7877 INSDC GCA_003691605.1 no 0 0 9 Malassezia restricta CBS 7877 FungiDB 425264 GCA_003691605.1_ASM369160v1 GCA_003691605.1 False Malassezia restricta CBS 7877 basidiomycetes M.restricta (CBS 7877 2018) https://genome.ucsc.edu/h/GCA_003691605.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/691/605/GCA_003691605.1/genes/GCA_003691605.1_ASM369160v1.augustus.gtf.gz +Fusarium oxysporum f. sp. lycopersici 4287 GenBank GCA_000149955.2 yes 0 70 15 Fusarium oxysporum f. sp. lycopersici 4287 FungiDB 426428 GCF_000149955.1_ASM14995v2 GCA_000149955.2 GCF_000149955.1 False Fusarium oxysporum f. sp. lycopersici 4287 ascomycetes F.oxysporum (f. sp. lycopersici 4287 2015) https://genome.ucsc.edu/h/GCF_000149955.1 +Trypanosoma rangeli SC58 GenBank GCA_000492115.1 yes 7433 0 0 Trypanosoma rangeli SC58 TriTrypDB 429131 GCA_000492115.1_T_rangeli_SC58v1 GCA_000492115.1 False Trypanosoma rangeli SC58 Trypanosoma rangeli (SC58 2013) https://genome.ucsc.edu/h/GCA_000492115.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/492/115/GCA_000492115.1/genes/GCA_000492115.1_T_rangeli_SC58v1.augustus.gtf.gz +Trichoderma reesei QM6a GenBank GCA_000167675.2 yes 0 77 0 Trichoderma reesei QM6a FungiDB 431241 GCF_000167675.1_v2.0 GCA_000167675.2 GCF_000167675.1 True Trichoderma reesei QM6a ascomycetes T.reesei QM6a https://genome.ucsc.edu/h/GCF_000167675.1 +Globisporangium ultimum DAOM BR144 GenBank GCA_000143045.1 yes 0 975 0 Globisporangium ultimum DAOM BR144 FungiDB 431595 GCA_000143045.1_pug GCA_000143045.1 False Globisporangium ultimum DAOM BR144 oomycetes (DAOM BR144 2010) https://genome.ucsc.edu/h/GCA_000143045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/143/045/GCA_000143045.1/genes/GCA_000143045.1_pug.augustus.gtf.gz +Toxoplasma gondii VEG GenBank GCA_000150015.2 no 0 1290 14 Toxoplasma gondii VEG ToxoDB 432359 GCA_000150015.2_TGVEG GCA_000150015.2 False Toxoplasma gondii VEG apicomplexans T.gondii (VEG 2013) https://genome.ucsc.edu/h/GCA_000150015.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/015/GCA_000150015.2/genes/GCA_000150015.2_TGVEG.augustus.gtf.gz +Leishmania infantum JPCM5 GenBank GCA_900500625.2 yes 0 0 36 Leishmania infantum JPCM5 TriTrypDB 5671 GCA_900500625.2_LINF GCA_900500625.2 False Leishmania infantum Leishmania infantum (2020) https://genome.ucsc.edu/h/GCA_900500625.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/500/625/GCA_900500625.2/genes/GCA_900500625.2_LINF.augustus.gtf.gz +Cryptosporidium muris RN66 GenBank GCF_000006515.1 yes 0 84 0 Cryptosporidium muris RN66 CryptoDB 441375 GCF_000006515.1_JCVI_cmg_v1.0 GCA_000006515.1 GCF_000006515.1 True Cryptosporidium muris RN66 apicomplexans C.muris (RN66 2008) https://genome.ucsc.edu/h/GCF_000006515.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/515/GCF_000006515.1/genes/GCF_000006515.1_JCVI_cmg_v1.0.ncbiRefSeq.gtf.gz +Talaromyces stipitatus ATCC 10500 GenBank GCA_000003125.1 yes 0 820 0 Talaromyces stipitatus ATCC 10500 FungiDB 441959 GCF_000003125.1_JCVI-TSTA1-3.0 GCA_000003125.1 GCF_000003125.1 True Talaromyces stipitatus ATCC 10500 ascomycetes T.stipitatus ATCC 10500 https://genome.ucsc.edu/h/GCF_000003125.1 +Talaromyces marneffei ATCC 18224 GenBank GCA_000001985.1 yes 0 452 0 Talaromyces marneffei ATCC 18224 FungiDB 441960 GCF_000001985.1_JCVI-PMFA1-2.0 GCA_000001985.1 GCF_000001985.1 True Talaromyces marneffei ATCC 18224 ascomycetes T.marneffei (ATCC 18224 2008 refseq) https://genome.ucsc.edu/h/GCF_000001985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/001/985/GCA_000001985.1/genes/GCA_000001985.1_JCVI-PMFA1-2.0.augustus.gtf.gz +Coccidioides posadasii str. Silveira GenBank GCA_000170175.2 yes 0 54 0 Coccidioides posadasii str. Silveira FungiDB 443226 GCA_000170175.2_CPS2 GCA_000170175.2 False Coccidioides posadasii str. Silveira ascomycetes C.Silveira (Silveira 2011) https://genome.ucsc.edu/h/GCA_000170175.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/170/175/GCA_000170175.2/genes/GCA_000170175.2_CPS2.augustus.gtf.gz +Histoplasma capsulatum G186AR GenBank GCA_017355575.1 no 0 0 6 Histoplasma capsulatum G186AR FungiDB 447093 GCA_017355575.1_ASM1735557v1 GCA_017355575.1 False Histoplasma capsulatum G186AR ascomycetes H.capsulatum (G186AR 2021) https://genome.ucsc.edu/h/GCA_017355575.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/355/575/GCA_017355575.1/genes/GCA_017355575.1_ASM1735557v1.augustus.gtf.gz +Histoplasma capsulatum G217B GenBank GCA_017607445.1 yes 0 11 0 Histoplasma capsulatum G217B FungiDB 2902605 GCA_017607445.1_ASM1760744v1 GCA_017607445.1 False Histoplasma ohiense ascomycetes H.ohiense (G217B 2021) https://genome.ucsc.edu/h/GCA_017607445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/445/GCA_017607445.1/genes/GCA_017607445.1_ASM1760744v1.augustus.gtf.gz +Blastomyces dermatitidis ATCC 26199 INSDC GCA_000166155.1 no 0 3282 0 Blastomyces dermatitidis ATCC 26199 FungiDB 447095 GCA_000166155.1_BD_ATCC26199_V2 GCA_000166155.1 False Blastomyces dermatitidis ATCC 26199 ascomycetes B.dermatitidis (ATCC 26199 2010) https://genome.ucsc.edu/h/GCA_000166155.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/166/155/GCA_000166155.1/genes/GCA_000166155.1_BD_ATCC26199_V2.augustus.gtf.gz +Aspergillus fumigatus A1163 GenBank GCA_000150145.1 no 0 55 0 Aspergillus fumigatus A1163 FungiDB 451804 GCA_000150145.1_ASM15014v1 GCA_000150145.1 False Aspergillus fumigatus A1163 ascomycetes A.fumigatus (A1163 2007) https://genome.ucsc.edu/h/GCA_000150145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/145/GCA_000150145.1/genes/GCA_000150145.1_ASM15014v1.augustus.gtf.gz +Coccidioides posadasii RMSCC 3488 GenBank GCA_000150055.1 no 0 6 0 Coccidioides posadasii RMSCC 3488 FungiDB 454284 GCA_000150055.1_ASM15005v1 GCA_000150055.1 False Coccidioides posadasii RMSCC 3488 ascomycetes C.posadasii (RMSCC 3488 2007) https://genome.ucsc.edu/h/GCA_000150055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/055/GCA_000150055.1/genes/GCA_000150055.1_ASM15005v1.augustus.gtf.gz +Coccidioides immitis RMSCC 3703 GenBank GCA_000150085.1 no 0 286 0 Coccidioides immitis RMSCC 3703 FungiDB 454286 GCA_000150085.1_ASM15008v1 GCA_000150085.1 False Coccidioides immitis RMSCC 3703 ascomycetes C.immitis (RMSCC 3703 2007) https://genome.ucsc.edu/h/GCA_000150085.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/085/GCA_000150085.1/genes/GCA_000150085.1_ASM15008v1.augustus.gtf.gz +Coccidioides posadasii RMSCC 2133 GenBank GCA_000150185.1 no 0 53 0 Coccidioides posadasii RMSCC 2133 FungiDB 469470 GCA_000150185.1_ASM15018v1 GCA_000150185.1 False Coccidioides posadasii RMSCC 2133 ascomycetes C.posadasii (RMSCC 2133 2007) https://genome.ucsc.edu/h/GCA_000150185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/185/GCA_000150185.1/genes/GCA_000150185.1_ASM15018v1.augustus.gtf.gz +Coccidioides posadasii RMSCC 3700 GenBank GCA_000150215.1 no 0 241 0 Coccidioides posadasii RMSCC 3700 FungiDB 469471 GCA_000150215.1_ASM15021v1 GCA_000150215.1 False Coccidioides posadasii RMSCC 3700 ascomycetes C.posadasii (RMSCC 3700 2007) https://genome.ucsc.edu/h/GCA_000150215.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/215/GCA_000150215.1/genes/GCA_000150215.1_ASM15021v1.augustus.gtf.gz +Coccidioides posadasii CPA 0001 GenBank GCA_000150245.1 no 0 255 0 Coccidioides posadasii CPA 0001 FungiDB 469472 GCA_000150245.1_ASM15024v1 GCA_000150245.1 False Coccidioides posadasii CPA 0001 ascomycetes C.posadasii (CPA 0001 2007) https://genome.ucsc.edu/h/GCA_000150245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/245/GCA_000150245.1/genes/GCA_000150245.1_ASM15024v1.augustus.gtf.gz +Enterocytozoon bieneusi H348 GenBank GCA_000209485.1 yes 1730 3 0 Enterocytozoon bieneusi H348 MicrosporidiaDB 481877 GCF_000209485.1_ASM20948v1 GCA_000209485.1 GCF_000209485.1 True Enterocytozoon bieneusi H348 microsporidians E.bieneusi (H348 2009) https://genome.ucsc.edu/h/GCF_000209485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/485/GCA_000209485.1/genes/GCA_000209485.1_ASM20948v1.augustus.gtf.gz +Paracoccidioides brasiliensis Pb03 GenBank GCA_000150475.2 yes 0 65 0 Paracoccidioides brasiliensis Pb03 FungiDB 482561 GCA_000150475.2_Paracocci_br_Pb03_V2 GCA_000150475.2 False Paracoccidioides brasiliensis Pb03 ascomycetes P.brasiliensis (Pb03 2014) https://genome.ucsc.edu/h/GCA_000150475.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/475/GCA_000150475.2/genes/GCA_000150475.2_Paracocci_br_Pb03_V2.augustus.gtf.gz +Schizosaccharomyces octosporus yFS286 GenBank GCA_000150505.2 yes 0 5 0 Schizosaccharomyces octosporus yFS286 FungiDB 483514 GCF_000150505.1_SO6 GCA_000150505.2 GCF_000150505.1 True Schizosaccharomyces octosporus yFS286 ascomycetes S.octosporus yFS286 https://genome.ucsc.edu/h/GCF_000150505.1 +Babesia bovis T2Bo GenBank GCA_000165395.2 yes 0 3 3 Babesia bovis T2Bo PiroplasmaDB 484906 GCF_000165395.2_ASM16539v2 GCA_000165395.2 GCF_000165395.2 False Babesia bovis T2Bo apicomplexans B.bovis (T2Bo 2021) https://genome.ucsc.edu/h/GCF_000165395.2 +Coccidioides posadasii RMSCC 1037 GenBank GCA_000150555.1 no 0 633 0 Coccidioides posadasii RMSCC 1037 FungiDB 490065 GCA_000150555.1_ASM15055v1 GCA_000150555.1 False Coccidioides posadasii RMSCC 1037 ascomycetes C.posadasii (RMSCC 1037 2008) https://genome.ucsc.edu/h/GCA_000150555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/555/GCA_000150555.1/genes/GCA_000150555.1_ASM15055v1.augustus.gtf.gz +Coccidioides posadasii RMSCC 1038 GenBank GCA_000150585.1 no 0 551 0 Coccidioides posadasii RMSCC 1038 FungiDB 490066 GCA_000150585.1_ASM15058v1 GCA_000150585.1 False Coccidioides posadasii RMSCC 1038 ascomycetes C.posadasii (RMSCC 1038 2008) https://genome.ucsc.edu/h/GCA_000150585.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/585/GCA_000150585.1/genes/GCA_000150585.1_ASM15058v1.augustus.gtf.gz +Coccidioides posadasii CPA 0020 GenBank GCA_000150615.1 no 0 620 0 Coccidioides posadasii CPA 0020 FungiDB 490068 GCA_000150615.1_ASM15061v1 GCA_000150615.1 False Coccidioides posadasii CPA 0020 ascomycetes C.posadasii (CPA 0020 2008) https://genome.ucsc.edu/h/GCA_000150615.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/615/GCA_000150615.1/genes/GCA_000150615.1_ASM15061v1.augustus.gtf.gz +Coccidioides posadasii CPA 0066 GenBank GCA_000150645.1 no 0 473 0 Coccidioides posadasii CPA 0066 FungiDB 490069 GCA_000150645.1_ASM15064v1 GCA_000150645.1 False Coccidioides posadasii CPA 0066 ascomycetes C.posadasii (CPA 0066 2008) https://genome.ucsc.edu/h/GCA_000150645.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/645/GCA_000150645.1/genes/GCA_000150645.1_ASM15064v1.augustus.gtf.gz +Penicillium rubens Wisconsin 54-1255 GenBank GCA_000226395.1 yes 0 49 0 Penicillium rubens Wisconsin 54-1255 FungiDB 500485 GCF_000226395.1_PenChr_Nov2007 GCA_000226395.1 GCF_000226395.1 True Penicillium rubens Wisconsin 54-1255 ascomycetes P.rubens (Wisconsin 54-1255 2008 refseq) https://genome.ucsc.edu/h/GCF_000226395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/226/395/GCA_000226395.1/genes/GCA_000226395.1_PenChr_Nov2007.augustus.gtf.gz +Paracoccidioides lutzii Pb01 GenBank GCA_000150705.2 yes 0 110 0 Paracoccidioides lutzii Pb01 FungiDB 502779 GCF_000150705.2_Paracocci_br_Pb01_V2 GCA_000150705.2 GCF_000150705.2 True Paracoccidioides lutzii Pb01 ascomycetes P.lutzii Pb01 https://genome.ucsc.edu/h/GCF_000150705.2 +Paracoccidioides brasiliensis Pb18 GenBank GCA_000150735.2 no 0 57 0 Paracoccidioides brasiliensis Pb18 FungiDB 502780 GCF_000150735.1_Paracocci_br_Pb18_V2 GCA_000150735.2 GCF_000150735.1 True Paracoccidioides brasiliensis Pb18 ascomycetes P.brasiliensis Pb18 https://genome.ucsc.edu/h/GCF_000150735.1 +Toxoplasma gondii GT1 GenBank GCA_000149715.2 no 2034 0 14 Toxoplasma gondii GT1 ToxoDB 507601 GCA_000149715.2_TGGT1 GCA_000149715.2 False Toxoplasma gondii GT1 apicomplexans T.gondii (GT1 2013) https://genome.ucsc.edu/h/GCA_000149715.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/715/GCA_000149715.2/genes/GCA_000149715.2_TGGT1.augustus.gtf.gz +Toxoplasma gondii ME49 GenBank GCF_000006565.2 yes 0 2248 14 Toxoplasma gondii ME49 ToxoDB 508771 GCF_000006565.2_TGA4 GCA_000006565.2 GCF_000006565.2 False Toxoplasma gondii ME49 Toxoplasma gondii (ME49 2013) https://genome.ucsc.edu/h/GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz +Aspergillus oryzae RIB40 GenBank GCA_000184455.3 yes 3 0 8 Aspergillus oryzae RIB40 FungiDB 510516 GCF_000184455.2_ASM18445v3 GCA_000184455.3 GCF_000184455.2 True Aspergillus oryzae RIB40 ascomycetes A.oryzae RIB40 https://genome.ucsc.edu/h/GCF_000184455.2 +Neurospora tetrasperma FGSC 2508 GenBank GCA_000213175.1 yes 0 81 0 Neurospora tetrasperma FGSC 2508 FungiDB 510951 GCF_000213175.1_v2.0 GCA_000213175.1 GCF_000213175.1 True Neurospora tetrasperma FGSC 2508 ascomycetes N.tetrasperma FGSC 2508 https://genome.ucsc.edu/h/GCF_000213175.1 +Podospora anserina S mat+ INSDC GCA_000226545.1 yes 0 33 0 Podospora anserina S mat+ FungiDB 515849 GCF_000226545.1_ASM22654v1 GCA_000226545.1 GCF_000226545.1 True Podospora anserina S mat ascomycetes P.anserina S mat+ https://genome.ucsc.edu/h/GCF_000226545.1 +Nannizzia gypsea CBS 118893 INSDC GCA_000150975.2 yes 0 18 0 Nannizzia gypsea CBS 118893 FungiDB 535722 GCF_000150975.2_MS_CBS118893 GCA_000150975.2 GCF_000150975.2 True Nannizzia gypsea CBS 118893 ascomycetes N.gypsea CBS 118893 https://genome.ucsc.edu/h/GCF_000150975.2 +Histoplasma capsulatum H88 GenBank GCA_017310615.1 no 0 0 6 Histoplasma capsulatum H88 FungiDB 544711 GCA_017310615.1_ASM1731061v1 GCA_017310615.1 False Histoplasma capsulatum var. duboisii H88 ascomycetes H.capsulatum var. duboisii (H88 2021) https://genome.ucsc.edu/h/GCA_017310615.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/615/GCA_017310615.1/genes/GCA_017310615.1_ASM1731061v1.augustus.gtf.gz +Histoplasma capsulatum H143 GenBank GCA_000151035.1 no 0 48 0 Histoplasma capsulatum H143 FungiDB 544712 GCA_000151035.1_ASM15103v1 GCA_000151035.1 False Histoplasma capsulatum H143 ascomycetes H.capsulatum (H143 2009) https://genome.ucsc.edu/h/GCA_000151035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/035/GCA_000151035.1/genes/GCA_000151035.1_ASM15103v1.augustus.gtf.gz +Microsporum canis CBS 113480 INSDC GCA_000151145.1 yes 0 16 0 Microsporum canis CBS 113480 FungiDB 554155 GCF_000151145.1_ASM15114v1 GCA_000151145.1 GCF_000151145.1 True Microsporum canis CBS 113480 ascomycetes M.canis CBS 113480 https://genome.ucsc.edu/h/GCF_000151145.1 +Saccharomyces cerevisiae S288C GenBank GCA_000146045.2 yes 0 0 16 Saccharomyces cerevisiae S288C FungiDB 559292 GCF_000146045.2_R64 GCA_000146045.2 GCF_000146045.2 False Saccharomyces cerevisiae S288C baker's yeast S288C (2014) https://genome.ucsc.edu/h/GCF_000146045.2 +Blastomyces dermatitidis ER-3 INSDC GCA_000003525.2 yes 0 25 0 Blastomyces dermatitidis ER-3 FungiDB 559297 GCF_000003525.1_BD_ER3_V1 GCA_000003525.2 GCF_000003525.1 True Blastomyces dermatitidis ER-3 ascomycetes B.dermatitidis (ER-3 2009 refseq) https://genome.ucsc.edu/h/GCF_000003525.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/525/GCA_000003525.2/genes/GCA_000003525.2_BD_ER3_V1.augustus.gtf.gz +Blastomyces gilchristii SLH14081 INSDC GCA_000003855.2 yes 0 100 0 Blastomyces gilchristii SLH14081 FungiDB 559298 GCF_000003855.2_BD_SLH14081_V1 GCA_000003855.2 GCF_000003855.2 True Blastomyces gilchristii SLH14081 ascomycetes B.gilchristii (SLH14081 2009 refseq) https://genome.ucsc.edu/h/GCF_000003855.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/855/GCA_000003855.2/genes/GCA_000003855.2_BD_SLH14081_V1.augustus.gtf.gz +Trichophyton rubrum CBS 118892 INSDC GCA_000151425.1 yes 0 35 0 Trichophyton rubrum CBS 118892 FungiDB 559305 GCF_000151425.1_ASM15142v1 GCA_000151425.1 GCF_000151425.1 True Trichophyton rubrum CBS 118892 ascomycetes T.rubrum CBS 118892 https://genome.ucsc.edu/h/GCF_000151425.1 +Hyaloperonospora arabidopsidis Emoy2 GenBank GCA_000173235.2 yes 0 3044 0 Hyaloperonospora arabidopsidis Emoy2 FungiDB 559515 GCA_000173235.2_HyaAraEmoy2_2.0 GCA_000173235.2 False Hyaloperonospora arabidopsidis Emoy2 downy mildews (Emoy2 2012) https://genome.ucsc.edu/h/GCA_000173235.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/173/235/GCA_000173235.2/genes/GCA_000173235.2_HyaAraEmoy2_2.0.augustus.gtf.gz +Trichophyton equinum CBS 127.97 INSDC GCA_000151175.1 yes 0 123 0 Trichophyton equinum CBS 127.97 FungiDB 559882 GCA_000151175.1_ASM15117v1 GCA_000151175.1 False Trichophyton equinum CBS 127.97 ascomycetes T.equinum (CBS 127.97 2008) https://genome.ucsc.edu/h/GCA_000151175.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/175/GCA_000151175.1/genes/GCA_000151175.1_ASM15117v1.augustus.gtf.gz +Neospora caninum Liverpool GenBank GCA_000208865.2 yes 52 0 14 Neospora caninum Liverpool ToxoDB 572307 GCF_000208865.1_ASM20886v2 GCA_000208865.2 GCF_000208865.1 True Neospora caninum Liverpool apicomplexans N.caninum (Liverpool 2011) https://genome.ucsc.edu/h/GCF_000208865.1 +Plasmodium falciparum Dd2 GenBank GCA_900632045.1 no 0 0 14 Plasmodium falciparum Dd2 PlasmoDB 5833 GCA_900632045.1_PfDd2-3 GCA_900632045.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/045/GCA_900632045.1/genes/GCA_900632045.1_PfDd2-3.augustus.gtf.gz +Thermothelomyces thermophilus ATCC 42464 INSDC GCA_000226095.1 yes 0 0 7 Thermothelomyces thermophilus ATCC 42464 FungiDB 573729 GCF_000226095.1_ASM22609v1 GCA_000226095.1 GCF_000226095.1 True Thermothelomyces thermophilus ATCC 42464 ascomycetes T.thermophilus ATCC 42464 https://genome.ucsc.edu/h/GCF_000226095.1 +Candida dubliniensis CD36 INSDC GCA_000026945.1 yes 0 0 8 Candida dubliniensis CD36 FungiDB 573826 GCF_000026945.1_ASM2694v1 GCA_000026945.1 GCF_000026945.1 True Candida dubliniensis CD36 budding yeast C.dubliniensis CD36 https://genome.ucsc.edu/h/GCF_000026945.1 +Candida parapsilosis CDC317 GenBank GCA_000182765.2 yes 0 0 8 Candida parapsilosis CDC317 FungiDB 5480 GCF_000182765.1_ASM18276v2 GCA_000182765.2 GCF_000182765.1 False Candida parapsilosis budding yeast C.parapsilosis https://genome.ucsc.edu/h/GCF_000182765.1 +Tremella mesenterica DSM 1558 GenBank GCA_000271645.1 yes 0 45 0 Tremella mesenterica DSM 1558 FungiDB 578456 GCF_000271645.1_Treme1 GCA_000271645.1 GCF_000271645.1 True Tremella mesenterica DSM 1558 witches' butter https://genome.ucsc.edu/h/GCF_000271645.1 +Schizophyllum commune H4-8 INSDC GCA_000143185.2 yes 0 25 0 Schizophyllum commune H4-8 FungiDB 578458 GCF_000143185.2_Schco3 GCA_000143185.2 GCF_000143185.2 True Schizophyllum commune H4-8 basidiomycetes S.commune (v2 H4-8 2022) https://genome.ucsc.edu/h/GCF_000143185.2 +Nosema ceranae BRL01 GenBank GCA_000182985.1 yes 5465 0 0 Nosema ceranae BRL01 MicrosporidiaDB 578460 GCF_000182985.1_ASM18298v1 GCA_000182985.1 GCF_000182985.1 True Nosema ceranae BRL01 microsporidians N.ceranae (BRL01 2009) https://genome.ucsc.edu/h/GCF_000182985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/985/GCA_000182985.1/genes/GCA_000182985.1_ASM18298v1.augustus.gtf.gz +Nosema bombycis CQ1 GenBank GCA_000383075.1 yes 0 1607 0 Nosema bombycis CQ1 MicrosporidiaDB 578461 GCA_000383075.1_NosBomCQ1_v1.0 GCA_000383075.1 False Nosema bombycis CQ1 microsporidians N.bombycis (CQ1 2013) https://genome.ucsc.edu/h/GCA_000383075.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/383/075/GCA_000383075.1/genes/GCA_000383075.1_NosBomCQ1_v1.0.augustus.gtf.gz +Allomyces macrogynus ATCC 38327 GenBank GCA_000151295.1 yes 0 101 0 Allomyces macrogynus ATCC 38327 FungiDB 578462 GCA_000151295.1_A_macrogynus_V3 GCA_000151295.1 False Allomyces macrogynus ATCC 38327 blastocladiomycotan A.macrogynus (ATCC 38327 2010) https://genome.ucsc.edu/h/GCA_000151295.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/295/GCA_000151295.1/genes/GCA_000151295.1_A_macrogynus_V3.augustus.gtf.gz +Plasmodium berghei ANKA GenBank GCA_900002375.2 yes 5 0 14 Plasmodium berghei ANKA PlasmoDB 5823 GCF_900002375.2_GCA_900002375 GCA_900002375.2 GCF_900002375.2 False Plasmodium berghei ANKA apicomplexans P.berghei (ANKA 2019) https://genome.ucsc.edu/h/GCF_900002375.2 +Plasmodium falciparum NF54 INSDC GCA_009761475.1 no 0 28 0 Plasmodium falciparum NF54 PlasmoDB 5833 GCA_009761475.1_NF54_v1 GCA_009761475.1 False Plasmodium falciparum malaria parasite P. falciparum (NF54 2019) https://genome.ucsc.edu/h/GCA_009761475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/475/GCA_009761475.1/genes/GCA_009761475.1_NF54_v1.augustus.gtf.gz +Plasmodium knowlesi strain H GenBank GCA_000006355.3 yes 148 0 14 Plasmodium knowlesi strain H PlasmoDB 5851 GCF_000006355.2_GCA_000006355.2 GCA_000006355.3 GCF_000006355.2 False Plasmodium knowlesi strain H apicomplexans P.knowlesi strain (H 2020) https://genome.ucsc.edu/h/GCF_000006355.2 +Giardia Assemblage B isolate GS GenBank GCA_000182405.1 no 2931 0 0 Giardia Assemblage B isolate GS GiardiaDB 598745 GCA_000182405.1_ASM18240v1 GCA_000182405.1 False Giardia intestinalis ATCC 50581 diplomonads (GS/M clone H7 2009) https://genome.ucsc.edu/h/GCA_000182405.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/405/GCA_000182405.1/genes/GCA_000182405.1_ASM18240v1.augustus.gtf.gz +Aspergillus carbonarius ITEM 5010 GenBank GCA_001990825.1 yes 0 829 0 Aspergillus carbonarius ITEM 5010 FungiDB 602072 GCA_001990825.1_Aspca3 GCA_001990825.1 False Aspergillus carbonarius ITEM 5010 ascomycetes A.carbonaris (ITEM 5010 2017) https://genome.ucsc.edu/h/GCA_001990825.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/990/825/GCA_001990825.1/genes/GCA_001990825.1_Aspca3.augustus.gtf.gz +Puccinia triticina 1-1 BBBD Race 1 GenBank GCA_000151525.2 yes 14818 0 0 Puccinia triticina 1-1 BBBD Race 1 FungiDB 630390 GCA_000151525.2_P_triticina_1_1_V2 GCA_000151525.2 False Puccinia triticina 1-1 BBBD Race 1 wheat leaf rust (1-1 BBBD Race 1 2016) https://genome.ucsc.edu/h/GCA_000151525.2 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 +Gaeumannomyces tritici R3-111a-1 INSDC GCA_000145635.1 yes 0 513 0 Gaeumannomyces tritici R3-111a-1 FungiDB 644352 GCF_000145635.1_Gae_graminis_V2 GCA_000145635.1 GCF_000145635.1 True Gaeumannomyces tritici R3-111a-1 ascomycetes G.tritici R3-111a-1 https://genome.ucsc.edu/h/GCF_000145635.1 +Magnaporthiopsis poae ATCC 64411 INSDC GCA_000193285.1 yes 0 205 0 Magnaporthiopsis poae ATCC 64411 FungiDB 644358 GCA_000193285.1_Mag_poae_ATCC_64411_V1 GCA_000193285.1 False Magnaporthiopsis poae ATCC 64411 ascomycetes M.poae (ATCC 64411 2011) https://genome.ucsc.edu/h/GCA_000193285.1 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 +Colletotrichum graminicola M1.001 INSDC GCA_000149035.1 yes 0 653 0 Colletotrichum graminicola M1.001 FungiDB 645133 GCF_000149035.1_C_graminicola_M1_001_V1 GCA_000149035.1 GCF_000149035.1 True Colletotrichum graminicola M1.001 ascomycetes C.graminicola M1.001 https://genome.ucsc.edu/h/GCF_000149035.1 +Spizellomyces punctatus DAOM BR117 GenBank GCA_000182565.2 yes 0 38 0 Spizellomyces punctatus DAOM BR117 FungiDB 645134 GCF_000182565.1_S_punctatus_V1 GCA_000182565.2 GCF_000182565.1 True Spizellomyces punctatus DAOM BR117 chytrids S.punctatus DAOM BR117 https://genome.ucsc.edu/h/GCF_000182565.1 +Trichophyton tonsurans CBS 112818 INSDC GCA_000151455.1 yes 0 110 0 Trichophyton tonsurans CBS 112818 FungiDB 647933 GCA_000151455.1_ASM15145v1 GCA_000151455.1 False Trichophyton tonsurans CBS 112818 ascomycetes T.tonsurans (CBS 112818 2009) https://genome.ucsc.edu/h/GCA_000151455.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/455/GCA_000151455.1/genes/GCA_000151455.1_ASM15145v1.augustus.gtf.gz +Pseudogymnoascus destructans 20631-21 INSDC GCA_000184105.1 yes 0 1846 0 Pseudogymnoascus destructans 20631-21 FungiDB 658429 GCF_000184105.1_Geom_destructans_V1 GCA_000184105.1 GCF_000184105.1 True Pseudogymnoascus destructans 20631-21 ascomycetes P.destructans (20631-21 2010) https://genome.ucsc.edu/h/GCF_000184105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/184/105/GCA_000184105.1/genes/GCA_000184105.1_Geom_destructans_V1.augustus.gtf.gz +Giardia Assemblage E isolate P15 GenBank GCA_000182665.1 no 820 0 0 Giardia Assemblage E isolate P15 GiardiaDB 658858 GCA_000182665.1_ASM18266v1 GCA_000182665.1 False Giardia lamblia P15 diplomonads (P15 2010) https://genome.ucsc.edu/h/GCA_000182665.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/665/GCA_000182665.1/genes/GCA_000182665.1_ASM18266v1.augustus.gtf.gz +Fusarium oxysporum f. sp. conglutinans Fo5176 INSDC GCA_014154955.1 no 0 4 15 Fusarium oxysporum f. sp. conglutinans Fo5176 FungiDB 100902 GCA_014154955.1_SMRT_HiC_Fo5176 GCA_014154955.1 False Fusarium oxysporum f. sp. conglutinans ascomycetes F.oxysporum f. sp. conglutinans (Fo5176 2020) https://genome.ucsc.edu/h/GCA_014154955.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/154/955/GCA_014154955.1/genes/GCA_014154955.1_SMRT_HiC_Fo5176.augustus.gtf.gz +Fusarium oxysporum Fo47 GenBank GCA_000271705.2 no 0 124 0 Fusarium oxysporum Fo47 FungiDB 660027 GCA_000271705.2_FO_Fo47_V1 GCA_000271705.2 False Fusarium oxysporum Fo47 ascomycetes F.oxysporum (Fo47 2014) https://genome.ucsc.edu/h/GCA_000271705.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/705/GCA_000271705.2/genes/GCA_000271705.2_FO_Fo47_V1.augustus.gtf.gz +Fusarium oxysporum NRRL 32931 GenBank GCA_000271745.2 no 0 168 0 Fusarium oxysporum NRRL 32931 FungiDB 660029 GCF_000271745.1_FO_FOSC_3_a_V1 GCA_000271745.2 GCF_000271745.1 True Fusarium oxysporum NRRL 32931 ascomycetes F.oxysporum (NRRL 32931 2014 refseq) https://genome.ucsc.edu/h/GCF_000271745.1 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 +Fusarium vanettenii 77-13-4 INSDC GCA_000151355.1 yes 0 209 0 Fusarium vanettenii 77-13-4 FungiDB 660122 GCF_000151355.1_v2.0 GCA_000151355.1 GCF_000151355.1 True Fusarium vanettenii 77-13-4 ascomycetes F.vanettenii 77-13-4 https://genome.ucsc.edu/h/GCF_000151355.1 +Sclerotinia sclerotiorum 1980 UF-70 GenBank GCA_001857865.1 yes 0 0 16 Sclerotinia sclerotiorum 1980 UF-70 FungiDB 665079 GCA_001857865.1_ASM185786v1 GCA_001857865.1 False Sclerotinia sclerotiorum 1980 UF-70 ascomycetes S.sclerotiorum UF-70 (1980 2016) https://genome.ucsc.edu/h/GCA_001857865.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/857/865/GCA_001857865.1/genes/GCA_001857865.1_ASM185786v1.augustus.gtf.gz +Trypanosoma brucei gambiense DAL972 GenBank GCA_000210295.1 no 0 0 11 Trypanosoma brucei gambiense DAL972 TriTrypDB 679716 GCF_000210295.1_ASM21029v1 GCA_000210295.1 GCF_000210295.1 True Trypanosoma brucei gambiense DAL972 Trypanosoma brucei gambiense (Dal972 MHOM/CI/86/DAL972 2009 kinetoplastids) https://genome.ucsc.edu/h/GCF_000210295.1 +Aspergillus aculeatus ATCC 16872 GenBank GCA_001890905.1 yes 0 660 0 Aspergillus aculeatus ATCC 16872 FungiDB 690307 GCF_001890905.1_Aspac1 GCA_001890905.1 GCF_001890905.1 True Aspergillus aculeatus ATCC 16872 ascomycetes A.aculeatus ATCC 16872 https://genome.ucsc.edu/h/GCF_001890905.1 +Saprolegnia parasitica CBS 223.65 GenBank GCA_000151545.2 yes 0 1442 0 Saprolegnia parasitica CBS 223.65 FungiDB 695850 GCF_000151545.1_ASM15154v2 GCA_000151545.2 GCF_000151545.1 True Saprolegnia parasitica CBS 223.65 oomycetes (CBS 223.65 2014) https://genome.ucsc.edu/h/GCF_000151545.1 +Naegleria gruberi strain NEG-M INSDC GCA_000004985.1 yes 0 784 0 Naegleria gruberi strain NEG-M AmoebaDB 5762 GCF_000004985.1_V1.0 GCA_000004985.1 GCF_000004985.1 True Naegleria gruberi N.gruberi (NEG-M 2010) https://genome.ucsc.edu/h/GCF_000004985.1 +Rhizophagus irregularis DAOM 181602=DAOM 197198 GenBank GCA_020716725.1 yes 0 0 33 Rhizophagus irregularis DAOM 181602=DAOM 197198 FungiDB 588596 GCA_020716725.1_ASM2071672v1 GCA_020716725.1 False Rhizophagus irregularis glomeromycetes (DAOM-197198 2021) https://genome.ucsc.edu/h/GCA_020716725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/725/GCA_020716725.1/genes/GCA_020716725.1_ASM2071672v1.augustus.gtf.gz +Melampsora larici-populina 98AG31 GenBank GCA_000204055.1 yes 0 462 0 Melampsora larici-populina 98AG31 FungiDB 747676 GCF_000204055.1_v1.0 GCA_000204055.1 GCF_000204055.1 True Melampsora larici-populina 98AG31 rust fungi M.larici-populina 98AG31 https://genome.ucsc.edu/h/GCF_000204055.1 +Mucor lusitanicus CBS 277.49 GenBank GCA_001638945.1 yes 0 21 0 Mucor lusitanicus CBS 277.49 FungiDB 747725 GCA_001638945.1_Mucci2 GCA_001638945.1 False Mucor lusitanicus CBS 277.49 fungi M.lusitanicus (CBS 277.49 2016) https://genome.ucsc.edu/h/GCA_001638945.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/638/945/GCA_001638945.1/genes/GCA_001638945.1_Mucci2.augustus.gtf.gz +Colletotrichum higginsianum IMI 349063 INSDC GCA_001672515.1 yes 0 14 11 Colletotrichum higginsianum IMI 349063 FungiDB 759273 GCF_001672515.1_ASM167251v1 GCA_001672515.1 GCF_001672515.1 True Colletotrichum higginsianum IMI 349063 ascomycetes C.higginsianum IMI 349063 https://genome.ucsc.edu/h/GCF_001672515.1 +Phytophthora parasitica INRA-310 GenBank GCA_000247585.2 yes 0 708 0 Phytophthora parasitica INRA-310 FungiDB 761204 GCF_000247585.1_PP_INRA-310_V2 GCA_000247585.2 GCF_000247585.1 True Phytophthora nicotianae INRA-310 black shank of tobacco agent (INRA-310 2013) https://genome.ucsc.edu/h/GCF_000247585.1 +Phycomyces blakesleeanus NRRL 1555(-) GenBank GCA_001638985.2 yes 0 80 0 Phycomyces blakesleeanus NRRL 1555(-) FungiDB 763407 GCF_001638985.1_Phybl2 GCA_001638985.2 GCF_001638985.1 True Phycomyces blakesleeanus NRRL 1555- fungi P.blakesleeanus NRRL 1555(-) https://genome.ucsc.edu/h/GCF_001638985.1 +Phytophthora capsici LT1534 INSDC GCA_016618375.1 yes 0 782 0 Phytophthora capsici LT1534 FungiDB 4784 GCA_016618375.1_Pcap_4.1 GCA_016618375.1 False Phytophthora capsici downy mildews (LT1534-B 2021) https://genome.ucsc.edu/h/GCA_016618375.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/618/375/GCA_016618375.1/genes/GCA_016618375.1_Pcap_4.1.augustus.gtf.gz +Aspergillus brasiliensis CBS 101740 GenBank GCA_001889945.1 yes 0 103 0 Aspergillus brasiliensis CBS 101740 FungiDB 767769 GCA_001889945.1_Aspbr1 GCA_001889945.1 GCF_001889945.1 True Aspergillus brasiliensis CBS 101740 ascomycetes A.brasiliensis (CBS 101740 2016) https://genome.ucsc.edu/h/GCA_001889945.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/889/945/GCA_001889945.1/genes/GCA_001889945.1_Aspbr1.augustus.gtf.gz +Aspergillus tubingensis CBS 134.48 GenBank GCA_001890745.1 yes 0 33 0 Aspergillus tubingensis CBS 134.48 FungiDB 767770 GCA_001890745.1_Asptu1 GCA_001890745.1 False Aspergillus tubingensis CBS 134.48 ascomycetes A.tubingensis (CBS 134.48 2016) https://genome.ucsc.edu/h/GCA_001890745.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/745/GCA_001890745.1/genes/GCA_001890745.1_Asptu1.augustus.gtf.gz +Sordaria macrospora k-hell GenBank GCF_000182805.3 yes 0 1212 0 Sordaria macrospora k-hell FungiDB 771870 GCF_000182805.3_ASM18280v2 GCA_000182805.2 GCF_000182805.3 False Sordaria macrospora k-hell ascomycetes S.macrospora (v3 k-hell 2012) https://genome.ucsc.edu/h/GCF_000182805.3 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/805/GCF_000182805.3/genes/GCF_000182805.3_ASM18280v2.ncbiRefSeq.gtf.gz +Cenococcum geophilum 1.58 GenBank GCA_001692895.1 yes 0 268 0 Cenococcum geophilum 1.58 FungiDB 794803 GCA_001692895.1_Cenococcum_geophilum_1.58_v2.0 GCA_001692895.1 GCF_001692895.1 True Cenococcum geophilum 1.58 ascomycetes C.geophilum (1.58 2016) https://genome.ucsc.edu/h/GCA_001692895.1 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 +Exophiala dermatitidis NIH/UT8656 INSDC GCA_000230625.1 yes 0 10 0 Exophiala dermatitidis NIH/UT8656 FungiDB 858893 GCF_000230625.1_Exop_derm_V1 GCA_000230625.1 GCF_000230625.1 True Exophiala dermatitidis NIH/UT8656 ascomycetes E.dermatitidis NIH/UT8656 https://genome.ucsc.edu/h/GCF_000230625.1 +Leishmania major strain LV39c5 GenBank GCA_000331345.1 no 0 773 36 Leishmania major strain LV39c5 TriTrypDB 860569 GCA_000331345.1_Leishmania_major_LV39c5-1.0.1 GCA_000331345.1 False Leishmania major strain LV39c5 Leishmania major strain (LV39c5 2013) https://genome.ucsc.edu/h/GCA_000331345.1 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 +Leishmania major strain SD 75.1 GenBank GCA_000250755.2 no 0 36 0 Leishmania major strain SD 75.1 TriTrypDB 860570 GCA_000250755.2_Leishmania_major_SD_75.1-1.1.1 GCA_000250755.2 False Leishmania major strain SD 75.1 Leishmania major strain (SD 75.1 2012) https://genome.ucsc.edu/h/GCA_000250755.2 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 +Theileria orientalis strain Shintoku GenBank GCA_000740895.1 yes 0 0 4 Theileria orientalis strain Shintoku PiroplasmaDB 869250 GCF_000740895.1_ASM74089v1 GCA_000740895.1 GCF_000740895.1 True Theileria orientalis strain Shintoku apicomplexans T.orientalis strain (Shintoku 2012) https://genome.ucsc.edu/h/GCF_000740895.1 +Encephalitozoon intestinalis ATCC 50506 GenBank GCA_000146465.1 yes 0 0 11 Encephalitozoon intestinalis ATCC 50506 MicrosporidiaDB 876142 GCF_000146465.1_ASM14646v1 GCA_000146465.1 GCF_000146465.1 True Encephalitozoon intestinalis ATCC 50506 microsporidians E.intestinalis ATCC 50506 https://genome.ucsc.edu/h/GCF_000146465.1 +Epichloe festucae Fl1 INSDC GCA_003814445.1 yes 0 0 7 Epichloe festucae Fl1 FungiDB 877507 GCA_003814445.1_ASM381444v1 GCA_003814445.1 False Epichloe festucae Fl1 ascomycetes E.festucae (Fl1 2018) https://genome.ucsc.edu/h/GCA_003814445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/814/445/GCA_003814445.1/genes/GCA_003814445.1_ASM381444v1.augustus.gtf.gz +Nematocida parisii ERTm1 GenBank GCA_000250985.1 yes 0 65 0 Nematocida parisii ERTm1 MicrosporidiaDB 881290 GCF_000250985.1_Nema_parisii_ERTm1_V3 GCA_000250985.1 GCF_000250985.1 True Nematocida parisii ERTm1 microsporidians N.parisii ERTm1 https://genome.ucsc.edu/h/GCF_000250985.1 +Entamoeba histolytica DS4-868 INSDC GCA_018466815.1 no 0 1177 0 Entamoeba histolytica DS4-868 AmoebaDB 885310 GCA_018466815.1_ASM1846681v1 GCA_018466815.1 False Entamoeba histolytica DS4-868 E.histolytica (DS4-868 2021) https://genome.ucsc.edu/h/GCA_018466815.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/466/815/GCA_018466815.1/genes/GCA_018466815.1_ASM1846681v1.augustus.gtf.gz +Entamoeba histolytica KU27 GenBank GCA_000338855.1 no 0 1796 0 Entamoeba histolytica KU27 AmoebaDB 885311 GCA_000338855.1_EHA_ku27_v1 GCA_000338855.1 False Entamoeba histolytica KU27 E.histolytica (KU27 2013) https://genome.ucsc.edu/h/GCA_000338855.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/855/GCA_000338855.1/genes/GCA_000338855.1_EHA_ku27_v1.augustus.gtf.gz +Entamoeba histolytica KU48 INSDC GCA_019059535.1 no 0 1168 0 Entamoeba histolytica KU48 AmoebaDB 885312 GCA_019059535.1_ASM1905953v1 GCA_019059535.1 False Entamoeba histolytica KU48 E.histolytica (KU48 2021) https://genome.ucsc.edu/h/GCA_019059535.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/019/059/535/GCA_019059535.1/genes/GCA_019059535.1_ASM1905953v1.augustus.gtf.gz +Entamoeba histolytica KU50 INSDC GCA_020283535.1 no 0 1063 0 Entamoeba histolytica KU50 AmoebaDB 885313 GCA_020283535.1_ASM2028353v1 GCA_020283535.1 False Entamoeba histolytica KU50 E.histolytica (KU50 2021) https://genome.ucsc.edu/h/GCA_020283535.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/535/GCA_020283535.1/genes/GCA_020283535.1_ASM2028353v1.augustus.gtf.gz +Entamoeba histolytica HM-3:IMSS GenBank GCA_000346345.1 no 0 1880 0 Entamoeba histolytica HM-3:IMSS AmoebaDB 885315 GCA_000346345.1_EHA.strHM3_v1 GCA_000346345.1 False Entamoeba histolytica HM-3:IMSS E.histolytica (HM-3:IMSS 2013) https://genome.ucsc.edu/h/GCA_000346345.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/346/345/GCA_000346345.1/genes/GCA_000346345.1_EHA.strHM3_v1.augustus.gtf.gz +Entamoeba histolytica HM-1:IMSS-A GenBank GCA_000365475.1 no 0 1685 0 Entamoeba histolytica HM-1:IMSS-A AmoebaDB 885318 GCA_000365475.1_EHA_CA_v1 GCA_000365475.1 False Entamoeba histolytica HM-1:IMSS-A E.histolytica (HM-1:IMSS-A 2013) https://genome.ucsc.edu/h/GCA_000365475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/475/GCA_000365475.1/genes/GCA_000365475.1_EHA_CA_v1.augustus.gtf.gz +Entamoeba histolytica HM-1:IMSS-B GenBank GCA_000344925.1 no 0 1938 0 Entamoeba histolytica HM-1:IMSS-B AmoebaDB 885319 GCA_000344925.1_EHA_CB_v1 GCA_000344925.1 False Entamoeba histolytica HM-1:IMSS-B E.histolytica (HM-1:IMSS-B 2013) https://genome.ucsc.edu/h/GCA_000344925.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/344/925/GCA_000344925.1/genes/GCA_000344925.1_EHA_CB_v1.augustus.gtf.gz +Encephalitozoon hellem ATCC 50504 GenBank GCA_000277815.3 yes 0 0 12 Encephalitozoon hellem ATCC 50504 MicrosporidiaDB 907965 GCF_000277815.2_ASM27781v3 GCA_000277815.3 GCF_000277815.2 True Encephalitozoon hellem ATCC 50504 microsporidians E.hellem ATCC 50504 https://genome.ucsc.edu/h/GCF_000277815.2 +Trypanosoma cruzi JR cl. 4 GenBank GCA_000331405.1 no 14752 560 0 Trypanosoma cruzi JR cl. 4 TriTrypDB 914063 GCA_000331405.1_Trypanosoma_cruzi_JR_cl4-1.1.4 GCA_000331405.1 False Trypanosoma cruzi JR cl. 4 Trypanosoma cruzi (JR cl. 4 2013) https://genome.ucsc.edu/h/GCA_000331405.1 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 +Leishmania mexicana MHOM/GT/2001/U1103 GenBank GCA_000234665.4 yes 554 0 34 Leishmania mexicana MHOM/GT/2001/U1103 TriTrypDB 929439 GCF_000234665.1_ASM23466v4 GCA_000234665.4 GCF_000234665.1 True Leishmania mexicana MHOM/GT/2001/U1103 Leishmania mexicana (MHOM/GT/2001/U1103 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000234665.1 +Toxoplasma gondii VAND GenBank GCA_000224845.2 no 0 2137 0 Toxoplasma gondii VAND ToxoDB 933077 GCA_000224845.2_TGVAND_v2 GCA_000224845.2 False Toxoplasma gondii VAND apicomplexans T.gondii (VAND 2014) https://genome.ucsc.edu/h/GCA_000224845.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/845/GCA_000224845.2/genes/GCA_000224845.2_TGVAND_v2.augustus.gtf.gz +Toxoplasma gondii RUB GenBank GCA_000224805.2 no 0 2424 0 Toxoplasma gondii RUB ToxoDB 935652 GCA_000224805.2_TGRUB_v2 GCA_000224805.2 False Toxoplasma gondii RUB apicomplexans T.gondii (RUB 2014) https://genome.ucsc.edu/h/GCA_000224805.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/805/GCA_000224805.2/genes/GCA_000224805.2_TGRUB_v2.augustus.gtf.gz +Nematocida parisii ERTm3 GenBank GCA_000190615.1 no 0 53 0 Nematocida parisii ERTm3 MicrosporidiaDB 935791 GCA_000190615.1_Nema_parisii_ERTm3_V1 GCA_000190615.1 False Nematocida parisii ERTm3 microsporidians N.parisii (ERTm3 2011) https://genome.ucsc.edu/h/GCA_000190615.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/190/615/GCA_000190615.1/genes/GCA_000190615.1_Nema_parisii_ERTm3_V1.augustus.gtf.gz +Toxoplasma gondii MAS GenBank GCA_000224865.2 no 0 2180 0 Toxoplasma gondii MAS ToxoDB 943118 GCA_000224865.2_TGMAS1_v2 GCA_000224865.2 False Toxoplasma gondii MAS apicomplexans T.gondii (MAS 2014) https://genome.ucsc.edu/h/GCA_000224865.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/865/GCA_000224865.2/genes/GCA_000224865.2_TGMAS1_v2.augustus.gtf.gz +Toxoplasma gondii p89 GenBank GCA_000224885.2 no 0 2150 0 Toxoplasma gondii p89 ToxoDB 943119 GCA_000224885.2_TGP89A_v02 GCA_000224885.2 False Toxoplasma gondii p89 apicomplexans T.gondii (p89 2014) https://genome.ucsc.edu/h/GCA_000224885.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/885/GCA_000224885.2/genes/GCA_000224885.2_TGP89A_v02.augustus.gtf.gz +Toxoplasma gondii TgCATBr9 GenBank GCA_000224825.2 no 0 2452 0 Toxoplasma gondii TgCATBr9 ToxoDB 943120 GCA_000224825.2_TGCATBR9_v2 GCA_000224825.2 False Toxoplasma gondii TgCATBr9 apicomplexans T.gondii (TgCATBr9 2018) https://genome.ucsc.edu/h/GCA_000224825.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/825/GCA_000224825.2/genes/GCA_000224825.2_TGCATBR9_v2.augustus.gtf.gz +Toxoplasma gondii TgCATBr5 GenBank GCA_000259835.1 no 6995 0 0 Toxoplasma gondii TgCATBr5 ToxoDB 943121 GCA_000259835.1_TGCATBR5 GCA_000259835.1 False Toxoplasma gondii TgCATBr5 apicomplexans T.gondii (TgCATBr5 2011) https://genome.ucsc.edu/h/GCA_000259835.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/259/835/GCA_000259835.1/genes/GCA_000259835.1_TGCATBR5.augustus.gtf.gz +Toxoplasma gondii CAST GenBank GCA_000256705.2 no 0 2656 0 Toxoplasma gondii CAST ToxoDB 943122 GCA_000256705.2_TGCAST_v2 GCA_000256705.2 False Toxoplasma gondii CAST apicomplexans T.gondii (CAST 2018) https://genome.ucsc.edu/h/GCA_000256705.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/705/GCA_000256705.2/genes/GCA_000256705.2_TGCAST_v2.augustus.gtf.gz +Toxoplasma gondii FOU GenBank GCA_000224905.2 no 0 2869 0 Toxoplasma gondii FOU ToxoDB 943167 GCA_000224905.2_TGFOU1v02 GCA_000224905.2 False Toxoplasma gondii FOU apicomplexans T.gondii (FOU 2014) https://genome.ucsc.edu/h/GCA_000224905.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/905/GCA_000224905.2/genes/GCA_000224905.2_TGFOU1v02.augustus.gtf.gz +Vavraia culicis subsp. floridensis GenBank GCA_000192795.1 yes 0 379 0 Vavraia culicis subsp. floridensis MicrosporidiaDB 948595 GCF_000192795.1_Vavr_culi_floridensis_V1 GCA_000192795.1 GCF_000192795.1 True Vavraia culicis subsp. floridensis microsporidians V.culicis subsp. floridensis https://genome.ucsc.edu/h/GCF_000192795.1 +Leishmania donovani BPK282A1 GenBank GCA_000227135.2 yes 0 0 36 Leishmania donovani BPK282A1 TriTrypDB 5661 GCF_000227135.1_ASM22713v2 GCA_000227135.2 GCF_000227135.1 True Leishmania donovani Leishmania donovani (BPK282A1 2011 kinetoplastids) https://genome.ucsc.edu/h/GCF_000227135.1 +Cordyceps militaris CM01 INSDC GCA_000225605.1 no 0 32 0 Cordyceps militaris CM01 FungiDB 983644 GCF_000225605.1_CmilitarisCM01_v01 GCA_000225605.1 GCF_000225605.1 True Cordyceps militaris CM01 ascomycetes C.militaris CM01 https://genome.ucsc.edu/h/GCF_000225605.1 +Plenodomus lingam JN3 INSDC GCA_000230375.1 yes 0 76 0 Plenodomus lingam JN3 FungiDB 985895 GCF_000230375.1_ASM23037v1 GCA_000230375.1 GCF_000230375.1 True Plenodomus lingam JN3 blackleg of rapeseed fungus https://genome.ucsc.edu/h/GCF_000230375.1 +Encephalitozoon cuniculi EC1 GenBank GCA_000221285.2 no 0 0 12 Encephalitozoon cuniculi EC1 MicrosporidiaDB 986730 GCA_000221285.2_Ence_cuni_EC1_V1 GCA_000221285.2 False Encephalitozoon cuniculi EC1 microsporidians E.cuniculi (EC1 2011) https://genome.ucsc.edu/h/GCA_000221285.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/285/GCA_000221285.2/genes/GCA_000221285.2_Ence_cuni_EC1_V1.augustus.gtf.gz +Encephalitozoon cuniculi EC2 GenBank GCA_000221265.2 no 0 0 16 Encephalitozoon cuniculi EC2 MicrosporidiaDB 989654 GCA_000221265.2_Ence_cuni_EC2_V1 GCA_000221265.2 False Encephalitozoon cuniculi EC2 microsporidians E.cuniculi (EC2 2011) https://genome.ucsc.edu/h/GCA_000221265.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/265/GCA_000221265.2/genes/GCA_000221265.2_Ence_cuni_EC2_V1.augustus.gtf.gz +Encephalitozoon cuniculi EC3 GenBank GCA_000221245.2 no 0 0 15 Encephalitozoon cuniculi EC3 MicrosporidiaDB 989655 GCA_000221245.2_Ence_cuni_EC3_V1 GCA_000221245.2 False Encephalitozoon cuniculi EC3 microsporidians E.cuniculi (EC3 2011) https://genome.ucsc.edu/h/GCA_000221245.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/245/GCA_000221245.2/genes/GCA_000221245.2_Ence_cuni_EC3_V1.augustus.gtf.gz +Vittaforma corneae ATCC 50505 GenBank GCA_000231115.1 yes 0 220 0 Vittaforma corneae ATCC 50505 MicrosporidiaDB 993615 GCF_000231115.1_Vitt_corn_V1 GCA_000231115.1 GCF_000231115.1 True Vittaforma corneae ATCC 50505 microsporidians V.corneae ATCC 50505 https://genome.ucsc.edu/h/GCF_000231115.1 +Sporisorium reilianum SRZ2 GenBank GCA_000230245.1 yes 21 0 23 Sporisorium reilianum SRZ2 FungiDB 999809 GCA_000230245.1_ASM23024v1 GCA_000230245.1 False Sporisorium reilianum SRZ2 smut fungi S.reilianum SRZ2 (2011) https://genome.ucsc.edu/h/GCA_000230245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/245/GCA_000230245.1/genes/GCA_000230245.1_ASM23024v1.augustus.gtf.gz +Aedes aegypti Aag2 INSDC GCA_021653915.1 no 0 3752 0 Aedes aegypti Aag2 VectorBase 7159 GCA_021653915.1_ASM2165391v1 GCA_021653915.1 False Aedes aegypti yellow fever mosquito (Aag2 2022) https://genome.ucsc.edu/h/GCA_021653915.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/021/653/915/GCA_021653915.1/genes/GCA_021653915.1_ASM2165391v1.augustus.gtf.gz +Aedes aegypti LVP_AGWG INSDC GCA_002204515.1 yes 0 2306 3 Aedes aegypti LVP_AGWG VectorBase 7159 GCF_002204515.2_AaegL5.0 GCA_002204515.1 GCF_002204515.2 False Aedes aegypti yellow fever mosquito (LVP_AGWG 2017 refseq) https://genome.ucsc.edu/h/GCF_002204515.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/204/515/GCA_002204515.1/genes/GCA_002204515.1_AaegL5.0.augustus.gtf.gz +Aedes albopictus C6/36 cell line INSDC GCF_001876365.2 no 0 2434 0 Aedes albopictus C6/36 cell line VectorBase 7160 GCF_001876365.2_canu_80X_arrow2.2 GCA_001876365.2 GCF_001876365.2 False Aedes albopictus Asian tiger mosquito (C6/36 2017 refseq) https://genome.ucsc.edu/h/GCF_001876365.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/001/876/365/GCF_001876365.2/genes/GCF_001876365.2_canu_80X_arrow2.2.ncbiRefSeq.gtf.gz +Aedes albopictus Foshan FPA INSDC GCA_006496715.1 yes 0 2196 0 Aedes albopictus Foshan FPA VectorBase 7160 GCF_006496715.2_Aalbo_primary.1 GCA_006496715.1 GCF_006496715.2 False Aedes albopictus Asian tiger mosquito (v2 FPA 2019) https://genome.ucsc.edu/h/GCF_006496715.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/006/496/715/GCA_006496715.1/genes/GCA_006496715.1_Aalbo_primary.1.augustus.gtf.gz +Anopheles albimanus STECLA INSDC GCA_000349125.2 no 0 196 5 Anopheles albimanus STECLA VectorBase 7167 GCA_000349125.2_Anop_albi_ALBI9_A_V2 GCA_000349125.2 False Anopheles albimanus mosquito A.albimanus (ALBI9_A 2017) https://genome.ucsc.edu/h/GCA_000349125.2 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 +Anopheles albimanus STECLA 2020 INSDC GCF_013758885.1 yes 0 4 3 Anopheles albimanus STECLA 2020 VectorBase 7167 GCF_013758885.1_VT_AalbS3_pri_1.0 GCA_013758885.1 GCF_013758885.1 True Anopheles albimanus mosquito A.albimanus (STELCA 2020) https://genome.ucsc.edu/h/GCF_013758885.1 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 +Alternaria alternata SRC1lrK2f INSDC GCA_001642055.1 yes 0 79 0 Alternaria alternata SRC1lrK2f FungiDB 5599 GCF_001642055.1_Altal1 GCA_001642055.1 GCF_001642055.1 True Alternaria alternata ascomycetes A.alternata https://genome.ucsc.edu/h/GCF_001642055.1 +Anopheles aquasalis AaquGF1 INSDC GCF_943734665.1 yes 0 86 4 Anopheles aquasalis AaquGF1 VectorBase 42839 GCF_943734665.1_idAnoAquaMG_Q_19 GCA_943734665.1 GCF_943734665.1 True Anopheles aquasalis mosquito A.aquasalis (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734665.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/665/GCF_943734665.1/genes/GCF_943734665.1_idAnoAquaMG_Q_19.ncbiRefSeq.gtf.gz +Anopheles arabiensis DONGOLA 2021 INSDC GCF_016920715.1 yes 0 98 3 Anopheles arabiensis DONGOLA 2021 VectorBase 7173 GCF_016920715.1_AaraD3 GCA_016920715.1 GCF_016920715.1 False Anopheles arabiensis mosquito A.arabiensis (DONGOLA 2021) https://genome.ucsc.edu/h/GCF_016920715.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/715/GCF_016920715.1/genes/GCF_016920715.1_AaraD3.ncbiRefSeq.gtf.gz +Anopheles arabiensis Dongola INSDC GCA_000349185.1 no 0 1214 0 Anopheles arabiensis Dongola VectorBase 7173 GCA_000349185.1_Anop_arab_DONG5_A_V1 GCA_000349185.1 False Anopheles arabiensis mosquito A.arabiensis (DONG5_A 2013) https://genome.ucsc.edu/h/GCA_000349185.1 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 +Aphanomyces astaci strain APO3 GenBank GCA_000520075.1 yes 0 835 0 Aphanomyces astaci strain APO3 FungiDB 112090 GCF_000520075.1_Apha_asta_APO3_V1 GCA_000520075.1 GCF_000520075.1 True Aphanomyces astaci oomycetes (APO3 2014) https://genome.ucsc.edu/h/GCF_000520075.1 +Acanthamoeba astronyxis Unknown GenBank GCA_000826245.1 yes 0 98248 0 Acanthamoeba astronyxis Unknown AmoebaDB 65658 GCA_000826245.1_Acanthamoeba_astronyxis GCA_000826245.1 False Acanthamoeba astronyxis A.astronyxis (2015) https://genome.ucsc.edu/h/GCA_000826245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/245/GCA_000826245.1/genes/GCA_000826245.1_Acanthamoeba_astronyxis.augustus.gtf.gz +Anopheles atroparvus EBRO INSDC GCA_000473505.1 yes 0 1315 5 Anopheles atroparvus EBRO VectorBase 41427 GCA_000473505.1_Anop_atro_EBRO_V1 GCA_000473505.1 False Anopheles atroparvus mosquito A.atroparvus (EBRO 2013) https://genome.ucsc.edu/h/GCA_000473505.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/505/GCA_000473505.1/genes/GCA_000473505.1_Anop_atro_EBRO_V1.augustus.gtf.gz +Anopheles bellator AbelBR1 INSDC GCF_943735745.2 yes 0 2982 3 Anopheles bellator AbelBR1 VectorBase 139047 GCF_943735745.2_idAnoBellAS_SP24_06.2 GCA_943735745.2 GCF_943735745.2 False Anopheles bellator mosquito A.bellator (2023) https://genome.ucsc.edu/h/GCF_943735745.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/735/745/GCF_943735745.2/genes/GCF_943735745.2_idAnoBellAS_SP24_06.2.ncbiRefSeq.gtf.gz +Acanthamoeba castellanii C3 INSDC GCA_021020595.1 no 0 174 0 Acanthamoeba castellanii C3 AmoebaDB 5755 GCA_021020595.1_ASM2102059v1 GCA_021020595.1 False Acanthamoeba castellanii A.castellanii (C3 2021) https://genome.ucsc.edu/h/GCA_021020595.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/595/GCA_021020595.1/genes/GCA_021020595.1_ASM2102059v1.augustus.gtf.gz +Acanthamoeba castellanii Ma GenBank GCA_000826485.1 no 0 221748 0 Acanthamoeba castellanii Ma AmoebaDB 5755 GCA_000826485.1_Acanthamoeba_castellanii GCA_000826485.1 False Acanthamoeba castellanii A.castellanii (2015) https://genome.ucsc.edu/h/GCA_000826485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/485/GCA_000826485.1/genes/GCA_000826485.1_Acanthamoeba_castellanii.augustus.gtf.gz +Acanthamoeba castellanii str. Neff 2021 INSDC GCA_021020605.1 no 0 111 0 Acanthamoeba castellanii str. Neff 2021 AmoebaDB 5755 GCA_021020605.1_ASM2102060v1 GCA_021020605.1 False Acanthamoeba castellanii A.castellanii (Neff 2021) https://genome.ucsc.edu/h/GCA_021020605.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/605/GCA_021020605.1/genes/GCA_021020605.1_ASM2102060v1.augustus.gtf.gz +Anopheles christyi ACHKN1017 INSDC GCA_000349165.1 yes 0 30369 0 Anopheles christyi ACHKN1017 VectorBase 43041 GCA_000349165.1_Anop_chri_ACHKN1017_V1 GCA_000349165.1 False Anopheles christyi mosquito A.christyi (ACHKN1017 2013) https://genome.ucsc.edu/h/GCA_000349165.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/165/GCA_000349165.1/genes/GCA_000349165.1_Anop_chri_ACHKN1017_V1.augustus.gtf.gz +Anopheles coluzzii AcolN3 INSDC GCF_943734685.1 yes 0 125 3 Anopheles coluzzii AcolN3 VectorBase 1518534 GCF_943734685.1_AcolN3 GCA_943734685.1 GCF_943734685.1 True Anopheles coluzzii mosquito A.coluzzii (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734685.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/685/GCF_943734685.1/genes/GCF_943734685.1_AcolN3.ncbiRefSeq.gtf.gz +Anopheles coluzzii MOPTI INSDC GCF_016920705.1 no 0 196 3 Anopheles coluzzii MOPTI VectorBase 1518534 GCF_016920705.1_AcolMOP1 GCA_016920705.1 GCF_016920705.1 False Anopheles coluzzii mosquito A.coluzzi (MOPTI 2021) https://genome.ucsc.edu/h/GCF_016920705.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/705/GCF_016920705.1/genes/GCF_016920705.1_AcolMOP1.ncbiRefSeq.gtf.gz +Anopheles coluzzii Mali-NIH INSDC GCA_000150765.1 no 0 10521 0 Anopheles coluzzii Mali-NIH VectorBase 1518534 GCA_000150765.1_m5 GCA_000150765.1 False Anopheles coluzzii mosquito A.coluzzii (M 2008) https://genome.ucsc.edu/h/GCA_000150765.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/765/GCA_000150765.1/genes/GCA_000150765.1_m5.augustus.gtf.gz +Anopheles coluzzii Ngousso INSDC GCA_004136515.2 no 0 205 0 Anopheles coluzzii Ngousso VectorBase 1518534 GCA_004136515.2_ASM413651v2 GCA_004136515.2 False Anopheles coluzzii mosquito A.coluzzii (Ngousso colony 2019) https://genome.ucsc.edu/h/GCA_004136515.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/136/515/GCA_004136515.2/genes/GCA_004136515.2_ASM413651v2.augustus.gtf.gz +Anopheles coustani AcouGA1 INSDC GCF_943734705.1 yes 0 416 3 Anopheles coustani AcouGA1 VectorBase 139045 GCF_943734705.1_idAnoCousDA_361_x.2 GCA_943734705.2 GCF_943734705.1 False Anopheles coustani mosquito A.coustani (2023) https://genome.ucsc.edu/h/GCF_943734705.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/705/GCF_943734705.1/genes/GCF_943734705.1_idAnoCousDA_361_x.2.ncbiRefSeq.gtf.gz +Aspergillus cristatus GZAAS20.1005 INSDC GCA_001717485.1 yes 0 68 0 Aspergillus cristatus GZAAS20.1005 FungiDB 573508 GCA_001717485.1_ASM171748v1 GCA_001717485.1 False Aspergillus cristatus ascomycetes A.cristatus (GZAAS20.1005 2016) https://genome.ucsc.edu/h/GCA_001717485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/717/485/GCA_001717485.1/genes/GCA_001717485.1_ASM171748v1.augustus.gtf.gz +Anopheles cruzii AcruBR1 INSDC GCF_943734635.1 yes 0 5085 3 Anopheles cruzii AcruBR1 VectorBase 68878 GCF_943734635.1_idAnoCruzAS_RS32_06 GCA_943734635.1 GCF_943734635.1 False Anopheles cruzii mosquito A.cruzii (2022) https://genome.ucsc.edu/h/GCF_943734635.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/635/GCF_943734635.1/genes/GCF_943734635.1_idAnoCruzAS_RS32_06.ncbiRefSeq.gtf.gz +Acanthamoeba sp Galka GenBank GCA_000826505.1 yes 0 224137 0 Acanthamoeba sp. Galka AmoebaDB 65662 GCA_000826505.1_Acanthamoeba_pearcei GCA_000826505.1 False Acanthamoeba pearcei A.pearcei (2015) https://genome.ucsc.edu/h/GCA_000826505.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/505/GCA_000826505.1/genes/GCA_000826505.1_Acanthamoeba_pearcei.augustus.gtf.gz +Acanthamoeba sp Incertae sedis GenBank GCA_000826365.1 no 0 24098 0 Acanthamoeba sp. Incertae_sedis AmoebaDB 32600 GCA_000826365.1_Acanthamoeba_royreba GCA_000826365.1 False Acanthamoeba royreba A.royreba (2015) https://genome.ucsc.edu/h/GCA_000826365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/365/GCA_000826365.1/genes/GCA_000826365.1_Acanthamoeba_royreba.augustus.gtf.gz +Acanthamoeba sp T4b-type GenBank GCA_000826345.1 no 0 224482 0 Acanthamoeba sp. T4B-type AmoebaDB 5757 GCA_000826345.1_Acanthamoeba_polyphaga GCA_000826345.1 False Acanthamoeba polyphaga A.polyphaga (2015) https://genome.ucsc.edu/h/GCA_000826345.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/345/GCA_000826345.1/genes/GCA_000826345.1_Acanthamoeba_polyphaga.augustus.gtf.gz +Anopheles culicifacies A-37 INSDC GCA_000473375.1 yes 0 16162 0 Anopheles culicifacies A-37 VectorBase 139723 GCA_000473375.1_Anop_culi_species_A-37_1_V1 GCA_000473375.1 False Anopheles culicifacies mosquito A.culicifacies (species A-37_1 2013) https://genome.ucsc.edu/h/GCA_000473375.1 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 +Acanthamoeba culbertsoni A1 GenBank GCA_000826265.1 yes 0 72411 0 Acanthamoeba culbertsoni A1 AmoebaDB 43142 GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly GCA_000826265.1 False Acanthamoeba culbertsoni A.culbertsoni (2015) https://genome.ucsc.edu/h/GCA_000826265.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/265/GCA_000826265.1/genes/GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly.augustus.gtf.gz +Anopheles darlingi AdarGF1 INSDC GCF_943734745.1 yes 0 62 3 Anopheles darlingi AdarGF1 VectorBase 43151 GCF_943734745.1_idAnoDarlMG_H_01 GCA_943734745.1 GCF_943734745.1 True Anopheles darlingi American malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734745.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/745/GCF_943734745.1/genes/GCF_943734745.1_idAnoDarlMG_H_01.ncbiRefSeq.gtf.gz +Anopheles darlingi Coari INSDC GCA_000211455.3 no 0 2220 0 Anopheles darlingi Coari VectorBase 43151 GCA_000211455.3_A_darlingi_v1 GCA_000211455.3 False Anopheles darlingi American malaria mosquito (2013) https://genome.ucsc.edu/h/GCA_000211455.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/211/455/GCA_000211455.3/genes/GCA_000211455.3_A_darlingi_v1.augustus.gtf.gz +Angomonas deanei strain Cavalho ATCC PRA-265 INSDC GCA_903995115.1 yes 0 0 29 Angomonas deanei strain Cavalho ATCC PRA-265 TriTrypDB 59799 GCA_903995115.1_Adeanei_nanopore_chromosomes GCA_903995115.1 False Angomonas deanei Angomonas (Crithidia deanei Carvalho ATCC PRA-265 2020) https://genome.ucsc.edu/h/GCA_903995115.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/903/995/115/GCA_903995115.1/genes/GCA_903995115.1_Adeanei_nanopore_chromosomes.augustus.gtf.gz +Anopheles dirus WRAIR2 INSDC GCA_000349145.1 yes 0 1266 0 Anopheles dirus WRAIR2 VectorBase 7168 GCA_000349145.1_Anop_diru_WRAIR2_V1 GCA_000349145.1 False Anopheles dirus mosquito A.dirus (WRAIR2 2013) https://genome.ucsc.edu/h/GCA_000349145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/145/GCA_000349145.1/genes/GCA_000349145.1_Anop_diru_WRAIR2_V1.augustus.gtf.gz +Anopheles epiroticus Epiroticus2 INSDC GCA_000349105.1 yes 0 2673 0 Anopheles epiroticus Epiroticus2 VectorBase 199890 GCA_000349105.1_Anop_epir_epiroticus2_V1 GCA_000349105.1 False Anopheles epiroticus mosquito A.epiroticus (epiroticus2 2013) https://genome.ucsc.edu/h/GCA_000349105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/105/GCA_000349105.1/genes/GCA_000349105.1_Anop_epir_epiroticus2_V1.augustus.gtf.gz +Aphanomyces euteiches MF1 INSDC GCA_021527665.1 yes 0 7789 0 Aphanomyces euteiches MF1 FungiDB 100861 GCA_021527665.1_ASM2152766v1 GCA_021527665.1 False Aphanomyces euteiches oomycetes (MF1 2022) https://genome.ucsc.edu/h/GCA_021527665.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/021/527/665/GCA_021527665.1/genes/GCA_021527665.1_ASM2152766v1.augustus.gtf.gz +Anopheles farauti FAR1 INSDC GCA_000473445.2 yes 0 310 0 Anopheles farauti FAR1 VectorBase 69004 GCA_000473445.2_Anop_fara_FAR1_V2 GCA_000473445.2 False Anopheles farauti mosquito A.farauti (FAR1 2014) https://genome.ucsc.edu/h/GCA_000473445.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/445/GCA_000473445.2/genes/GCA_000473445.2_Anop_fara_FAR1_V2.augustus.gtf.gz +Arthrobotrys flagrans CBS H-5679 INSDC GCA_004000055.1 yes 0 14 0 Arthrobotrys flagrans CBS H-5679 FungiDB 97331 GCA_004000055.1_DF_1.0 GCA_004000055.1 GCF_004000055.1 True Arthrobotrys flagrans ascomycetes A.flagrans (CBS H-5679 2019) https://genome.ucsc.edu/h/GCA_004000055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/055/GCA_004000055.1/genes/GCA_004000055.1_DF_1.0.augustus.gtf.gz +Aspergillus flavus NRRL3357 2020 INSDC GCA_009017415.1 no 0 0 8 Aspergillus flavus NRRL3357 2020 FungiDB 5059 GCA_009017415.1_ASM901741v1 GCA_009017415.1 False Aspergillus flavus ascomycetes A.flavus (NRRL 3357 2019) https://genome.ucsc.edu/h/GCA_009017415.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/017/415/GCA_009017415.1/genes/GCA_009017415.1_ASM901741v1.augustus.gtf.gz +Anopheles funestus AfunGA1 INSDC GCF_943734845.2 yes 0 326 3 Anopheles funestus AfunGA1 VectorBase 62324 GCF_943734845.2_idAnoFuneDA-416_04 GCA_943734845.1 GCF_943734845.2 True Anopheles funestus African malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/845/GCF_943734845.2/genes/GCF_943734845.2_idAnoFuneDA-416_04.ncbiRefSeq.gtf.gz +Anopheles funestus FUMOZ INSDC GCA_003951495.1 no 0 0 3 Anopheles funestus FUMOZ VectorBase 62324 GCA_003951495.1_AfunF3 GCA_003951495.1 False Anopheles funestus African malaria mosquito (FUMOZ 2018) https://genome.ucsc.edu/h/GCA_003951495.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/951/495/GCA_003951495.1/genes/GCA_003951495.1_AfunF3.augustus.gtf.gz +Anopheles gambiae Ifakara INSDC GCF_943734735.2 no 0 187 3 Anopheles gambiae Ifakara VectorBase 7165 GCF_943734735.2_idAnoGambNW_F1_1 GCA_943734735.2 GCF_943734735.2 True Anopheles gambiae African malaria mosquito (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734735.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz +Anopheles gambiae Pimperena INSDC GCA_000150785.1 no 0 13042 0 Anopheles gambiae Pimperena VectorBase 7165 GCA_000150785.1_g4 GCA_000150785.1 False Anopheles gambiae African malaria mosquito (S 2008) https://genome.ucsc.edu/h/GCA_000150785.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/785/GCA_000150785.1/genes/GCA_000150785.1_g4.augustus.gtf.gz +Aphanomyces invadans NJM9701 GenBank GCA_000520115.1 yes 0 481 0 Aphanomyces invadans NJM9701 FungiDB 157072 GCF_000520115.1_Apha_inva_NJM9701_V1 GCA_000520115.1 GCF_000520115.1 True Aphanomyces invadans oomycetes (NJM9701 2014) https://genome.ucsc.edu/h/GCF_000520115.1 +Aspergillus lentulus strain IFM 54703 INSDC GCA_001445615.2 yes 0 12 0 Aspergillus lentulus strain IFM 54703 FungiDB 293939 GCA_001445615.2_Alt_assembly01 GCA_001445615.2 False Aspergillus lentulus ascomycetes A.lentulus (IFM 54703 2021) https://genome.ucsc.edu/h/GCA_001445615.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/445/615/GCA_001445615.2/genes/GCA_001445615.2_Alt_assembly01.augustus.gtf.gz +Acanthamoeba lenticulata PD2S GenBank GCA_000826285.1 yes 0 79048 0 Acanthamoeba lenticulata PD2S AmoebaDB 29196 GCA_000826285.1_Acanthamoeba_lenticulata GCA_000826285.1 False Acanthamoeba lenticulata A.lenticulata (2015) https://genome.ucsc.edu/h/GCA_000826285.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/285/GCA_000826285.1/genes/GCA_000826285.1_Acanthamoeba_lenticulata.augustus.gtf.gz +Antonospora locustae CLX INSDC GCA_007674295.1 yes 0 1 17 Antonospora locustae CLX MicrosporidiaDB 278021 GCA_007674295.1_ASM767429v1 GCA_007674295.1 False Antonospora locustae microsporidians A.locustae (CLX 2019) https://genome.ucsc.edu/h/GCA_007674295.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/007/674/295/GCA_007674295.1/genes/GCA_007674295.1_ASM767429v1.augustus.gtf.gz +Acanthamoeba lugdunensis L3a GenBank GCA_000826425.1 yes 0 67459 0 Acanthamoeba lugdunensis L3a AmoebaDB 61605 GCA_000826425.1_Acanthamoeba_lugdunensis GCA_000826425.1 False Acanthamoeba lugdunensis A.lugdunensis (2015) https://genome.ucsc.edu/h/GCA_000826425.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/425/GCA_000826425.1/genes/GCA_000826425.1_Acanthamoeba_lugdunensis.augustus.gtf.gz +Anopheles maculipalpis AmacGA1 INSDC GCF_943734695.1 yes 0 167 3 Anopheles maculipalpis AmacGA1 VectorBase 1496333 GCF_943734695.1_idAnoMacuDA_375_x GCA_943734695.1 GCF_943734695.1 True Anopheles maculipalpis mosquito A.maculipalpis (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734695.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/695/GCF_943734695.1/genes/GCF_943734695.1_idAnoMacuDA_375_x.ncbiRefSeq.gtf.gz +Amblyomma maculatum SK-2019 INSDC GCA_023969395.1 yes 0 125877 0 Amblyomma maculatum SK-2019 VectorBase 34609 GCA_023969395.1_ASM2396939v1 GCA_023969395.1 False Amblyomma maculatum Gulf Coast tick (SK-2019 2022) https://genome.ucsc.edu/h/GCA_023969395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/023/969/395/GCA_023969395.1/genes/GCA_023969395.1_ASM2396939v1.augustus.gtf.gz +Anopheles maculatus maculatus3 INSDC GCA_000473185.1 yes 0 47797 0 Anopheles maculatus maculatus3 VectorBase 74869 GCA_000473185.1_Anop_macu_maculatus3_V1 GCA_000473185.1 False Anopheles maculatus mosquito A.maculatus (maculatus3 2013) https://genome.ucsc.edu/h/GCA_000473185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/185/GCA_000473185.1/genes/GCA_000473185.1_Anop_macu_maculatus3_V1.augustus.gtf.gz +Anopheles marshallii AmarGA1 INSDC GCF_943734725.1 yes 0 285 3 Anopheles marshallii AmarGA1 VectorBase 1521116 GCF_943734725.1_idAnoMarsDA_429_01 GCA_943734725.1 GCF_943734725.1 True Anopheles marshallii mosquito A.marshallii (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734725.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/725/GCF_943734725.1/genes/GCF_943734725.1_idAnoMarsDA_429_01.ncbiRefSeq.gtf.gz +Acanthamoeba mauritaniensis 1652 GenBank GCA_000826465.1 yes 0 67233 0 Acanthamoeba mauritaniensis 1652 AmoebaDB 196912 GCA_000826465.1_Acanthamoeba_mauritaniensis GCA_000826465.1 False Acanthamoeba mauritaniensis A.mauritaniensis (2015) https://genome.ucsc.edu/h/GCA_000826465.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/465/GCA_000826465.1/genes/GCA_000826465.1_Acanthamoeba_mauritaniensis.augustus.gtf.gz +Anopheles melas CM1001059_A INSDC GCA_000473525.2 yes 0 20229 0 Anopheles melas CM1001059_A VectorBase 34690 GCA_000473525.2_Anop_mela_CM1001059_A_V2 GCA_000473525.2 False Anopheles melas mosquito A.melas (CM1001059_A 2014) https://genome.ucsc.edu/h/GCA_000473525.2 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 +Anopheles merus MAF INSDC GCA_000473845.2 no 0 2027 0 Anopheles merus MAF VectorBase 30066 GCA_000473845.2_Anop_meru_MAF_V1 GCA_000473845.2 False Anopheles merus mosquito A.merus (MAF 2014) https://genome.ucsc.edu/h/GCA_000473845.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/845/GCA_000473845.2/genes/GCA_000473845.2_Anop_meru_MAF_V1.augustus.gtf.gz +Anopheles merus MAF 2021 INSDC GCF_017562075.2 yes 0 1322 5 Anopheles merus MAF 2021 VectorBase 30066 GCF_017562075.2_AmerM5.1 GCA_017562075.2 GCF_017562075.2 False Anopheles merus mosquito A.merus (MAF 2021) https://genome.ucsc.edu/h/GCF_017562075.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/017/562/075/GCF_017562075.2/genes/GCF_017562075.2_AmerM5.1.ncbiRefSeq.gtf.gz +Anopheles minimus MINIMUS1 INSDC GCA_000349025.1 yes 0 678 0 Anopheles minimus MINIMUS1 VectorBase 112268 GCA_000349025.1_Anop_mini_MINIMUS1_V1 GCA_000349025.1 False Anopheles minimus mosquito A.minimus (MINIMUS1 2013) https://genome.ucsc.edu/h/GCA_000349025.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/025/GCA_000349025.1/genes/GCA_000349025.1_Anop_mini_MINIMUS1_V1.augustus.gtf.gz +Apiotrichum montevideense JCM 9937 INSDC GCA_001598995.1 yes 0 61 0 Apiotrichum montevideense JCM 9937 FungiDB 82521 GCA_001598995.1_JCM_9937_assembly_v001 GCA_001598995.1 False Apiotrichum montevideense basidiomycetes A.montevideense (JCM 9937 2016) https://genome.ucsc.edu/h/GCA_001598995.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/598/995/GCA_001598995.1/genes/GCA_001598995.1_JCM_9937_assembly_v001.augustus.gtf.gz +Anopheles moucheti AmouCM1 INSDC GCF_943734755.1 yes 0 342 3 Anopheles moucheti AmouCM1 VectorBase 186751 GCF_943734755.1_idAnoMoucSN_F20_07 GCA_943734755.1 GCF_943734755.1 False Anopheles moucheti mosquito A.moucheti (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734755.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/755/GCF_943734755.1/genes/GCF_943734755.1_idAnoMoucSN_F20_07.ncbiRefSeq.gtf.gz +Amauroascus mutatus isolate UAMH 3576 GenBank GCA_001430935.1 yes 3075 0 0 Amauroascus mutatus isolate UAMH 3576 FungiDB 2074759 GCA_001430935.1_ASM143093v1 GCA_001430935.1 False Amauroascus verrucosus ascomycetes A.verrucosus (UAMH 3576 2015) https://genome.ucsc.edu/h/GCA_001430935.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/935/GCA_001430935.1/genes/GCA_001430935.1_ASM143093v1.augustus.gtf.gz +Aspergillus niger strain LDM3 INSDC GCA_009812365.1 no 0 14 0 Aspergillus niger strain LDM3 FungiDB 5061 GCA_009812365.1_ASM981236v1 GCA_009812365.1 False Aspergillus niger ascomycetes A.niger (LDM3 2019) https://genome.ucsc.edu/h/GCA_009812365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/812/365/GCA_009812365.1/genes/GCA_009812365.1_ASM981236v1.augustus.gtf.gz +Aspergillus niger strain N402 (ATCC64974) GenBank GCA_900248155.1 no 19 0 0 Aspergillus niger strain N402 (ATCC64974) FungiDB 5061 GCA_900248155.1_Aniger_ATCC_64974_N402 GCA_900248155.1 False Aspergillus niger ascomycetes A.niger (N402 ATCC 64974 2018) https://genome.ucsc.edu/h/GCA_900248155.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/248/155/GCA_900248155.1/genes/GCA_900248155.1_Aniger_ATCC_64974_N402.augustus.gtf.gz +Amauroascus niger isolate UAMH 3544 GenBank GCA_001430945.1 yes 3481 0 0 Amauroascus niger isolate UAMH 3544 FungiDB 89421 GCA_001430945.1_ASM143094v1 GCA_001430945.1 False Amauroascus niger ascomycetes A.niger (UAMH 3544 2015) https://genome.ucsc.edu/h/GCA_001430945.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/945/GCA_001430945.1/genes/GCA_001430945.1_ASM143094v1.augustus.gtf.gz +Anopheles nili AnilCM1 INSDC GCF_943737925.1 yes 0 153 3 Anopheles nili AnilCM1 VectorBase 185578 GCF_943737925.1_idAnoNiliSN_F5_01 GCA_943737925.1 GCF_943737925.1 True Anopheles nili mosquito A.nili (primary hap 2022) https://genome.ucsc.edu/h/GCF_943737925.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/737/925/GCF_943737925.1/genes/GCF_943737925.1_idAnoNiliSN_F5_01.ncbiRefSeq.gtf.gz +Acanthamoeba palestinensis Reich GenBank GCA_000826305.1 yes 0 26188 0 Acanthamoeba palestinensis Reich AmoebaDB 65661 GCA_000826305.1_Acanthamoeba_healyi GCA_000826305.1 False Acanthamoeba healyi A.healyi (2015) https://genome.ucsc.edu/h/GCA_000826305.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/305/GCA_000826305.1/genes/GCA_000826305.1_Acanthamoeba_healyi.augustus.gtf.gz +Aspergillus parasiticus CBS 117618 INSDC GCA_009176385.1 yes 0 270 0 Aspergillus parasiticus CBS 117618 FungiDB 5067 GCA_009176385.1_Asppar1 GCA_009176385.1 False Aspergillus parasiticus ascomycetes A.parasiticus (CBS 117618 2019) https://genome.ucsc.edu/h/GCA_009176385.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/176/385/GCA_009176385.1/genes/GCA_009176385.1_Asppar1.augustus.gtf.gz +Anopheles quadriannulatus SANGWE INSDC GCA_000349065.1 yes 0 2823 0 Anopheles quadriannulatus SANGWE VectorBase 34691 GCA_000349065.1_Anop_quad_QUAD4_A_V1 GCA_000349065.1 False Anopheles quadriannulatus mosquito A.quadriannulatus (QUAD4_A 2013) https://genome.ucsc.edu/h/GCA_000349065.1 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 +Acanthamoeba quina Vil3 GenBank GCA_000826445.1 yes 0 60490 0 Acanthamoeba quina Vil3 AmoebaDB 211522 GCA_000826445.1_Acanthamoeba_quina GCA_000826445.1 False Acanthamoeba quina A.quina (2015) https://genome.ucsc.edu/h/GCA_000826445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/445/GCA_000826445.1/genes/GCA_000826445.1_Acanthamoeba_quina.augustus.gtf.gz +Acanthamoeba rhysodes Singh GenBank GCA_000826385.1 yes 0 62836 0 Acanthamoeba rhysodes Singh AmoebaDB 32599 GCA_000826385.1_Acanthamoeba_rhysodes GCA_000826385.1 False Acanthamoeba rhysodes A.rhysodes (2015) https://genome.ucsc.edu/h/GCA_000826385.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/385/GCA_000826385.1/genes/GCA_000826385.1_Acanthamoeba_rhysodes.augustus.gtf.gz +Anopheles sinensis China INSDC GCA_000441895.2 yes 0 9592 0 Anopheles sinensis China VectorBase 74873 GCA_000441895.2_AS2 GCA_000441895.2 False Anopheles sinensis mosquito A.sinensis (2014) https://genome.ucsc.edu/h/GCA_000441895.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/895/GCA_000441895.2/genes/GCA_000441895.2_AS2.augustus.gtf.gz +Anopheles sinensis SINENSIS INSDC GCA_000472065.2 no 0 10448 0 Anopheles sinensis SINENSIS VectorBase 74873 GCA_000472065.2_Anop_sine_SINENSIS_V1 GCA_000472065.2 False Anopheles sinensis mosquito A.sinensis (SINENSIS 2014) https://genome.ucsc.edu/h/GCA_000472065.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/472/065/GCA_000472065.2/genes/GCA_000472065.2_Anop_sine_SINENSIS_V1.augustus.gtf.gz +Anopheles stephensi Indian INSDC GCA_000300775.2 no 0 23371 0 Anopheles stephensi Indian VectorBase 30069 GCA_000300775.2_ASM30077v2 GCA_000300775.2 False Anopheles stephensi Asian malaria mosquito (Indian Wild Type Walter Reed 2013) https://genome.ucsc.edu/h/GCA_000300775.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/775/GCA_000300775.2/genes/GCA_000300775.2_ASM30077v2.augustus.gtf.gz +Anopheles stephensi SDA-500 INSDC GCA_000349045.1 no 0 1110 0 Anopheles stephensi SDA-500 VectorBase 30069 GCA_000349045.1_Anop_step_SDA-500_V1 GCA_000349045.1 False Anopheles stephensi Asian malaria mosquito (SDA-500 2013) https://genome.ucsc.edu/h/GCA_000349045.1 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 +Anopheles stephensi UCISS2018 INSDC GCF_013141755.1 yes 0 491 3 Anopheles stephensi UCISS2018 VectorBase 30069 GCF_013141755.1_UCI_ANSTEP_V1.0 GCA_013141755.1 GCF_013141755.1 False Anopheles stephensi Asian malaria mosquito https://genome.ucsc.edu/h/GCF_013141755.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/013/141/755/GCF_013141755.1/genes/GCF_013141755.1_UCI_ANSTEP_V1.0.ncbiRefSeq.gtf.gz +Aspergillus tanneri NIH1004 INSDC GCA_004798825.1 yes 0 1715 0 Aspergillus tanneri NIH1004 FungiDB 1220188 GCA_004798825.1_ASM479882v1 GCA_004798825.1 False Aspergillus tanneri ascomycetes A.tanneri (NIH1004 2019) https://genome.ucsc.edu/h/GCA_004798825.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/798/825/GCA_004798825.1/genes/GCA_004798825.1_ASM479882v1.augustus.gtf.gz +Aspergillus thermomutatus strain HMR AF 39 INSDC GCA_002237265.2 yes 0 647 0 Aspergillus thermomutatus strain HMR AF 39 FungiDB 41047 GCF_002237265.1_ASM223726v2 GCA_002237265.2 GCF_002237265.1 True Aspergillus thermomutatus ascomycetes A.thermomutatus https://genome.ucsc.edu/h/GCF_002237265.1 +Acanthamoeba triangularis SH621 GenBank GCA_000826325.1 yes 0 56742 0 Acanthamoeba triangularis SH621 AmoebaDB 28015 GCA_000826325.1_Acanthamoeba_palestinensis GCA_000826325.1 False Acanthamoeba palestinensis A.palestinensis (2015) https://genome.ucsc.edu/h/GCA_000826325.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/325/GCA_000826325.1/genes/GCA_000826325.1_Acanthamoeba_palestinensis.augustus.gtf.gz +Apophysomyces variabilis NCCPF 102052 INSDC GCA_002749535.1 yes 0 411 0 Apophysomyces variabilis NCCPF 102052 FungiDB 760013 GCA_002749535.1_ASM274953v1 GCA_002749535.1 False Apophysomyces variabilis fungi A.variabilis (NCCPF 102052 2017) https://genome.ucsc.edu/h/GCA_002749535.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/535/GCA_002749535.1/genes/GCA_002749535.1_ASM274953v1.augustus.gtf.gz +Anopheles ziemanni AzieGA1 INSDC GCF_943734765.1 yes 0 416 3 Anopheles ziemanni AzieGA1 VectorBase 345580 GCF_943734765.1_idAnoZiCoDA_A2_x.2 GCA_943734765.2 GCF_943734765.1 False Anopheles ziemanni mosquito A.ziemanni (2023) https://genome.ucsc.edu/h/GCF_943734765.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/765/GCF_943734765.1/genes/GCF_943734765.1_idAnoZiCoDA_A2_x.2.ncbiRefSeq.gtf.gz +Blechomonas ayalai B08-376 GenBank GCA_020509355.1 yes 0 545 0 Blechomonas ayalai B08-376 TriTrypDB 1463230 GCA_020509355.1_ASM2050935v1 GCA_020509355.1 False Blechomonas ayalai Blechomonas ayalai (B08-376 2021) https://genome.ucsc.edu/h/GCA_020509355.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/509/355/GCA_020509355.1/genes/GCA_020509355.1_ASM2050935v1.augustus.gtf.gz +Beauveria bassiana HN6 INSDC GCA_014607475.1 yes 0 0 12 Beauveria bassiana HN6 FungiDB 176275 GCA_014607475.1_ASM1460747v1 GCA_014607475.1 False Beauveria bassiana ascomycetes B.bassiana (HN6 2020) https://genome.ucsc.edu/h/GCA_014607475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/607/475/GCA_014607475.1/genes/GCA_014607475.1_ASM1460747v1.augustus.gtf.gz +Besnoitia besnoiti strain Bb-Ger1 GenBank GCA_002563875.1 yes 172 0 13 Besnoitia besnoiti strain Bb-Ger1 ToxoDB 94643 GCF_002563875.1_Bbes1.0 GCA_002563875.1 GCF_002563875.1 True Besnoitia besnoiti apicomplexans B.besnoiti (Bb-Ger1 2017) https://genome.ucsc.edu/h/GCF_002563875.1 +Babesia bigemina strain BOND GenBank GCA_000723445.1 yes 0 478 5 Babesia bigemina strain BOND PiroplasmaDB 5866 GCA_000723445.1_BBBOND_0001 GCA_000723445.1 False Babesia bigemina apicomplexans B.bigemina (BOND 2014) https://genome.ucsc.edu/h/GCA_000723445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/445/GCA_000723445.1/genes/GCA_000723445.1_BBBOND_0001.augustus.gtf.gz +Babesia caballi USDA-D6B2 INSDC GCA_024862765.1 yes 0 7 0 Babesia caballi USDA-D6B2 PiroplasmaDB 5871 GCF_024862765.1_Bcaballi_D6B2_v1.0 GCA_024862765.1 GCF_024862765.1 False Babesia caballi apicomplexans B.caballi (USDA-D6B2 2022) https://genome.ucsc.edu/h/GCF_024862765.1 +Byssoonygena ceratinophila isolate UAMH 5669 GenBank GCA_001430925.1 yes 4851 0 0 Byssoonygena ceratinophila isolate UAMH 5669 FungiDB 166112 GCA_001430925.1_ASM143092v1 GCA_001430925.1 False Byssoonygena ceratinophila ascomycetes B.ceratinophila (UAMH 5669 2015) https://genome.ucsc.edu/h/GCA_001430925.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/925/GCA_001430925.1/genes/GCA_001430925.1_ASM143092v1.augustus.gtf.gz +Babesia divergens strain 1802A GenBank GCA_018398725.1 yes 0 79 0 Babesia divergens strain 1802A PiroplasmaDB 32595 GCA_018398725.1_ASM1839872v1 GCA_018398725.1 False Babesia divergens apicomplexans B.divergens (1802A 2021) https://genome.ucsc.edu/h/GCA_018398725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/725/GCA_018398725.1/genes/GCA_018398725.1_ASM1839872v1.augustus.gtf.gz +Babesia divergens strain Rouen 1987 GenBank GCA_001077455.2 no 0 141 0 Babesia divergens strain Rouen 1987 PiroplasmaDB 32595 GCA_001077455.2_ASM107745v2 GCA_001077455.2 False Babesia divergens apicomplexans B.divergens (Rouen 1987 2018) https://genome.ucsc.edu/h/GCA_001077455.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/455/GCA_001077455.2/genes/GCA_001077455.2_ASM107745v2.augustus.gtf.gz +Babesia duncani strain WA1 INSDC GCA_024586265.1 no 0 7 0 Babesia duncani strain WA1 PiroplasmaDB 323732 GCA_024586265.1_ASM2458626v1 GCA_024586265.1 False Babesia duncani apicomplexans B.duncani (WA1 2022) https://genome.ucsc.edu/h/GCA_024586265.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/024/586/265/GCA_024586265.1/genes/GCA_024586265.1_ASM2458626v1.augustus.gtf.gz +Babesia duncani strain WA1 2023 INSDC GCA_028658345.1 yes 0 160 5 Babesia duncani strain WA1 2023 PiroplasmaDB 323732 GCF_028658345.1_Bduncani_v1 GCA_028658345.1 GCF_028658345.1 True Babesia duncani apicomplexans B.duncani (WA1 2023) https://genome.ucsc.edu/h/GCF_028658345.1 +Biomphalaria glabrata XG47 INSDC GCF_947242115.1 yes 0 25 18 Biomphalaria glabrata XG47 VectorBase 6526 GCF_947242115.1_xgBioGlab47.1 GCA_947242115.1 GCF_947242115.1 False Biomphalaria glabrata bloodfluke planorb (primary hap 2022) https://genome.ucsc.edu/h/GCF_947242115.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/947/242/115/GCF_947242115.1/genes/GCF_947242115.1_xgBioGlab47.1.ncbiRefSeq.gtf.gz +Blumeria graminis f. sp. triticale THUN-12 INSDC GCA_905067625.1 no 0 25 11 Blumeria graminis f. sp. triticale THUN-12 FungiDB 1689686 GCA_905067625.1_Bgtriticale_THUN12_genome_v1_2 GCA_905067625.1 False Blumeria graminis f. sp. triticale grass mildew (THUN-12 2021) https://genome.ucsc.edu/h/GCA_905067625.1 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 +Blumeria hordei strain RACE1 INSDC GCA_900237765.1 yes 0 99 0 Blumeria hordei strain RACE1 FungiDB 2867405 GCA_900237765.1_BghRACE1_v1 GCA_900237765.1 False Blumeria hordei grass mildew (RACE1 RACE1 2018) https://genome.ucsc.edu/h/GCA_900237765.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/237/765/GCA_900237765.1/genes/GCA_900237765.1_BghRACE1_v1.augustus.gtf.gz +Bremia lactucae strain SF5 INSDC GCA_004359215.2 yes 0 201 19 Bremia lactucae strain SF5 FungiDB 4779 GCA_004359215.2_BlacSF5v2 GCA_004359215.2 GCF_004359215.1 True Bremia lactucae lettuce downy mildew (SF5 2021) https://genome.ucsc.edu/h/GCA_004359215.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/359/215/GCA_004359215.2/genes/GCA_004359215.2_BlacSF5v2.augustus.gtf.gz +Balamuthia mandrillaris strain 2046 INSDC GCA_001262475.1 no 0 14699 0 Balamuthia mandrillaris strain 2046 AmoebaDB 66527 GCA_001262475.1_ASM126247v1 GCA_001262475.1 False Balamuthia mandrillaris B.mandrillaris (2046 2015) https://genome.ucsc.edu/h/GCA_001262475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/262/475/GCA_001262475.1/genes/GCA_001262475.1_ASM126247v1.augustus.gtf.gz +Balamuthia mandrillaris CDC-V039 INSDC GCA_001185145.1 yes 0 1604 0 Balamuthia mandrillaris CDC-V039 AmoebaDB 66527 GCA_001185145.1_ASM118514v1 GCA_001185145.1 False Balamuthia mandrillaris B.mandrillaris (CDC-V039 2015) https://genome.ucsc.edu/h/GCA_001185145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/185/145/GCA_001185145.1/genes/GCA_001185145.1_ASM118514v1.augustus.gtf.gz +Babesia microti strain ATCC 30222 INSDC GCA_001650055.1 no 234 0 0 Babesia microti strain ATCC 30222 PiroplasmaDB 5868 GCA_001650055.1_ASM165005v1 GCA_001650055.1 False Babesia microti apicomplexans B.microti (ATCC 30222 2016) https://genome.ucsc.edu/h/GCA_001650055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/055/GCA_001650055.1/genes/GCA_001650055.1_ASM165005v1.augustus.gtf.gz +Babesia microti strain ATCC PRA-99 GenBank GCA_001650065.1 no 82 0 0 Babesia microti strain ATCC PRA-99 PiroplasmaDB 5868 GCA_001650065.1_ASM165006v1 GCA_001650065.1 False Babesia microti apicomplexans B.microti (ATCC PRA-99 2016) https://genome.ucsc.edu/h/GCA_001650065.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/065/GCA_001650065.1/genes/GCA_001650065.1_ASM165006v1.augustus.gtf.gz +Babesia microti strain GI INSDC GCA_001650105.1 no 140 0 0 Babesia microti strain GI PiroplasmaDB 5868 GCA_001650105.1_ASM165010v1 GCA_001650105.1 False Babesia microti apicomplexans B.microti (GI 2016) https://genome.ucsc.edu/h/GCA_001650105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/105/GCA_001650105.1/genes/GCA_001650105.1_ASM165010v1.augustus.gtf.gz +Babesia microti strain GreenwichYale_Lab_strain_1 INSDC GCA_001650075.1 no 250 0 0 Babesia microti strain GreenwichYale_Lab_strain_1 PiroplasmaDB 5868 GCA_001650075.1_ASM165007v1 GCA_001650075.1 False Babesia microti apicomplexans B.microti (GreenwichYale_Lab_strain_1 2016) https://genome.ucsc.edu/h/GCA_001650075.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/075/GCA_001650075.1/genes/GCA_001650075.1_ASM165007v1.augustus.gtf.gz +Babesia microti Nan_Hs_2011_N11-50 INSDC GCA_001650145.1 no 131 0 0 Babesia microti Nan_Hs_2011_N11-50 PiroplasmaDB 5868 GCA_001650145.1_ASM165014v1 GCA_001650145.1 False Babesia microti apicomplexans B.microti (Nan_Hs_2011_N11-50 2016) https://genome.ucsc.edu/h/GCA_001650145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/145/GCA_001650145.1/genes/GCA_001650145.1_ASM165014v1.augustus.gtf.gz +Babesia microti strain Naushon INSDC GCA_001650135.1 no 131 0 0 Babesia microti strain Naushon PiroplasmaDB 5868 GCA_001650135.1_ASM165013v1 GCA_001650135.1 False Babesia microti apicomplexans B.microti (Naushon 2016) https://genome.ucsc.edu/h/GCA_001650135.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/135/GCA_001650135.1/genes/GCA_001650135.1_ASM165013v1.augustus.gtf.gz +Blastocrithidia nonstop P57 INSDC GCA_028554745.1 yes 0 77 0 Blastocrithidia nonstop P57 TriTrypDB 2592485 GCA_028554745.1_ASM2855474v1 GCA_028554745.1 False Blastocrithidia sp. p57 Blastocrithidia sp. (p57 2023) https://genome.ucsc.edu/h/GCA_028554745.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/028/554/745/GCA_028554745.1/genes/GCA_028554745.1_ASM2855474v1.augustus.gtf.gz +Babesia ovata strain Miyake GenBank GCA_002897235.1 yes 91 0 0 Babesia ovata strain Miyake PiroplasmaDB 189622 GCF_002897235.1_Bovata_7.1 GCA_002897235.1 GCF_002897235.1 True Babesia ovata apicomplexans B.ovata (Miyake 2017) https://genome.ucsc.edu/h/GCF_002897235.1 +Blastomyces percursus strain EI222 INSDC GCA_001883805.1 yes 0 3868 0 Blastomyces percursus strain EI222 FungiDB 1658174 GCA_001883805.1_Blas_perc_EI222_V1 GCA_001883805.1 False Blastomyces percursus ascomycetes B.percursus (EI222 2016) https://genome.ucsc.edu/h/GCA_001883805.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/805/GCA_001883805.1/genes/GCA_001883805.1_Blas_perc_EI222_V1.augustus.gtf.gz +Bodo saltans strain Lake Konstanz GenBank GCA_001460835.1 yes 0 2256 0 Bodo saltans strain Lake Konstanz TriTrypDB 75058 GCA_001460835.1_BSAL GCA_001460835.1 False Bodo saltans Bodo saltans (Lake Konstanz 2015) https://genome.ucsc.edu/h/GCA_001460835.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/460/835/GCA_001460835.1/genes/GCA_001460835.1_BSAL.augustus.gtf.gz +Babesia sp. Xinjiang Xinjiang GenBank GCA_002095265.1 yes 0 215 0 Babesia sp. Xinjiang Xinjiang PiroplasmaDB 462227 GCF_002095265.1_B_xinjiang1.0 GCA_002095265.1 GCF_002095265.1 True Babesia sp. Xinjiang apicomplexans B.sp. (Xinjiang 2017) https://genome.ucsc.edu/h/GCF_002095265.1 +Cryptosporidium andersoni isolate 30847 GenBank GCA_001865355.1 yes 135 0 0 Cryptosporidium andersoni isolate 30847 CryptoDB 117008 GCF_001865355.1_ASM186535v1 GCA_001865355.1 GCF_001865355.1 True Cryptosporidium andersoni apicomplexans C.andersoni (30847 2016) https://genome.ucsc.edu/h/GCF_001865355.1 +Candida auris strain 6684 INSDC GCA_001189475.1 no 0 99 0 [Candida] auris 6684 FungiDB 498019 GCF_001189475.1_ASM118947v1 GCA_001189475.1 GCF_001189475.1 True Candida auris budding yeast C.auris (6684 2015 refseq) https://genome.ucsc.edu/h/GCF_001189475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/189/475/GCA_001189475.1/genes/GCA_001189475.1_ASM118947v1.augustus.gtf.gz +Candida auris strain B11220 INSDC GCA_003013715.2 no 0 0 7 [Candida] auris B11220 FungiDB 498019 GCF_003013715.1_ASM301371v2 GCA_003013715.2 GCF_003013715.1 True Candidozyma auris budding yeast C.auris (B11220 2019) https://genome.ucsc.edu/h/GCF_003013715.1 +Candida auris strain B11221 INSDC GCA_002775015.1 no 0 20 0 [Candida] auris B11221 FungiDB 498019 GCF_002775015.1_Cand_auris_B11221_V1 GCA_002775015.1 GCF_002775015.1 True Candida auris budding yeast C.auris (B11221 2017 refseq) https://genome.ucsc.edu/h/GCF_002775015.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/775/015/GCA_002775015.1/genes/GCA_002775015.1_Cand_auris_B11221_V1.augustus.gtf.gz +Candida auris strain B11243 INSDC GCA_003014415.1 no 0 238 0 [Candida] auris B11243 FungiDB 498019 GCA_003014415.1_Cand_auris_B11243 GCA_003014415.1 False Candidozyma auris budding yeast C.auris (B11243 2018) https://genome.ucsc.edu/h/GCA_003014415.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/014/415/GCA_003014415.1/genes/GCA_003014415.1_Cand_auris_B11243.augustus.gtf.gz +Candida auris strain B11245 INSDC GCA_008275145.1 no 0 0 7 [Candida] auris B11245 FungiDB 498019 GCA_008275145.1_ASM827514v1 GCA_008275145.1 False Candidozyma auris budding yeast C.auris (B11245 2019) https://genome.ucsc.edu/h/GCA_008275145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/008/275/145/GCA_008275145.1/genes/GCA_008275145.1_ASM827514v1.augustus.gtf.gz +Cryptosporidium baileyi TAMU-09Q1 GenBank GCA_001593455.1 yes 153 0 0 Cryptosporidium baileyi TAMU-09Q1 CryptoDB 27987 GCA_001593455.1_CryBaiTAMU-09Q1-1.0 GCA_001593455.1 False Cryptosporidium baileyi apicomplexans C.baileyi (TAMU-09Q1 2016) https://genome.ucsc.edu/h/GCA_001593455.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/455/GCA_001593455.1/genes/GCA_001593455.1_CryBaiTAMU-09Q1-1.0.augustus.gtf.gz +Cryptosporidium bovis isolate 45015 INSDC GCA_009768925.2 yes 0 55 0 Cryptosporidium bovis isolate 45015 CryptoDB 310047 GCF_009768925.1_ASM976892v2 GCA_009768925.2 GCF_009768925.1 True Cryptosporidium bovis apicomplexans C.bovis (45015 2021) https://genome.ucsc.edu/h/GCF_009768925.1 +Cladophialophora carrionii KSF GenBank GCA_001700775.1 yes 22 0 0 Cladophialophora carrionii KSF FungiDB 86049 GCA_001700775.1_ASM170077v1 GCA_001700775.1 False Cladophialophora carrionii ascomycetes C.carrionii (KSF 2016) https://genome.ucsc.edu/h/GCA_001700775.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/700/775/GCA_001700775.1/genes/GCA_001700775.1_ASM170077v1.augustus.gtf.gz +Cyclospora cayetanensis strain CHN_HEN01 GenBank GCA_000769155.2 yes 2297 0 0 Cyclospora cayetanensis strain CHN_HEN01 ToxoDB 88456 GCF_000769155.1_ASM76915v2 GCA_000769155.2 GCF_000769155.1 True Cyclospora cayetanensis apicomplexans C.cayetanensis (CHN_HEN01 2016) https://genome.ucsc.edu/h/GCF_000769155.1 +Cyclospora cayetanensis isolate NF1_C8 GenBank GCF_002999335.1 no 738 0 0 Cyclospora cayetanensis isolate NF1_C8 ToxoDB 88456 GCF_002999335.1_CcayRef3 GCA_002999335.1 GCF_002999335.1 True Cyclospora cayetanensis apicomplexans C.cayetanensis (NF1_C8 2018) https://genome.ucsc.edu/h/GCF_002999335.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/002/999/335/GCF_002999335.1/genes/GCF_002999335.1_CcayRef3.ncbiRefSeq.gtf.gz +Cryptococcus cf. gattii MF34 INSDC GCA_009650685.1 yes 0 2 13 Cryptococcus cf. gattii MF34 FungiDB 2268382 GCA_009650685.1_Cryp_gatt_MF34 GCA_009650685.1 False Cryptococcus gattii VGV basidiomycetes C.gattii VGV (MF34 2019) https://genome.ucsc.edu/h/GCA_009650685.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/650/685/GCA_009650685.1/genes/GCA_009650685.1_Cryp_gatt_MF34.augustus.gtf.gz +Coprinopsis cinerea #326 INSDC GCA_016772295.1 no 0 31 0 Coprinopsis cinerea #326 FungiDB 1132390 GCA_016772295.1_ASM1677229v1 GCA_016772295.1 False Coprinopsis cinerea AmutBmut pab1-1 basidiomycetes C.cinerea (A43mut B43mut pab1-1 #326 2021) https://genome.ucsc.edu/h/GCA_016772295.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/772/295/GCA_016772295.1/genes/GCA_016772295.1_ASM1677229v1.augustus.gtf.gz +Curvularia clavata yc1106 INSDC GCA_023920165.1 yes 0 0 8 Curvularia clavata yc1106 FungiDB 95742 GCA_023920165.1_ASM2392016v1 GCA_023920165.1 False Curvularia clavata ascomycetes C.clavata (yc1106 2022) https://genome.ucsc.edu/h/GCA_023920165.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/023/920/165/GCA_023920165.1/genes/GCA_023920165.1_ASM2392016v1.augustus.gtf.gz +Cucumispora dikerogammari Dv6 INSDC GCA_014805705.1 yes 0 7783 0 Cucumispora dikerogammari Dv6 MicrosporidiaDB 658444 GCA_014805705.1_ASM1480570v1 GCA_014805705.1 False Cucumispora dikerogammari microsporidians C.dikerogammari (Dv6 2020) https://genome.ucsc.edu/h/GCA_014805705.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/705/GCA_014805705.1/genes/GCA_014805705.1_ASM1480570v1.augustus.gtf.gz +Candida duobushaemulonis strain B09383 GenBank GCA_002926085.1 yes 7 0 0 [Candida] duobushaemulonis B09383 FungiDB 1231522 GCF_002926085.2_CanDuoHae_v1.0 GCA_002926085.1 GCF_002926085.2 True Candidozyma duobushaemuli budding yeast C.duobushaemulonis https://genome.ucsc.edu/h/GCF_002926085.2 +Cyberlindnera fabianii 65 INSDC GCA_001983305.1 yes 0 25 0 Cyberlindnera fabianii 65 FungiDB 36022 GCA_001983305.1_ASM198330v1 GCA_001983305.1 False Cyberlindnera fabianii budding yeast C.fabianii (65 2017) https://genome.ucsc.edu/h/GCA_001983305.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/983/305/GCA_001983305.1/genes/GCA_001983305.1_ASM198330v1.augustus.gtf.gz +Crithidia fasciculata strain Cf-Cl GenBank GCA_000331325.2 yes 0 427 30 Crithidia fasciculata strain Cf-Cl TriTrypDB 5656 GCA_000331325.2_Crithidia_fasciculata-14.0 GCA_000331325.2 False Crithidia fasciculata Crithidia fasciculata (Cf-Cl 2015) https://genome.ucsc.edu/h/GCA_000331325.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/325/GCA_000331325.2/genes/GCA_000331325.2_Crithidia_fasciculata-14.0.augustus.gtf.gz +Cytauxzoon felis strain Winnie INSDC GCA_020283715.1 yes 0 358 0 Cytauxzoon felis strain Winnie PiroplasmaDB 27996 GCA_020283715.1_ASM2028371v1 GCA_020283715.1 False Cytauxzoon felis apicomplexans C.felis (Winnie 2021) https://genome.ucsc.edu/h/GCA_020283715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/715/GCA_020283715.1/genes/GCA_020283715.1_ASM2028371v1.augustus.gtf.gz +Candida haemulonis B11899 GenBank GCA_002926055.1 yes 11 0 0 [Candida] haemuloni B11899 FungiDB 45357 GCF_002926055.2_CanHae_1.0 GCA_002926055.1 GCF_002926055.2 True Candidozyma haemuli budding yeast C.haemuloni https://genome.ucsc.edu/h/GCF_002926055.2 +Cryptosporidium hominis isolate 30976 GenBank GCA_001483515.1 no 53 0 0 Cryptosporidium hominis isolate 30976 CryptoDB 237895 GCA_001483515.1_ASM148351v1 GCA_001483515.1 False Cryptosporidium hominis apicomplexans C.hominis (30976 2015) https://genome.ucsc.edu/h/GCA_001483515.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/483/515/GCA_001483515.1/genes/GCA_001483515.1_ASM148351v1.augustus.gtf.gz +Cryptosporidium hominis 37999 GenBank GCA_000804495.1 no 78 0 0 Cryptosporidium hominis 37999 CryptoDB 237895 GCA_000804495.1_ASM80449v1 GCA_000804495.1 False Cryptosporidium hominis apicomplexans C.hominis (37999 2014) https://genome.ucsc.edu/h/GCA_000804495.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/804/495/GCA_000804495.1/genes/GCA_000804495.1_ASM80449v1.augustus.gtf.gz +Cryptosporidium hominis isolate TU502_2012 GenBank GCA_001593465.1 no 119 0 0 Cryptosporidium hominis isolate TU502_2012 CryptoDB 237895 GCA_001593465.1_CryHomTU502-1.0 GCA_001593465.1 False Cryptosporidium hominis apicomplexans C.hominis (TU502_2012 2016) https://genome.ucsc.edu/h/GCA_001593465.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/465/GCA_001593465.1/genes/GCA_001593465.1_CryHomTU502-1.0.augustus.gtf.gz +Cryptosporidium hominis UKH1 GenBank GCA_001593475.1 no 156 0 0 Cryptosporidium hominis UKH1 CryptoDB 237895 GCA_001593475.1_CryHomUKH1-1.0 GCA_001593475.1 False Cryptosporidium hominis apicomplexans C.hominis (UKH1 2016) https://genome.ucsc.edu/h/GCA_001593475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/475/GCA_001593475.1/genes/GCA_001593475.1_CryHomUKH1-1.0.augustus.gtf.gz +Cryptosporidium hominis UdeA01 GenBank GCA_002223825.1 no 0 0 8 Cryptosporidium hominis UdeA01 CryptoDB 237895 GCA_002223825.1_C.hominis.v1 GCA_002223825.1 False Cryptosporidium hominis apicomplexans C.hominis (2015) https://genome.ucsc.edu/h/GCA_002223825.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/223/825/GCA_002223825.1/genes/GCA_002223825.1_C.hominis.v1.augustus.gtf.gz +Cladophialophora immunda strain CBS 83496 GenBank GCA_000835495.1 yes 0 277 0 Cladophialophora immunda strain CBS 83496 FungiDB 569365 GCF_000835495.1_Clad_immu_CBS83496_V1 GCA_000835495.1 GCF_000835495.1 True Cladophialophora immunda ascomycetes C.immunda https://genome.ucsc.edu/h/GCF_000835495.1 +Coccidioides immitis WA_211 INSDC GCA_004115165.2 no 0 62 0 Coccidioides immitis WA_211 FungiDB 5501 GCA_004115165.2_Cimm211_ragoo GCA_004115165.2 False Coccidioides immitis ascomycetes C.immitis (WA_211 2019) https://genome.ucsc.edu/h/GCA_004115165.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/115/165/GCA_004115165.2/genes/GCA_004115165.2_Cimm211_ragoo.augustus.gtf.gz +Cimex lectularius Harlan INSDC GCA_000648675.3 yes 1156 417 0 Cimex lectularius Harlan VectorBase 79782 GCF_000648675.2_Clec_2.1 GCA_000648675.3 GCF_000648675.2 False Cimex lectularius bed bug https://genome.ucsc.edu/h/GCF_000648675.2 +Canis lupus familiaris isolate SID07034 INSDC GCA_014441545.1 yes 0 336 40 Canis lupus familiaris isolate SID07034 HostDB 9615 GCF_014441545.1_ROS_Cfam_1.0 GCA_014441545.1 GCF_014441545.1 False Canis lupus familiaris dog (labrador SID07034 2020) https://genome.ucsc.edu/h/GCF_014441545.1 +Cryptosporidium meleagridis strain UKMEL1 GenBank GCA_001593445.1 yes 57 0 0 Cryptosporidium meleagridis strain UKMEL1 CryptoDB 93969 GCA_001593445.1_CryMelUKMEL1-1.0 GCA_001593445.1 False Cryptosporidium meleagridis apicomplexans C.meleagridis (UKMEL1 2016) https://genome.ucsc.edu/h/GCA_001593445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/445/GCA_001593445.1/genes/GCA_001593445.1_CryMelUKMEL1-1.0.augustus.gtf.gz +Candida metapsilosis BP57 INSDC GCA_017655625.1 yes 0 9 0 Candida metapsilosis BP57 FungiDB 273372 GCA_017655625.1_BP57 GCA_017655625.1 GCF_017655625.1 True Candida metapsilosis budding yeast C.metapsilosis (2021) https://genome.ucsc.edu/h/GCA_017655625.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/655/625/GCA_017655625.1/genes/GCA_017655625.1_BP57.augustus.gtf.gz +Cordyceps militaris ATCC 34164 INSDC GCA_008080495.1 yes 0 0 7 Cordyceps militaris ATCC 34164 FungiDB 73501 GCA_008080495.1_ASM808049v1 GCA_008080495.1 False Cordyceps militaris ascomycetes C.militaris (ATCC 34164 2017) https://genome.ucsc.edu/h/GCA_008080495.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/008/080/495/GCA_008080495.1/genes/GCA_008080495.1_ASM808049v1.augustus.gtf.gz +Cryptococcus neoformans var. grubii H99 2018 INSDC GCA_003011985.1 no 0 14 0 Cryptococcus neoformans var. grubii H99 2018 FungiDB 178876 GCA_003011985.1_ASM301198v1 GCA_003011985.1 False Cryptococcus neoformans var. grubii basidiomycetes C.neoformans var. grubii (H99 2018) https://genome.ucsc.edu/h/GCA_003011985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/011/985/GCA_003011985.1/genes/GCA_003011985.1_ASM301198v1.augustus.gtf.gz +Cryptococcus neoformans var. grubii KN99 GenBank GCA_002216725.1 no 0 0 14 Cryptococcus neoformans var. grubii KN99 FungiDB 178876 GCA_002216725.1_ASM221672v1 GCA_002216725.1 False Cryptococcus neoformans var. grubii basidiomycetes C.neoformans var. grubii (KN99 2017) https://genome.ucsc.edu/h/GCA_002216725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/725/GCA_002216725.1/genes/GCA_002216725.1_ASM221672v1.augustus.gtf.gz +Cryptococcus neoformans strain:VNII INSDC GCA_022832995.1 no 0 0 14 Cryptococcus neoformans strain:VNII FungiDB 5207 GCA_022832995.1_ASM2283299v1 GCA_022832995.1 False Cryptococcus neoformans basidiomycetes C.neoformans (VNII 2022) https://genome.ucsc.edu/h/GCA_022832995.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/832/995/GCA_022832995.1/genes/GCA_022832995.1_ASM2283299v1.augustus.gtf.gz +Cryptosporidium parvum 2022 INSDC GCA_019844115.2 no 0 0 8 Cryptosporidium parvum 2022 CryptoDB 5807 GCA_019844115.2_ASM1984411v2 GCA_019844115.2 False Cryptosporidium parvum apicomplexans C.parvum (2021) https://genome.ucsc.edu/h/GCA_019844115.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/019/844/115/GCA_019844115.2/genes/GCA_019844115.2_ASM1984411v2.augustus.gtf.gz +Cryptosporidium parvum IOWA-ATCC GenBank GCA_015245375.1 no 0 0 8 Cryptosporidium parvum IOWA-ATCC CryptoDB 5807 GCA_015245375.1_ASM1524537v1 GCA_015245375.1 False Cryptosporidium parvum apicomplexans C.parvum (IOWA-ATCC 2020) https://genome.ucsc.edu/h/GCA_015245375.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/015/245/375/GCA_015245375.1/genes/GCA_015245375.1_ASM1524537v1.augustus.gtf.gz +Cavia porcellus 2N INSDC GCA_000151735.1 yes 0 3143 0 Cavia porcellus 2N HostDB 10141 GCF_000151735.1_Cavpor3.0 GCA_000151735.1 GCF_000151735.1 False Cavia porcellus domestic guinea pig (2N 2008 refseq) https://genome.ucsc.edu/h/GCF_000151735.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/735/GCA_000151735.1/genes/GCA_000151735.1_Cavpor3.0.ncbiRefSeq.gtf.gz +Coccidioides posadasii strain Silveira 2022 INSDC GCA_018416015.2 no 0 0 8 Coccidioides posadasii strain Silveira 2022 FungiDB 443226 GCA_018416015.2_ASM1841601v2 GCA_018416015.2 GCF_018416015.1 False Coccidioides posadasii str. Silveira ascomycetes C.posadasii str. (Silveira 2022) https://genome.ucsc.edu/h/GCA_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/416/015/GCA_018416015.2/genes/GCA_018416015.2_ASM1841601v2.augustus.gtf.gz +Candida pseudohaemulonii strain B12108 INSDC GCA_003013735.1 yes 0 36 0 [Candida] pseudohaemulonis B12108 FungiDB 418784 GCF_003013735.1_Cand_pseudohaemulonii_B12108 GCA_003013735.1 GCF_003013735.1 True Candidozyma pseudohaemuli budding yeast C.pseudohaemulonis https://genome.ucsc.edu/h/GCF_003013735.1 +Chrysosporium queenslandicum isolate CBS 280.77 GenBank GCA_001430955.1 yes 2724 0 0 Chrysosporium queenslandicum isolate CBS 280.77 FungiDB 264361 GCA_001430955.1_ASM143095v1 GCA_001430955.1 False Chrysosporium queenslandicum ascomycetes C.queenslandicum (CBS 280.77 2015) https://genome.ucsc.edu/h/GCA_001430955.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/955/GCA_001430955.1/genes/GCA_001430955.1_ASM143095v1.augustus.gtf.gz +Culex quinquefasciatus JHB 2020 INSDC GCA_015732765.1 yes 53 0 3 Culex quinquefasciatus JHB 2020 VectorBase 7176 GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal GCA_015732765.1 GCF_015732765.1 False Culex quinquefasciatus southern house mosquito https://genome.ucsc.edu/h/GCF_015732765.1 +Culex quinquefasciatus Johannesburg INSDC GCA_000209185.1 no 0 3171 0 Culex quinquefasciatus Johannesburg VectorBase 7176 GCF_000209185.1_CulPip1.0 GCA_000209185.1 GCF_000209185.1 True Culex quinquefasciatus southern house mosquito (JHB 2007) https://genome.ucsc.edu/h/GCF_000209185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/185/GCA_000209185.1/genes/GCA_000209185.1_CulPip1.0.augustus.gtf.gz +Cryptosporidium ryanae 45019 INSDC GCA_009792415.2 yes 0 93 0 Cryptosporidium ryanae 45019 CryptoDB 515981 GCF_009792415.1_ASM979241v2 GCA_009792415.2 GCF_009792415.1 True Cryptosporidium ryanae apicomplexans C.ryanae (45019 2022) https://genome.ucsc.edu/h/GCF_009792415.1 +Cryptosporidium sp. chipmunk genotype I strain 37763 INSDC GCA_004936735.2 yes 0 50 0 Cryptosporidium sp. chipmunk genotype I strain 37763 CryptoDB 1280935 GCA_004936735.2_CCh_genotype_I GCA_004936735.2 GCF_004936735.1 True Cryptosporidium sp. chipmunk genotype I apicomplexans C.sp. chipmunk genotype I (37763 2021) https://genome.ucsc.edu/h/GCA_004936735.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/936/735/GCA_004936735.2/genes/GCA_004936735.2_CCh_genotype_I.augustus.gtf.gz +Cystoisospora suis strain Wien I GenBank GCA_002600585.1 yes 14627 0 0 Cystoisospora suis strain Wien I ToxoDB 483139 GCF_002600585.1_ASM260058v1 GCA_002600585.1 GCF_002600585.1 False Cystoisospora suis apicomplexans C.suis (Wien I 2017) https://genome.ucsc.edu/h/GCF_002600585.1 +Candida tropicalis MYA-3404 2020 INSDC GCA_013177555.1 no 0 0 7 Candida tropicalis MYA-3404 2020 FungiDB 5482 GCA_013177555.1_ASM1317755v1 GCA_013177555.1 False Candida tropicalis budding yeast C.tropicalis (MYA-3404 2020) https://genome.ucsc.edu/h/GCA_013177555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/177/555/GCA_013177555.1/genes/GCA_013177555.1_ASM1317755v1.augustus.gtf.gz +Cryptosporidium tyzzeri isolate UGA55 GenBank GCA_007210665.1 yes 3 0 8 Cryptosporidium tyzzeri isolate UGA55 CryptoDB 756076 GCA_007210665.1_Ctyz_UGA_55 GCA_007210665.1 False Cryptosporidium tyzzeri apicomplexans C.tyzzeri (UGA55 2019) https://genome.ucsc.edu/h/GCA_007210665.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/007/210/665/GCA_007210665.1/genes/GCA_007210665.1_Ctyz_UGA_55.augustus.gtf.gz +Cryptosporidium ubiquitum isolate 39726 GenBank GCA_001865345.1 yes 39 0 0 Cryptosporidium ubiquitum isolate 39726 CryptoDB 857276 GCF_001865345.1_ASM186534v1 GCA_001865345.1 GCF_001865345.1 True Cryptosporidium ubiquitum apicomplexans C.ubiquitum (39726 2016) https://genome.ucsc.edu/h/GCF_001865345.1 +Dermacentor andersoni qqDerAnde1.1 INSDC GCA_023375915.1 no 0 8198 0 Dermacentor andersoni qqDerAnde1.1 VectorBase 34620 GCA_023375915.1_qqDerAnde1.1_alternate_haplotype GCA_023375915.1 False Dermacentor andersoni mite/tick D.andersoni (qqDerAnde1 alternate hap 2022) https://genome.ucsc.edu/h/GCA_023375915.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/023/375/915/GCA_023375915.1/genes/GCA_023375915.1_qqDerAnde1.1_alternate_haplotype.augustus.gtf.gz +Dermacentor andersoni qqDerAnde1.2 INSDC GCF_023375885.1 yes 0 3118 0 Dermacentor andersoni qqDerAnde1.2 VectorBase 34620 GCF_023375885.1_qqDerAnde1.2 GCA_023375885.2 GCF_023375885.1 False Dermacentor andersoni mites & ticks D.andersoni (primary hap 2022) https://genome.ucsc.edu/h/GCF_023375885.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/023/375/885/GCF_023375885.1/genes/GCF_023375885.1_qqDerAnde1.2.ncbiRefSeq.gtf.gz +Debaryomyces fabryi CBS 789 INSDC GCA_001447935.2 yes 0 534 0 Debaryomyces fabryi CBS 789 FungiDB 58627 GCF_001447935.2_debFab1.1 GCA_001447935.2 GCF_001447935.2 True Debaryomyces fabryi budding yeast D.fabryi https://genome.ucsc.edu/h/GCF_001447935.2 +Drosophila melanogaster iso-1 INSDC GCA_000001215.4 yes 0 1862 7 Drosophila melanogaster iso-1 VectorBase 7227 GCF_000001215.4_Release_6_plus_ISO1_MT GCA_000001215.4 GCF_000001215.4 True Drosophila melanogaster fly D.melanogaster https://genome.ucsc.edu/h/GCF_000001215.4 +Dictyocoela muelleri Ou54 INSDC GCA_016256075.1 yes 0 11522 0 Dictyocoela muelleri Ou54 MicrosporidiaDB 279532 GCA_016256075.1_ASM1625607v1 GCA_016256075.1 False Dictyocoela muelleri microsporidians D.muelleri (Ou54 2020) https://genome.ucsc.edu/h/GCA_016256075.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/256/075/GCA_016256075.1/genes/GCA_016256075.1_ASM1625607v1.augustus.gtf.gz +Dictyostelium purpureum QSDP1 INSDC GCF_000190715.1 yes 0 799 0 Dictyostelium purpureum QSDP1 AmoebaDB 5786 GCA_000190715.1_v1.0 GCA_000190715.1 GCF_000190715.1 True Dictyostelium purpureum cellular slime molds (QSDP1 2011) https://genome.ucsc.edu/h/GCA_000190715.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/190/715/GCF_000190715.1/genes/GCF_000190715.1_v1.0.augustus.gtf.gz +Dictyocoela roeselum Ou19 INSDC GCA_016255985.1 yes 0 1033 0 Dictyocoela roeselum Ou19 MicrosporidiaDB 288439 GCA_016255985.1_ASM1625598v1 GCA_016255985.1 False Dictyocoela roeselum microsporidians D.roeselum (Ou19 2020) https://genome.ucsc.edu/h/GCA_016255985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/255/985/GCA_016255985.1/genes/GCA_016255985.1_ASM1625598v1.augustus.gtf.gz +Diutina rugosa CBS 613 INSDC GCA_008704595.1 yes 0 169 0 Diutina rugosa CBS 613 FungiDB 5481 GCF_008704595.1_ASM870459v1 GCA_008704595.1 GCF_008704595.1 True Diutina rugosa budding yeast D.rugosa https://genome.ucsc.edu/h/GCF_008704595.1 +Dermacentor silvarum Dsil-2018 INSDC GCA_013339745.2 yes 0 1653 11 Dermacentor silvarum Dsil-2018 VectorBase 543639 GCF_013339745.2_BIME_Dsil_1.4 GCA_013339745.2 GCF_013339745.2 False Dermacentor silvarum mites & ticks D.silvarum (v2 Dsil-2018 2022) https://genome.ucsc.edu/h/GCF_013339745.2 +Eimeria acervulina Houghton GenBank GCA_000499425.1 yes 0 3415 0 Eimeria acervulina Houghton ToxoDB 5801 GCF_000499425.1_EAH001 GCA_000499425.1 GCF_000499425.1 True Eimeria acervulina apicomplexans E.acervulina (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499425.1 +Emergomyces africanus CBS 136260 INSDC GCA_001660665.1 yes 0 4444 0 Emergomyces africanus CBS 136260 FungiDB 1955775 GCA_001660665.1_Emmo_afri_EA111 GCA_001660665.1 False Emergomyces africanus ascomycetes E.africanus (CBS 136260 2016) https://genome.ucsc.edu/h/GCA_001660665.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/660/665/GCA_001660665.1/genes/GCA_001660665.1_Emmo_afri_EA111.augustus.gtf.gz +Eimeria brunetti Houghton GenBank GCA_000499725.1 yes 0 8575 0 Eimeria brunetti Houghton ToxoDB 51314 GCA_000499725.1_EBH001 GCA_000499725.1 False Eimeria brunetti apicomplexans E.brunetti (Houghton 2013) https://genome.ucsc.edu/h/GCA_000499725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/725/GCA_000499725.1/genes/GCA_000499725.1_EBH001.augustus.gtf.gz +Enterospora canceri strain GB1 GenBank GCA_002087915.1 yes 537 0 0 Enterospora canceri strain GB1 MicrosporidiaDB 1081671 GCA_002087915.1_ASM208791v1 GCA_002087915.1 False Enterospora canceri microsporidians E.canceri (GB1 2017) https://genome.ucsc.edu/h/GCA_002087915.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/915/GCA_002087915.1/genes/GCA_002087915.1_ASM208791v1.augustus.gtf.gz +Eimeria falciformis Bayer Haberkorn 1970 GenBank GCA_002271815.1 yes 751 0 0 Eimeria falciformis Bayer Haberkorn 1970 ToxoDB 84963 GCA_002271815.1_ASM227181v1 GCA_002271815.1 False Eimeria falciformis apicomplexans E.falciformis (Bayer Haberkorn 1970 2017) https://genome.ucsc.edu/h/GCA_002271815.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/271/815/GCA_002271815.1/genes/GCA_002271815.1_ASM227181v1.augustus.gtf.gz +Encephalitozoon hellem Swiss GenBank GCA_018342045.1 no 0 32 0 Encephalitozoon hellem Swiss MicrosporidiaDB 27973 GCA_018342045.1_Swiss_hellem_version_1 GCA_018342045.1 False Encephalitozoon hellem microsporidians E.hellem (Swiss 2021) https://genome.ucsc.edu/h/GCA_018342045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/342/045/GCA_018342045.1/genes/GCA_018342045.1_Swiss_hellem_version_1.augustus.gtf.gz +Enterocytozoon hepatopenaei EHP-ID16 INSDC GCA_003709115.1 no 0 162 0 Enterocytozoon hepatopenaei EHP-ID16 MicrosporidiaDB 646526 GCA_003709115.1_ASM370911v1 GCA_003709115.1 False Ecytonucleospora hepatopenaei microsporidians E.hepatopenaei (EHP-ID16 2018) https://genome.ucsc.edu/h/GCA_003709115.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/115/GCA_003709115.1/genes/GCA_003709115.1_ASM370911v1.augustus.gtf.gz +Enterocytozoon hepatopenaei strain TH1 GenBank GCA_002081675.1 yes 62 0 0 Enterocytozoon hepatopenaei strain TH1 MicrosporidiaDB 646526 GCA_002081675.1_ASM208167v1 GCA_002081675.1 False Ecytonucleospora hepatopenaei microsporidians E.hepatopenaei (TH1 2017) https://genome.ucsc.edu/h/GCA_002081675.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/081/675/GCA_002081675.1/genes/GCA_002081675.1_ASM208167v1.augustus.gtf.gz +Entamoeba histolytica Rahman INSDC GCA_917563895.1 no 0 18523 0 Entamoeba histolytica Rahman AmoebaDB 294381 GCA_917563895.1_Assembly_1 GCA_917563895.1 False Entamoeba histolytica HM-1:IMSS E.histolytica HM-1:IMSS (Rahman 2021) https://genome.ucsc.edu/h/GCA_917563895.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/895/GCA_917563895.1/genes/GCA_917563895.1_Assembly_1.augustus.gtf.gz +Eimeria maxima Weybridge GenBank GCA_000499605.1 yes 0 3564 0 Eimeria maxima Weybridge ToxoDB 5804 GCF_000499605.1_EMW001 GCA_000499605.1 GCF_000499605.1 True Eimeria maxima apicomplexans E.maxima (Weybridge 2013) https://genome.ucsc.edu/h/GCF_000499605.1 +Exophiala mesophila strain CBS 40295 GenBank GCA_000836275.1 yes 0 9 0 Exophiala mesophila strain CBS 40295 FungiDB 212818 GCF_000836275.1_Exop_meso_CBS40295_V1 GCA_000836275.1 GCF_000836275.1 True Exophiala mesophila ascomycetes E.mesophila https://genome.ucsc.edu/h/GCF_000836275.1 +Eimeria mitis Houghton GenBank GCA_000499745.2 yes 0 15978 0 Eimeria mitis Houghton ToxoDB 44415 GCF_000499745.2_EMH001 GCA_000499745.2 GCF_000499745.2 True Eimeria mitis apicomplexans E.mitis (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499745.2 +Endotrypanum monterogeii strain LV88 GenBank GCA_000333855.2 yes 0 1925 36 Endotrypanum monterogeii strain LV88 TriTrypDB 5705 GCA_000333855.2_Endotrypanum_monterogeii-LV88-1.0.3 GCA_000333855.2 False Endotrypanum monterogeii Endotrypanum monterogeii (LV88 2016) https://genome.ucsc.edu/h/GCA_000333855.2 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 +Entamoeba moshkovskii Laredo GenBank GCA_002914575.1 yes 3460 1147 0 Entamoeba moshkovskii Laredo AmoebaDB 41668 GCA_002914575.1_ASM291457v1 GCA_002914575.1 False Entamoeba moshkovskii E.moshkovskii (Laredo 2018) https://genome.ucsc.edu/h/GCA_002914575.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/914/575/GCA_002914575.1/genes/GCA_002914575.1_ASM291457v1.augustus.gtf.gz +Eimeria necatrix Houghton GenBank GCA_000499385.1 yes 0 3707 0 Eimeria necatrix Houghton ToxoDB 51315 GCF_000499385.1_ENH001 GCA_000499385.1 GCF_000499385.1 True Eimeria necatrix apicomplexans E.necatrix (Houghton 2013) https://genome.ucsc.edu/h/GCF_000499385.1 +Exophiala oligosperma strain CBS 72588 GenBank GCA_000835515.1 yes 0 143 0 Exophiala oligosperma strain CBS 72588 FungiDB 215243 GCF_000835515.1_Exop_olig_CBS72588_V1 GCA_000835515.1 GCF_000835515.1 True Exophiala oligosperma ascomycetes E.oligosperma https://genome.ucsc.edu/h/GCF_000835515.1 +Emergomyces orientalis 5z489 INSDC GCA_002110485.1 yes 0 108 0 Emergomyces orientalis 5z489 FungiDB 1972497 GCA_002110485.1_ASM211048v1 GCA_002110485.1 False Emergomyces orientalis ascomycetes E.orientalis (5z489 2017) https://genome.ucsc.edu/h/GCA_002110485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/110/485/GCA_002110485.1/genes/GCA_002110485.1_ASM211048v1.augustus.gtf.gz +Eimeria praecox Houghton GenBank GCA_000499445.1 yes 0 21348 0 Eimeria praecox Houghton ToxoDB 51316 GCA_000499445.1_EPH001 GCA_000499445.1 False Eimeria praecox apicomplexans E.praecox (Houghton 2013) https://genome.ucsc.edu/h/GCA_000499445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/445/GCA_000499445.1/genes/GCA_000499445.1_EPH001.augustus.gtf.gz +Exophiala spinifera CBS 89968 INSDC GCA_000836115.1 yes 0 28 0 Exophiala spinifera CBS 89968 FungiDB 91928 GCF_000836115.1_Exop_spin_CBS89968_V1 GCA_000836115.1 GCF_000836115.1 True Exophiala spinifera ascomycetes E.spinifera https://genome.ucsc.edu/h/GCF_000836115.1 +Eimeria tenella Houghton 2021 INSDC GCA_905310635.1 yes 0 0 15 Eimeria tenella Houghton 2021 ToxoDB 5802 GCA_905310635.1_pEimTen1.1 GCA_905310635.1 False Eimeria tenella apicomplexans E.tenella (2021) https://genome.ucsc.edu/h/GCA_905310635.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/905/310/635/GCA_905310635.1/genes/GCA_905310635.1_pEimTen1.1.augustus.gtf.gz +Fusarium circinatum NRRL 25331 INSDC GCA_013396185.1 yes 0 1222 0 Fusarium circinatum NRRL 25331 FungiDB 48490 GCA_013396185.1_ASM1339618v1 GCA_013396185.1 False Fusarium circinatum ascomycetes F.circinatum (NRRL 25331 2020) https://genome.ucsc.edu/h/GCA_013396185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/396/185/GCA_013396185.1/genes/GCA_013396185.1_ASM1339618v1.augustus.gtf.gz +Fusarium graminearum DAOM 233423 INSDC GCA_000966635.1 no 0 869 0 Fusarium graminearum DAOM 233423 FungiDB 5518 GCA_000966635.1_Fus_gra_233423_v1 GCA_000966635.1 False Fusarium graminearum ascomycetes F.graminearum (233423 2015) https://genome.ucsc.edu/h/GCA_000966635.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/966/635/GCA_000966635.1/genes/GCA_000966635.1_Fus_gra_233423_v1.augustus.gtf.gz +Fusarium mangiferae MRC7560 INSDC GCA_900044065.1 yes 0 254 0 Fusarium mangiferae MRC7560 FungiDB 192010 GCF_900044065.1_Genome_assembly_version_1 GCA_900044065.1 GCF_900044065.1 True Fusarium mangiferae ascomycetes F.mangiferae MRC7560 https://genome.ucsc.edu/h/GCF_900044065.1 +Fusarium odoratissimum strain race 4 GenBank GCA_000350365.1 yes 0 840 0 Fusarium odoratissimum strain race 4 FungiDB 2502994 GCA_000350365.1_Foc4_1.0 GCA_000350365.1 False Fusarium odoratissimum ascomycetes F.odoratissimum (race 4 2013) https://genome.ucsc.edu/h/GCA_000350365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/365/GCA_000350365.1/genes/GCA_000350365.1_Foc4_1.0.augustus.gtf.gz +Fusarium proliferatum strain NRRL62905 GenBank GCA_900029915.1 no 155 0 0 Fusarium proliferatum strain NRRL62905 FungiDB 948311 GCA_900029915.1_F._proliferatum_NRRL62905_version_1 GCA_900029915.1 False Fusarium proliferatum ascomycetes F.proliferatum (NRRL62905 2016) https://genome.ucsc.edu/h/GCA_900029915.1 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 +Fusarium solani FSSC 5 MPI-SDFR-AT-0091 INSDC GCF_020744495.1 yes 0 74 0 Fusarium solani FSSC 5 MPI-SDFR-AT-0091 FungiDB 169388 GCF_020744495.1_Fusso1 GCA_020744495.1 GCF_020744495.1 True Fusarium solani ascomycetes F.solani https://genome.ucsc.edu/h/GCF_020744495.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/020/744/495/GCF_020744495.1/genes/GCF_020744495.1_Fusso1.ncbiRefSeq.gtf.gz +Giardia Assemblage A2 isolate DH GenBank GCA_000498715.1 no 239 0 0 Giardia Assemblage A 2 isolate DH GiardiaDB 5741 GCA_000498715.1_ASM49871v1 GCA_000498715.1 False Giardia intestinalis diplomonads (DH 2013) https://genome.ucsc.edu/h/GCA_000498715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/715/GCA_000498715.1/genes/GCA_000498715.1_ASM49871v1.augustus.gtf.gz +Giardia assemblage A isolate AS175 GenBank GCA_001493575.1 no 1139 0 0 Giardia Assemblage A AS175 GiardiaDB 941442 GCA_001493575.1_GIAS175 GCA_001493575.1 False Giardia intestinalis assemblage A diplomonads (AS175 2013) https://genome.ucsc.edu/h/GCA_001493575.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/493/575/GCA_001493575.1/genes/GCA_001493575.1_GIAS175.augustus.gtf.gz +Giardia Assemblage A isolate CIA INSDC GCA_022985015.1 no 0 93 0 Giardia Assemblage A isolate CIA GiardiaDB 5741 GCA_022985015.1_USDA_CIA_1 GCA_022985015.1 False Giardia intestinalis diplomonads (CIA 2022) https://genome.ucsc.edu/h/GCA_022985015.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/015/GCA_022985015.1/genes/GCA_022985015.1_USDA_CIA_1.augustus.gtf.gz +Giardia Assemblage A isolate WB 2019 INSDC GCA_000002435.2 yes 0 30 5 Giardia Assemblage A isolate WB 2019 GiardiaDB 5741 GCF_000002435.2_UU_WB_2.1 GCA_000002435.2 GCF_000002435.2 True Giardia intestinalis diplomonads (WB C6 2019) https://genome.ucsc.edu/h/GCF_000002435.2 +Giardia Assemblage A isolate WB Calgary INSDC GCA_011634545.1 no 0 37 0 Giardia Assemblage A isolate WB Calgary GiardiaDB 5741 GCA_011634545.1_ASM1163454v1 GCA_011634545.1 False Giardia intestinalis diplomonads (WB 2020) https://genome.ucsc.edu/h/GCA_011634545.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/545/GCA_011634545.1/genes/GCA_011634545.1_ASM1163454v1.augustus.gtf.gz +Giardia Assemblage B isolate BAH15c1 GenBank GCA_001543975.1 no 0 508 0 Giardia Assemblage B isolate BAH15c1 GiardiaDB 1394984 GCA_001543975.1_G_duodenalis_AssB_BAH15c1 GCA_001543975.1 False Giardia intestinalis assemblage B diplomonads (BAH15c1 2016) https://genome.ucsc.edu/h/GCA_001543975.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/543/975/GCA_001543975.1/genes/GCA_001543975.1_G_duodenalis_AssB_BAH15c1.augustus.gtf.gz +Giardia Assemblage B isolate GS Calgary INSDC GCA_011634595.1 no 0 19 0 Giardia Assemblage B isolate GS Calgary GiardiaDB 5741 GCA_011634595.1_ASM1163459v1 GCA_011634595.1 False Giardia intestinalis diplomonads (GS 2020) https://genome.ucsc.edu/h/GCA_011634595.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/595/GCA_011634595.1/genes/GCA_011634595.1_ASM1163459v1.augustus.gtf.gz +Giardia Assemblage B isolate GS_B GenBank GCA_000498735.1 no 543 0 0 Giardia Assemblage B isolate GS_B GiardiaDB 5741 GCA_000498735.1_ASM49873v1 GCA_000498735.1 False Giardia intestinalis diplomonads (GS 2013) https://genome.ucsc.edu/h/GCA_000498735.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/735/GCA_000498735.1/genes/GCA_000498735.1_ASM49873v1.augustus.gtf.gz +Giardia Assemblage D isolate DID INSDC GCA_022985025.1 no 0 260 0 Giardia Assemblage D isolate DID GiardiaDB 5741 GCA_022985025.1_USDA_DID_1 GCA_022985025.1 False Giardia intestinalis diplomonads (DID 2022) https://genome.ucsc.edu/h/GCA_022985025.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/025/GCA_022985025.1/genes/GCA_022985025.1_USDA_DID_1.augustus.gtf.gz +Glossina austeni TTRI INSDC GCA_000688735.1 yes 0 2205 0 Glossina austeni TTRI VectorBase 7395 GCA_000688735.1_Glossina_austeni-1.0.3 GCA_000688735.1 False Glossina austeni tsetse fly G.austeni (2014) https://genome.ucsc.edu/h/GCA_000688735.1 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 +Glossina brevipalpis IAEA INSDC GCA_000671755.1 yes 0 1651 0 Glossina brevipalpis IAEA VectorBase 37001 GCA_000671755.1_Glossina_brevipalpis_1.0.3 GCA_000671755.1 False Glossina brevipalpis tsetse fly G.brevipalpis (2014) https://genome.ucsc.edu/h/GCA_000671755.1 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 +Glossina fuscipes IAEA INSDC GCA_000671735.1 no 0 2395 0 Glossina fuscipes IAEA VectorBase 201502 GCA_000671735.1_Glossina_fuscipes-3.0.2 GCA_000671735.1 False Glossina fuscipes fuscipes tsetse fly G.fuscipes fuscipes (2014) https://genome.ucsc.edu/h/GCA_000671735.1 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 +Glossina fuscipes IAEA 2018 INSDC GCA_014805625.1 yes 0 7986 0 Glossina fuscipes IAEA 2018 VectorBase 7396 GCF_014805625.2_Yale_Gfus_2 GCA_014805625.1 GCF_014805625.2 False Glossina fuscipes tsetse fly (v2 IAEA_lab_2018 2020) https://genome.ucsc.edu/h/GCF_014805625.2 +Gallus gallus isolate bGalGal1 INSDC GCF_016699485.2 yes 0 172 41 Gallus gallus isolate bGalGal1 HostDB 9031 GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b GCA_016699485.1 GCF_016699485.2 True Gallus gallus chicken white leghorn layer X broiler (broiler haplotype 2021 v2 2021) https://genome.ucsc.edu/h/GCF_016699485.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/699/485/GCF_016699485.2/genes/GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b.ncbiRefSeq.gtf.gz +Giardia intestinalis Beaver INSDC GCA_011634555.1 no 0 8 0 Giardia Assemblage A Beaver GiardiaDB 5741 GCA_011634555.1_ASM1163455v1 GCA_011634555.1 False Giardia intestinalis diplomonads (beaver 2020) https://genome.ucsc.edu/h/GCA_011634555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/555/GCA_011634555.1/genes/GCA_011634555.1_ASM1163455v1.augustus.gtf.gz +Glossina morsitans Yale INSDC GCA_001077435.1 yes 0 13807 0 Glossina morsitans Yale VectorBase 37546 GCA_001077435.1_ASM107743v1 GCA_001077435.1 False Glossina morsitans morsitans tsetse fly G.morsitans morsitans (Yale 2014) https://genome.ucsc.edu/h/GCA_001077435.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/435/GCA_001077435.1/genes/GCA_001077435.1_ASM107743v1.augustus.gtf.gz +Giardia muris strain Roberts-Thomson GenBank GCA_006247105.1 yes 54 0 5 Giardia muris strain Roberts-Thomson GiardiaDB 5742 GCA_006247105.1_UU_GM_1.1 GCA_006247105.1 False Giardia muris diplomonads (Roberts-Thomson 2019) https://genome.ucsc.edu/h/GCA_006247105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/006/247/105/GCA_006247105.1/genes/GCA_006247105.1_UU_GM_1.1.augustus.gtf.gz +Gregarina niphandrodes Unknown strain GenBank GCA_000223845.4 yes 0 469 0 Gregarina niphandrodes Unknown strain CryptoDB 110365 GCF_000223845.1_GNI3 GCA_000223845.4 GCF_000223845.1 True Gregarina niphandrodes apicomplexans G.niphandrodes (2014) https://genome.ucsc.edu/h/GCF_000223845.1 +Glossina pallidipes IAEA INSDC GCA_000688715.1 yes 0 1726 0 Glossina pallidipes IAEA VectorBase 7398 GCA_000688715.1_Glossina_pallidipes-1.0.3 GCA_000688715.1 False Glossina pallidipes tsetse fly G.pallidipes (2014) https://genome.ucsc.edu/h/GCA_000688715.1 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 +Glossina palpalis IAEA INSDC GCA_000818775.1 yes 0 3926 0 Glossina palpalis IAEA VectorBase 67801 GCA_000818775.1_Glossina_palpalis_gambiensis-2.0.1 GCA_000818775.1 False Glossina palpalis gambiensis tsetse fly G.palpalis gambiensis (146720 2015) https://genome.ucsc.edu/h/GCA_000818775.1 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 +Hyalomma asiaticum Hyas-2018 INSDC GCA_013339685.2 yes 0 6308 11 Hyalomma asiaticum Hyas-2018 VectorBase 266040 GCA_013339685.2_BIME_Hyas_1.3 GCA_013339685.2 False Hyalomma asiaticum mite/tick H.asiaticum (Hyas-2018 2020) https://genome.ucsc.edu/h/GCA_013339685.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/685/GCA_013339685.2/genes/GCA_013339685.2_BIME_Hyas_1.3.augustus.gtf.gz +Histoplasma capsulatum G184AR INSDC GCA_017607465.1 no 0 11 0 Histoplasma capsulatum G184AR FungiDB 5037 GCA_017607465.1_ASM1760746v1 GCA_017607465.1 False Histoplasma capsulatum ascomycetes H.capsulatum (G184AR 2021) https://genome.ucsc.edu/h/GCA_017607465.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/465/GCA_017607465.1/genes/GCA_017607465.1_ASM1760746v1.augustus.gtf.gz +Histoplasma capsulatum WU24 INSDC GCA_017310585.1 no 0 0 7 Histoplasma capsulatum WU24 FungiDB 5037 GCA_017310585.1_ASM1731058v1 GCA_017310585.1 False Histoplasma capsulatum ascomycetes H.capsulatum (WU24 2021) https://genome.ucsc.edu/h/GCA_017310585.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/585/GCA_017310585.1/genes/GCA_017310585.1_ASM1731058v1.augustus.gtf.gz +Hepatospora eriocheir strain GB1 GenBank GCA_002087885.1 yes 1300 0 0 Hepatospora eriocheir strain GB1 MicrosporidiaDB 1081669 GCA_002087885.1_ASM208788v1 GCA_002087885.1 False Hepatospora eriocheir microsporidians H.eriocheir (GB1 2017) https://genome.ucsc.edu/h/GCA_002087885.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/885/GCA_002087885.1/genes/GCA_002087885.1_ASM208788v1.augustus.gtf.gz +Hepatospora eriocheir strain canceri GenBank GCA_002087875.1 no 2344 0 0 Hepatospora eriocheir strain canceri MicrosporidiaDB 1081669 GCA_002087875.1_ASM208787v1 GCA_002087875.1 False Hepatospora eriocheir microsporidians H.eriocheir (canceri 2017) https://genome.ucsc.edu/h/GCA_002087875.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/875/GCA_002087875.1/genes/GCA_002087875.1_ASM208787v1.augustus.gtf.gz +Hanseniaspora guilliermondii strain UTAD222 INSDC GCA_900119595.1 yes 0 208 0 Hanseniaspora guilliermondii strain UTAD222 FungiDB 56406 GCA_900119595.1_version_1 GCA_900119595.1 False Hanseniaspora guilliermondii budding yeast H.guilliermondii (UTAD222 2016) https://genome.ucsc.edu/h/GCA_900119595.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/119/595/GCA_900119595.1/genes/GCA_900119595.1_version_1.augustus.gtf.gz +Hammondia hammondi strain H.H.34 GenBank GCA_000258005.2 yes 0 14860 0 Hammondia hammondi strain H.H.34 ToxoDB 99158 GCF_000258005.1_HHA1_v02 GCA_000258005.2 GCF_000258005.1 True Hammondia hammondi apicomplexans H.hammondi (H.H.34 2014) https://genome.ucsc.edu/h/GCF_000258005.1 +Haemaphysalis longicornis HaeL-2018 INSDC GCA_013339765.2 yes 0 3874 11 Haemaphysalis longicornis HaeL-2018 VectorBase 44386 GCA_013339765.2_BIME_HaeL_1.3 GCA_013339765.2 False Haemaphysalis longicornis longhorned tick (HaeL-2018 2020) https://genome.ucsc.edu/h/GCA_013339765.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/765/GCA_013339765.2/genes/GCA_013339765.2_BIME_HaeL_1.3.augustus.gtf.gz +Hamiltosporidium magnivora BE-OM-2 INSDC GCA_004325065.1 yes 0 3550 0 Hamiltosporidium magnivora BE-OM-2 MicrosporidiaDB 148818 GCA_004325065.1_BEOM2_v1 GCA_004325065.1 False Hamiltosporidium magnivora microsporidians H.magnivora (BE-OM-2 2019) https://genome.ucsc.edu/h/GCA_004325065.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/065/GCA_004325065.1/genes/GCA_004325065.1_BEOM2_v1.augustus.gtf.gz +Hamiltosporidium magnivora IL-BN-2 INSDC GCA_004325035.1 no 0 3833 0 Hamiltosporidium magnivora IL-BN-2 MicrosporidiaDB 148818 GCA_004325035.1_ASM432503v1 GCA_004325035.1 False Hamiltosporidium magnivora microsporidians H.magnivora (IL-BN-2 2019) https://genome.ucsc.edu/h/GCA_004325035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/035/GCA_004325035.1/genes/GCA_004325035.1_ASM432503v1.augustus.gtf.gz +Histomonas meleagridis 2922-C6/04-10x INSDC GCA_020186115.1 yes 0 187 0 Histomonas meleagridis 2922-C6/04-10x TrichDB 135588 GCA_020186115.1_ASM2018611v1 GCA_020186115.1 GCF_020186115.1 True Histomonas meleagridis H.meleagridis (2922-C6/04-10x 2021) https://genome.ucsc.edu/h/GCA_020186115.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/186/115/GCA_020186115.1/genes/GCA_020186115.1_ASM2018611v1.augustus.gtf.gz +Histomonas meleagridis 2922-C6/04-290x INSDC GCA_020184695.1 no 0 281 0 Histomonas meleagridis 2922-C6/04-290x TrichDB 135588 GCA_020184695.1_ASM2018469v1 GCA_020184695.1 False Histomonas meleagridis H.meleagridis (2922-C6/04-290x 2021) https://genome.ucsc.edu/h/GCA_020184695.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/184/695/GCA_020184695.1/genes/GCA_020184695.1_ASM2018469v1.augustus.gtf.gz +Hepatocystis sp. ex Piliocolobus tephrosceles 2019 INSDC GCA_902459845.2 yes 0 2439 0 Hepatocystis sp. ex Piliocolobus tephrosceles 2019 PlasmoDB 2600580 GCA_902459845.2_HEP1 GCA_902459845.2 False Hepatocystis sp. ex Piliocolobus tephrosceles apicomplexans H.sp. ex Piliocolobus tephrosceles (2020) https://genome.ucsc.edu/h/GCA_902459845.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/902/459/845/GCA_902459845.2/genes/GCA_902459845.2_HEP1.augustus.gtf.gz +Haemoproteus tartakovskyi strain SISKIN1 INSDC GCA_001625125.1 yes 0 2982 0 Haemoproteus tartakovskyi strain SISKIN1 PlasmoDB 707206 GCA_001625125.1_ASM162512v1 GCA_001625125.1 False Haemoproteus tartakovskyi apicomplexans H.tartakovskyi (SISKIN1 2016) https://genome.ucsc.edu/h/GCA_001625125.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/625/125/GCA_001625125.1/genes/GCA_001625125.1_ASM162512v1.augustus.gtf.gz +Hamiltosporidium tvaerminnensis FI-OER-3-3 INSDC GCA_004325045.1 yes 0 2915 0 Hamiltosporidium tvaerminnensis FI-OER-3-3 MicrosporidiaDB 1176355 GCA_004325045.1_FIOER33_v1 GCA_004325045.1 False Hamiltosporidium tvaerminnensis microsporidians H.tvaerminnensis (FI-OER-3-3 2019) https://genome.ucsc.edu/h/GCA_004325045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/045/GCA_004325045.1/genes/GCA_004325045.1_FIOER33_v1.augustus.gtf.gz +Hamiltosporidium tvaerminnensis IL-G-3 INSDC GCA_004325075.1 no 0 2738 0 Hamiltosporidium tvaerminnensis IL-G-3 MicrosporidiaDB 1176355 GCA_004325075.1_ILG3_v1 GCA_004325075.1 False Hamiltosporidium tvaerminnensis microsporidians H.tvaerminnensis (IL-G-3 2019) https://genome.ucsc.edu/h/GCA_004325075.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/075/GCA_004325075.1/genes/GCA_004325075.1_ILG3_v1.augustus.gtf.gz +Hanseniaspora uvarum strain AWRI3580 INSDC GCA_001747055.1 yes 0 18 0 Hanseniaspora uvarum strain AWRI3580 FungiDB 29833 GCA_001747055.1_ASM174705v1 GCA_001747055.1 False Hanseniaspora uvarum budding yeast H.uvarum (AWRI3580 2016) https://genome.ucsc.edu/h/GCA_001747055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/747/055/GCA_001747055.1/genes/GCA_001747055.1_ASM174705v1.augustus.gtf.gz +Hemileia vastatrix Race XXXIII INSDC GCA_004125335.1 yes 0 116756 0 Hemileia vastatrix Race XXXIII FungiDB 203904 GCA_004125335.1_ASM412533v1 GCA_004125335.1 False Hemileia vastatrix coffee rust fungus (Race XXXIII 2019) https://genome.ucsc.edu/h/GCA_004125335.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/125/335/GCA_004125335.1/genes/GCA_004125335.1_ASM412533v1.augustus.gtf.gz +Ixodes persulcatus Iper-2018 INSDC GCA_013358835.2 yes 0 11596 0 Ixodes persulcatus Iper-2018 VectorBase 34615 GCA_013358835.2_BIME_Iper_1.3 GCA_013358835.2 False Ixodes persulcatus taiga tick (Iper-2018 2020) https://genome.ucsc.edu/h/GCA_013358835.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/835/GCA_013358835.2/genes/GCA_013358835.2_BIME_Iper_1.3.augustus.gtf.gz +Ixodes ricinus Charles River INSDC GCA_000973045.2 yes 0 204516 0 Ixodes ricinus Charles River VectorBase 34613 GCA_000973045.2_ASM97304v2 GCA_000973045.2 False Ixodes ricinus castor bean tick (Charles River 2016) https://genome.ucsc.edu/h/GCA_000973045.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/973/045/GCA_000973045.2/genes/GCA_000973045.2_ASM97304v2.augustus.gtf.gz +Ixodes scapularis ISE6 INSDC GCA_002892825.2 no 0 6476 0 Ixodes scapularis ISE6 VectorBase 6945 GCF_002892825.2_ISE6_asm2.2_deduplicated GCA_002892825.2 GCF_002892825.2 False Ixodes scapularis black-legged tick (JCVI 2018) https://genome.ucsc.edu/h/GCF_002892825.2 +Ixodes scapularis PalLabHiFi INSDC GCF_016920785.2 yes 0 648 0 Ixodes scapularis PalLabHiFi VectorBase 6945 GCF_016920785.2_ASM1692078v2 GCA_016920785.2 GCF_016920785.2 True Ixodes scapularis black-legged tick (U.Maryland v2 2021) https://genome.ucsc.edu/h/GCF_016920785.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/785/GCF_016920785.2/genes/GCF_016920785.2_ASM1692078v2.ncbiRefSeq.gtf.gz +Ixodes scapularis Wikel INSDC GCA_000208615.1 no 0 369492 0 Ixodes scapularis Wikel VectorBase 6945 GCF_000208615.1_JCVI_ISG_i3_1.0 GCA_000208615.1 GCF_000208615.1 True Ixodes scapularis black-legged tick (Wikel colony 2008) https://genome.ucsc.edu/h/GCF_000208615.1 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 +Leishmania amazonensis MHOM/BR/71973/M2269 GenBank GCA_000438535.1 yes 0 2627 0 Leishmania amazonensis MHOM/BR/71973/M2269 TriTrypDB 5659 GCA_000438535.1_LeiAma1.0 GCA_000438535.1 False Leishmania amazonensis Leishmania amazonensis (2013) https://genome.ucsc.edu/h/GCA_000438535.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/438/535/GCA_000438535.1/genes/GCA_000438535.1_LeiAma1.0.augustus.gtf.gz +Leishmania amazonensis strain PH8 INSDC GCA_025688915.1 no 0 42 34 Leishmania amazonensis strain PH8 TriTrypDB 5659 GCA_025688915.1_ASM2568891v1 GCA_025688915.1 False Leishmania amazonensis Leishmania amazonensis (PH8 2022) https://genome.ucsc.edu/h/GCA_025688915.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/025/688/915/GCA_025688915.1/genes/GCA_025688915.1_ASM2568891v1.augustus.gtf.gz +Leishmania arabica strain LEM1108 GenBank GCA_000410695.2 yes 0 132 36 Leishmania arabica strain LEM1108 TriTrypDB 40284 GCA_000410695.2_Leishmania_arabica_LEM1108-1.0.3 GCA_000410695.2 False Leishmania arabica Leishmania arabica (LEM1108 2016) https://genome.ucsc.edu/h/GCA_000410695.2 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 +Leishmania donovani strain BHU 1220 GenBank GCA_000470725.1 no 0 0 36 Leishmania donovani strain BHU 1220 TriTrypDB 5661 GCA_000470725.1_BHU1220 GCA_000470725.1 False Leishmania donovani Leishmania donovani (BHU 1220 2013) https://genome.ucsc.edu/h/GCA_000470725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/470/725/GCA_000470725.1/genes/GCA_000470725.1_BHU1220.augustus.gtf.gz +Leishmania donovani CL-SL GenBank GCA_003719575.1 no 0 0 36 Leishmania donovani CL-SL TriTrypDB 5661 GCA_003719575.1_ASM371957v1 GCA_003719575.1 False Leishmania donovani Leishmania donovani (LdCL 2018) https://genome.ucsc.edu/h/GCA_003719575.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/575/GCA_003719575.1/genes/GCA_003719575.1_ASM371957v1.augustus.gtf.gz +Leishmania donovani HU3 INSDC GCA_900635355.2 no 0 0 36 Leishmania donovani HU3 TriTrypDB 5661 GCA_900635355.2_LDHU3_new GCA_900635355.2 False Leishmania donovani Leishmania donovani (2020) https://genome.ucsc.edu/h/GCA_900635355.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/635/355/GCA_900635355.2/genes/GCA_900635355.2_LDHU3_new.augustus.gtf.gz +Leishmania enriettii strain LEM3045 GenBank GCA_000410755.2 yes 0 459 36 Leishmania enriettii strain LEM3045 TriTrypDB 5663 GCA_000410755.2_Leishmania_enrietti_LEM3045-1.0.2 GCA_000410755.2 False Leishmania enriettii Leishmania enriettii (LEM3045 2016) https://genome.ucsc.edu/h/GCA_000410755.2 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 +Leishmania enriettii MCAV/BR/2001/CUR178 INSDC GCA_017916305.1 no 0 18 36 Leishmania enriettii MCAV/BR/2001/CUR178 TriTrypDB 5663 GCA_017916305.1_LU_Lenr_1.0 GCA_017916305.1 GCF_017916305.1 True Leishmania enriettii Leishmania enriettii (CUR178 2021) https://genome.ucsc.edu/h/GCA_017916305.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/305/GCA_017916305.1/genes/GCA_017916305.1_LU_Lenr_1.0.augustus.gtf.gz +Leishmania gerbilli strain LEM452 GenBank GCA_000443025.1 yes 0 106 36 Leishmania gerbilli strain LEM452 TriTrypDB 40285 GCA_000443025.1_Leishmania_gerbilii_LEM452-1.0.2 GCA_000443025.1 False Leishmania gerbilli Leishmania gerbilli (LEM452 2013) https://genome.ucsc.edu/h/GCA_000443025.1 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 +Lutzomyia longipalpis Jacobina INSDC GCA_000265325.1 no 0 11532 0 Lutzomyia longipalpis Jacobina VectorBase 7200 GCA_000265325.1_Llon_1.0 GCA_000265325.1 False Lutzomyia longipalpis fly L.longipalpis (2012) https://genome.ucsc.edu/h/GCA_000265325.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/265/325/GCA_000265325.1/genes/GCA_000265325.1_Llon_1.0.augustus.gtf.gz +Lutzomyia longipalpis M1 INSDC GCF_024334085.1 yes 0 0 4 Lutzomyia longipalpis M1 VectorBase 7200 GCF_024334085.1_ASM2433408v1 GCA_024334085.1 GCF_024334085.1 True Lutzomyia longipalpis fly L.longipalpis (SR_M1_2022 2022) https://genome.ucsc.edu/h/GCF_024334085.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/024/334/085/GCF_024334085.1/genes/GCF_024334085.1_ASM2433408v1.ncbiRefSeq.gtf.gz +Leishmania major Friedlin 2021 INSDC GCA_916722125.1 no 0 0 36 Leishmania major Friedlin 2021 TriTrypDB 347515 GCA_916722125.1_LMJFC_annotationDEFINITIVO GCA_916722125.1 False Leishmania major strain Friedlin Leishmania major strain (Friedlin 2021) https://genome.ucsc.edu/h/GCA_916722125.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/916/722/125/GCA_916722125.1/genes/GCA_916722125.1_LMJFC_annotationDEFINITIVO.augustus.gtf.gz +Leishmania martiniquensis LEM2494 GenBank GCA_000409445.2 yes 0 215 36 Leishmania martiniquensis LEM2494 TriTrypDB 1303197 GCA_000409445.2_Leishmania_MAR_LEM2494-1.0.3 GCA_000409445.2 False Leishmania sp. MAR LEM2494 Leishmania sp. MAR (LEM2494 2016) https://genome.ucsc.edu/h/GCA_000409445.2 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 +Leishmania martiniquensis MHOM/TH/2012/LSCM1 INSDC GCA_017916325.1 no 0 6 36 Leishmania martiniquensis MHOM/TH/2012/LSCM1 TriTrypDB 1580590 GCF_017916325.1_LU_Lmar_1.0 GCA_017916325.1 GCF_017916325.1 True Leishmania martiniquensis Leishmania martiniquensis (LSCM1 2021 refseq) https://genome.ucsc.edu/h/GCF_017916325.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/325/GCA_017916325.1/genes/GCA_017916325.1_LU_Lmar_1.0.augustus.gtf.gz +Leishmania orientalis MHOM/TH/2014/LSCM4 INSDC GCA_017916335.1 yes 0 62 36 Leishmania orientalis MHOM/TH/2014/LSCM4 TriTrypDB 2249476 GCF_017916335.1_LU_Lori_1.0 GCA_017916335.1 GCF_017916335.1 True Leishmania orientalis Leishmania orientalis (LSCM4 2021) https://genome.ucsc.edu/h/GCF_017916335.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/335/GCA_017916335.1/genes/GCA_017916335.1_LU_Lori_1.0.augustus.gtf.gz +Leishmania panamensis strain MHOM/PA/94/PSC-1 GenBank GCA_000755165.1 no 0 0 35 Leishmania panamensis strain MHOM/PA/94/PSC-1 TriTrypDB 5679 GCF_000755165.1_ASM75516v1 GCA_000755165.1 GCF_000755165.1 True Leishmania panamensis Leishmania panamensis (MHOM/PA/94/PSC-1 2014 kinetoplastids) https://genome.ucsc.edu/h/GCF_000755165.1 +Lomentospora prolificans JHH-5317 GenBank GCA_002276285.1 yes 1624 0 0 Lomentospora prolificans JHH-5317 FungiDB 41688 GCA_002276285.1_Lprolificans_pilon GCA_002276285.1 False Lomentospora prolificans ascomycetes L.prolificans (JHH-5317 2017) https://genome.ucsc.edu/h/GCA_002276285.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/276/285/GCA_002276285.1/genes/GCA_002276285.1_Lprolificans_pilon.augustus.gtf.gz +Leptomonas pyrrhocoris H10 GenBank GCA_001293395.1 yes 0 25 35 Leptomonas pyrrhocoris H10 TriTrypDB 157538 GCF_001293395.1_ASM129339v1 GCA_001293395.1 GCF_001293395.1 True Leptomonas pyrrhocoris Leptomonas pyrrhocoris (H10 2015 kinetoplastids) https://genome.ucsc.edu/h/GCF_001293395.1 +Lichtheimia ramosa KPH11 INSDC GCA_008728235.1 yes 0 0 10 Lichtheimia ramosa KPH11 FungiDB 688394 GCA_008728235.1_ASM872823v1 GCA_008728235.1 False Lichtheimia ramosa fungi L.ramosa (KPH11 2019) https://genome.ucsc.edu/h/GCA_008728235.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/008/728/235/GCA_008728235.1/genes/GCA_008728235.1_ASM872823v1.augustus.gtf.gz +Leptomonas seymouri ATCC 30220 GenBank GCA_001299535.1 yes 1222 0 0 Leptomonas seymouri ATCC 30220 TriTrypDB 5684 GCA_001299535.1_ASM129953v1 GCA_001299535.1 False Leptomonas seymouri Leptomonas seymouri (ATCC 30220 2015) https://genome.ucsc.edu/h/GCA_001299535.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/299/535/GCA_001299535.1/genes/GCA_001299535.1_ASM129953v1.augustus.gtf.gz +Leishmania sp. Ghana MHOM/GH/2012/GH5 INSDC GCA_017918215.1 yes 0 80 36 Leishmania sp. Ghana MHOM/GH/2012/GH5 TriTrypDB 2803181 GCA_017918215.1_LU_Lgha_1.0 GCA_017918215.1 GCF_017918215.1 True Leishmania sp. Ghana 2012 LV757 Leishmania sp. Ghana 2012 LV757 (GH5 2021) https://genome.ucsc.edu/h/GCA_017918215.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/215/GCA_017918215.1/genes/GCA_017918215.1_LU_Lgha_1.0.augustus.gtf.gz +Leishmania sp. Namibia MPRO/NA/1975/252/LV425 INSDC GCA_017918225.1 yes 0 31 36 Leishmania sp. Namibia MPRO/NA/1975/252/LV425 TriTrypDB 2802991 GCA_017918225.1_LU_LNam_1.0 GCA_017918225.1 GCF_017918225.1 True Leishmania sp. Namibia Leishmania sp. Namibia (253 2021) https://genome.ucsc.edu/h/GCA_017918225.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/225/GCA_017918225.1/genes/GCA_017918225.1_LU_LNam_1.0.augustus.gtf.gz +Leishmania tarentolae Parrot Tar II 2019 INSDC GCA_009731335.1 no 0 179 0 Leishmania tarentolae Parrot Tar II 2019 TriTrypDB 5689 GCA_009731335.1_Lta_assembly01 GCA_009731335.1 False Leishmania tarentolae Leishmania tarentolae (Parrot Tar II 2019) https://genome.ucsc.edu/h/GCA_009731335.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/731/335/GCA_009731335.1/genes/GCA_009731335.1_Lta_assembly01.augustus.gtf.gz +Leishmania turanica strain LEM423 GenBank GCA_000441995.1 yes 0 183 36 Leishmania turanica strain LEM423 TriTrypDB 62297 GCA_000441995.1_Leishmania_turanica_LEM423-1.0.2 GCA_000441995.1 False Leishmania turanica Leishmania turanica (LEM423 2013) https://genome.ucsc.edu/h/GCA_000441995.1 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 +Mitosporidium daphniae UGP3 GenBank GCA_000760515.2 yes 0 610 0 Mitosporidium daphniae UGP3 MicrosporidiaDB 1485682 GCF_000760515.2_UGP1.1 GCA_000760515.2 GCF_000760515.2 True Mitosporidium daphniae microsporidians M.daphniae https://genome.ucsc.edu/h/GCF_000760515.2 +Musca domestica aabys INSDC GCA_000371365.1 yes 0 20487 0 Musca domestica aabys VectorBase 7370 GCF_000371365.1_Musca_domestica-2.0.2 GCA_000371365.1 GCF_000371365.1 True Musca domestica house fly (aabys 2013 refseq) https://genome.ucsc.edu/h/GCF_000371365.1 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 +Musca domestica aabys 2023 INSDC GCF_030504385.1 no 0 339 0 Musca domestica aabys 2023 VectorBase 7370 GCF_030504385.1_Musca_domestica.polishedcontigs.V.1.1 GCA_030504385.2 GCF_030504385.1 False Musca domestica house fly (aabys 2023) https://genome.ucsc.edu/h/GCF_030504385.1 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 +Monocercomonoides exilis PA203 GenBank GCA_001643675.2 yes 0 101 0 Monocercomonoides exilis PA203 GiardiaDB 2049356 GCA_001643675.2_ASM164367v2 GCA_001643675.2 GCF_001643675.1 True Monocercomonoides exilis M.exilis (PA203 2021) https://genome.ucsc.edu/h/GCA_001643675.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/643/675/GCA_001643675.2/genes/GCA_001643675.2_ASM164367v2.augustus.gtf.gz +Macaca fascicularis REF INSDC GCF_000364345.1 yes 0 7579 21 Macaca fascicularis REF HostDB 9541 GCF_000364345.1_Macaca_fascicularis_5.0 GCA_000364345.1 GCF_000364345.1 False Macaca fascicularis crab-eating macaque WashU 2013 refseq https://genome.ucsc.edu/h/GCF_000364345.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/364/345/GCF_000364345.1/genes/GCF_000364345.1_Macaca_fascicularis_5.0.ncbiRefSeq.gtf.gz +Monilinia fructicola CPMC6 INSDC GCA_016906325.1 yes 0 99 0 Monilinia fructicola CPMC6 FungiDB 38448 GCA_016906325.1_ASM1690632v1 GCA_016906325.1 False Monilinia fructicola ascomycetes M.fructicola (CPMC6 2021) https://genome.ucsc.edu/h/GCA_016906325.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/906/325/GCA_016906325.1/genes/GCA_016906325.1_ASM1690632v1.augustus.gtf.gz +Macaca mulatta isolate AG07107 INSDC GCA_003339765.3 yes 0 2916 22 Macaca mulatta isolate AG07107 HostDB 9544 GCF_003339765.1_Mmul_10 GCA_003339765.3 GCF_003339765.1 False Macaca mulatta Rhesus monkey (2019 U. Washington) https://genome.ucsc.edu/h/GCF_003339765.1 +Madurella mycetomatis mm55 INSDC GCA_001275765.2 yes 0 804 0 Madurella mycetomatis mm55 FungiDB 100816 GCA_001275765.2_ASM127576v2 GCA_001275765.2 False Madurella mycetomatis ascomycetes M.mycetomatis (mm55 2016) https://genome.ucsc.edu/h/GCA_001275765.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/275/765/GCA_001275765.2/genes/GCA_001275765.2_ASM127576v2.augustus.gtf.gz +Myotis myotis mMyoMyo1 INSDC GCF_014108235.1 yes 0 92 0 Myotis myotis mMyoMyo1 HostDB 51298 GCF_014108235.1_mMyoMyo1.p GCA_014108235.1 GCF_014108235.1 False Myotis myotis greater mouse-eared bat (2020 Bat1K) https://genome.ucsc.edu/h/GCF_014108235.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/014/108/235/GCF_014108235.1/genes/GCF_014108235.1_mMyoMyo1.p.ncbiRefSeq.gtf.gz +Malassezia pachydermatis CBS 1879 INSDC GCA_001278385.1 yes 0 91 0 Malassezia pachydermatis CBS 1879 FungiDB 77020 GCF_001278385.1_MalaPachy GCA_001278385.1 GCF_001278385.1 True Malassezia pachydermatis basidiomycetes M.pachydermatis https://genome.ucsc.edu/h/GCF_001278385.1 +Malassezia restricta KCTC 27527 GenBank GCA_003290485.1 yes 0 0 9 Malassezia restricta KCTC 27527 FungiDB 76775 GCF_003290485.1_ASM329048v1 GCA_003290485.1 GCF_003290485.1 True Malassezia restricta basidiomycetes M.restricta https://genome.ucsc.edu/h/GCF_003290485.1 +Naganishia albida JCM2334 GenBank GCA_001599735.1 no 74 0 0 Naganishia albida JCM2334 FungiDB 100951 GCA_001599735.1_JCM_2334_assembly_v001 GCA_001599735.1 False Naganishia albida basidiomycetes N.albida (JCM 2334 2016) https://genome.ucsc.edu/h/GCA_001599735.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/735/GCA_001599735.1/genes/GCA_001599735.1_JCM_2334_assembly_v001.augustus.gtf.gz +Naganishia albida NRRL Y-1402 GenBank GCA_001444555.1 yes 834 0 0 Naganishia albida NRRL Y-1402 FungiDB 100951 GCA_001444555.1_ASM144455v1 GCA_001444555.1 False Naganishia albida basidiomycetes N.albida (NRRL Y-1402 2015) https://genome.ucsc.edu/h/GCA_001444555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/444/555/GCA_001444555.1/genes/GCA_001444555.1_ASM144455v1.augustus.gtf.gz +Nematocida ausubeli ERTm2 GenBank GCA_000250695.1 yes 0 202 0 Nematocida ausubeli ERTm2 MicrosporidiaDB 1913371 GCA_000250695.1_Nema_parisii_ERTm2_V1 GCA_000250695.1 False Nematocida ausubeli microsporidians N.ausubeli (ERTm2 2012) https://genome.ucsc.edu/h/GCA_000250695.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/695/GCA_000250695.1/genes/GCA_000250695.1_Nema_parisii_ERTm2_V1.augustus.gtf.gz +Nematocida ausubeli ERTm6 GenBank GCA_000738915.1 no 0 22 0 Nematocida ausubeli ERTm6 MicrosporidiaDB 1913371 GCF_000738915.1_Nema_sp_1_ERTm6_V2 GCA_000738915.1 GCF_000738915.1 True Nematocida ausubeli microsporidians N.ausubeli (ERTm6 2014) https://genome.ucsc.edu/h/GCF_000738915.1 +Neospora caninum Liverpool 2019 INSDC GCA_016097395.1 no 31 0 13 Neospora caninum Liverpool 2019 ToxoDB 29176 GCA_016097395.1_Ncaninum_LIV GCA_016097395.1 False Neospora caninum apicomplexans N.caninum (Liverpool 2020) https://genome.ucsc.edu/h/GCA_016097395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/016/097/395/GCA_016097395.1/genes/GCA_016097395.1_Ncaninum_LIV.augustus.gtf.gz +Nosema ceranae BRL INSDC GCA_004919615.1 no 0 110 0 Nosema ceranae BRL MicrosporidiaDB 40302 GCA_004919615.1_Ncer_3.0 GCA_004919615.1 False Vairimorpha ceranae microsporidians V.ceranae (BRL 2019) https://genome.ucsc.edu/h/GCA_004919615.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/919/615/GCA_004919615.1/genes/GCA_004919615.1_Ncer_3.0.augustus.gtf.gz +Nosema ceranae strain PA08_1199 GenBank GCA_000988165.1 no 536 0 0 Nosema ceranae strain PA08_1199 MicrosporidiaDB 40302 GCF_000988165.1_ASM98816v1 GCA_000988165.1 GCF_000988165.1 True Vairimorpha ceranae microsporidians N.ceranae https://genome.ucsc.edu/h/GCF_000988165.1 +Nematocida displodere strain JUm2807 GenBank GCA_001642395.1 yes 40 0 0 Nematocida displodere strain JUm2807 MicrosporidiaDB 1805483 GCA_001642395.1_ASM164239v1 GCA_001642395.1 GCF_001642395.1 True Nematocida displodere microsporidians N.displodere (JUm2807 2016) https://genome.ucsc.edu/h/GCA_001642395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/395/GCA_001642395.1/genes/GCA_001642395.1_ASM164239v1.augustus.gtf.gz +Naegleria fowleri ATCC 30863 GenBank GCA_000499105.1 no 0 1124 0 Naegleria fowleri ATCC 30863 AmoebaDB 5763 GCA_000499105.1_Naegleria_fowleri_1.0 GCA_000499105.1 False Naegleria fowleri brain-eating amoeba (ATCC 30863 2013) https://genome.ucsc.edu/h/GCA_000499105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/105/GCA_000499105.1/genes/GCA_000499105.1_Naegleria_fowleri_1.0.augustus.gtf.gz +Naegleria fowleri strain ATCC 30894 INSDC GCA_008403515.1 no 0 81 0 Naegleria fowleri strain ATCC 30894 AmoebaDB 5763 GCF_008403515.1_ASM840351v1 GCA_008403515.1 GCF_008403515.1 False Naegleria fowleri brain-eating amoeba (ATCC 30894 2019) https://genome.ucsc.edu/h/GCF_008403515.1 +Naegleria fowleri strain Ty INSDC GCA_014843625.1 yes 0 0 37 Naegleria fowleri strain Ty AmoebaDB 5763 GCA_014843625.1_ASM1484362v1 GCA_014843625.1 False Naegleria fowleri brain-eating amoeba (Ty 2020) https://genome.ucsc.edu/h/GCA_014843625.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/843/625/GCA_014843625.1/genes/GCA_014843625.1_ASM1484362v1.augustus.gtf.gz +Nakaseomyces glabratus BG2 INSDC GCA_014217725.1 no 0 0 13 Nakaseomyces glabratus BG2 FungiDB 5478 GCA_014217725.1_ASM1421772v1 GCA_014217725.1 False Nakaseomyces glabratus budding yeast N.glabratus (BG2 2020) https://genome.ucsc.edu/h/GCA_014217725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/217/725/GCA_014217725.1/genes/GCA_014217725.1_ASM1421772v1.augustus.gtf.gz +Nakaseomyces glabratus BG3993 INSDC GCA_020450195.1 no 0 0 13 Nakaseomyces glabratus BG3993 FungiDB 5478 GCA_020450195.1_ASM2045019v1 GCA_020450195.1 False Nakaseomyces glabratus budding yeast N.glabratus (BG3993 2021) https://genome.ucsc.edu/h/GCA_020450195.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/450/195/GCA_020450195.1/genes/GCA_020450195.1_ASM2045019v1.augustus.gtf.gz +Nakaseomyces glabratus CBS138 2020 INSDC GCA_010111755.1 no 0 0 13 Nakaseomyces glabratus CBS138 2020 FungiDB 5478 GCF_010111755.1_ASM1011175v1 GCA_010111755.1 GCF_010111755.1 True Nakaseomyces glabratus budding yeast N.glabratus (ATCC 2001 2020) https://genome.ucsc.edu/h/GCF_010111755.1 +Nakaseomyces glabratus DSY562 INSDC GCA_002219185.1 no 0 5 13 Nakaseomyces glabratus DSY562 FungiDB 5478 GCA_002219185.1_ASM221918v1 GCA_002219185.1 False Nakaseomyces glabratus budding yeast N.glabratus (DSY562 2017) https://genome.ucsc.edu/h/GCA_002219185.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/185/GCA_002219185.1/genes/GCA_002219185.1_ASM221918v1.augustus.gtf.gz +Nosema granulosis Ou3-Ou53 INSDC GCA_015832245.1 yes 0 1754 0 Nosema granulosis Ou3-Ou53 MicrosporidiaDB 83296 GCA_015832245.1_ASM1583224v1 GCA_015832245.1 False Nosema granulosis microsporidians N.granulosis (Ou3-Ou53 2020) https://genome.ucsc.edu/h/GCA_015832245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/015/832/245/GCA_015832245.1/genes/GCA_015832245.1_ASM1583224v1.augustus.gtf.gz +Naegleria lovaniensis strain ATCC 30569 INSDC GCA_003324165.2 yes 0 109 0 Naegleria lovaniensis strain ATCC 30569 AmoebaDB 51637 GCF_003324165.1_Nlova_2.1 GCA_003324165.2 GCF_003324165.1 False Naegleria lovaniensis N.lovaniensis (ATCC 30569 2021) https://genome.ucsc.edu/h/GCF_003324165.1 +Naegleria lovaniensis NL_76_15_250 INSDC GCA_022530875.1 no 0 199 0 Naegleria lovaniensis NL_76_15_250 AmoebaDB 51637 GCA_022530875.1_ASM2253087v1 GCA_022530875.1 False Naegleria lovaniensis N.lovaniensis (NL_76_15_250 2022) https://genome.ucsc.edu/h/GCA_022530875.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/530/875/GCA_022530875.1/genes/GCA_022530875.1_ASM2253087v1.augustus.gtf.gz +Nematocida major JUm2507 INSDC GCA_021653875.1 yes 0 111 0 Nematocida major JUm2507 MicrosporidiaDB 1912982 GCF_021653875.1_ASM2165387v1 GCA_021653875.1 GCF_021653875.1 True Nematocida major microsporidians N.major (JUm2507 2022) https://genome.ucsc.edu/h/GCF_021653875.1 +Ordospora colligata FI-SK-17-1 INSDC GCA_004325055.1 no 0 26 0 Ordospora colligata FI-SK-17-1 MicrosporidiaDB 174685 GCA_004325055.1_Ordospora_FISK_v1 GCA_004325055.1 False Ordospora colligata microsporidians O.colligata (FI-SK-17-1 2019) https://genome.ucsc.edu/h/GCA_004325055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/055/GCA_004325055.1/genes/GCA_004325055.1_Ordospora_FISK_v1.augustus.gtf.gz +Ordospora colligata GB-EP-1 INSDC GCA_004324935.1 no 0 18 0 Ordospora colligata GB-EP-1 MicrosporidiaDB 174685 GCA_004324935.1_Ordospora_GBEP_v1 GCA_004324935.1 False Ordospora colligata microsporidians O.colligata (GB-EP-1 2019) https://genome.ucsc.edu/h/GCA_004324935.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/935/GCA_004324935.1/genes/GCA_004324935.1_Ordospora_GBEP_v1.augustus.gtf.gz +Ordospora colligata NO-V-7 INSDC GCA_004324945.1 no 0 21 0 Ordospora colligata NO-V-7 MicrosporidiaDB 174685 GCA_004324945.1_Ordospora_NOV7_v1 GCA_004324945.1 False Ordospora colligata microsporidians O.colligata (NO-V-7 2019) https://genome.ucsc.edu/h/GCA_004324945.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/945/GCA_004324945.1/genes/GCA_004324945.1_Ordospora_NOV7_v1.augustus.gtf.gz +Plasmodium adleri G01 GenBank GCA_900097015.1 yes 68 0 14 Plasmodium adleri G01 PlasmoDB 880535 GCF_900097015.1_PADLG01 GCA_900097015.1 GCF_900097015.1 True Plasmodium sp. gorilla clade G2 apicomplexans P.sp. gorilla clade G2 (2018) https://genome.ucsc.edu/h/GCF_900097015.1 +Podosphaera aphanis DRCT72020 INSDC GCA_022627015.2 yes 0 12702 0 Podosphaera aphanis DRCT72020 FungiDB 79252 GCA_022627015.2_ASM2262701v2 GCA_022627015.2 False Podosphaera aphanis powdery mildews (DRCT72020 2022) https://genome.ucsc.edu/h/GCA_022627015.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/627/015/GCA_022627015.2/genes/GCA_022627015.2_ASM2262701v2.augustus.gtf.gz +Phlebotomus argentipes India INSDC GCF_947086385.1 yes 0 64 0 Phlebotomus argentipes India VectorBase 94469 GCF_947086385.1_Phlebotomus_argentipes_genome_assembly GCA_947086385.1 GCF_947086385.1 True Phlebotomus argentipes fly P.argentipes (2022) https://genome.ucsc.edu/h/GCF_947086385.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/947/086/385/GCF_947086385.1/genes/GCF_947086385.1_Phlebotomus_argentipes_genome_assembly.ncbiRefSeq.gtf.gz +Phialophora attinorum CBS 131958 INSDC GCF_001299255.1 yes 0 131 0 Phialophora attinorum CBS 131958 FungiDB 1664694 GCF_001299255.1_ASM129925v1 GCA_001299255.1 GCF_001299255.1 True Cyphellophora attinorum ascomycetes P.attinorum https://genome.ucsc.edu/h/GCF_001299255.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/001/299/255/GCF_001299255.1/genes/GCF_001299255.1_ASM129925v1.ncbiRefSeq.gtf.gz +Plasmodium billcollinsi G01 GenBank GCA_900257145.2 yes 0 0 14 Plasmodium billcollinsi G01 PlasmoDB 720590 GCA_900257145.2_Plasmodium_billcollinsi GCA_900257145.2 False Plasmodium sp. DRC-Itaito apicomplexans P.sp. DRC-Itaito (2020) https://genome.ucsc.edu/h/GCA_900257145.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/257/145/GCA_900257145.2/genes/GCA_900257145.2_Plasmodium_billcollinsi.augustus.gtf.gz +Plasmodium blacklocki G01 GenBank GCA_900097035.1 yes 83 0 14 Plasmodium blacklocki G01 PlasmoDB 880536 GCA_900097035.1_PBLACG01 GCA_900097035.1 False Plasmodium sp. gorilla clade G3 apicomplexans P.sp. gorilla clade G3 (2018) https://genome.ucsc.edu/h/GCA_900097035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/035/GCA_900097035.1/genes/GCA_900097035.1_PBLACG01.augustus.gtf.gz +Plasmodium brasilianum strain Bolivian I INSDC GCA_023973825.1 yes 0 29 14 Plasmodium brasilianum strain Bolivian I PlasmoDB 5824 GCF_023973825.1_ASM2397382v1 GCA_023973825.1 GCF_023973825.1 False Plasmodium brasilianum apicomplexans P.brasilianum (Bolivian I 2022) https://genome.ucsc.edu/h/GCF_023973825.1 +Phytophthora cactorum 10300 INSDC GCA_003287315.1 yes 0 4623 0 Phytophthora cactorum 10300 FungiDB 29920 GCA_003287315.1_Pcac_10300_v1 GCA_003287315.1 False Phytophthora cactorum downy mildews (10300 2018) https://genome.ucsc.edu/h/GCA_003287315.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/287/315/GCA_003287315.1/genes/GCA_003287315.1_Pcac_10300_v1.augustus.gtf.gz +Pneumocystis canis CanA INSDC GCA_017788925.1 yes 0 33 0 Pneumocystis canis CanA FungiDB 2698477 GCA_017788925.1_ASM1778892v1 GCA_017788925.1 False Pneumocystis canis ascomycetes P.canis (CanA 2021) https://genome.ucsc.edu/h/GCA_017788925.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/788/925/GCA_017788925.1/genes/GCA_017788925.1_ASM1778892v1.augustus.gtf.gz +Phytophthora cinnamomi GKB4 INSDC GCA_018691715.1 yes 0 133 0 Phytophthora cinnamomi GKB4 FungiDB 4785 GCA_018691715.1_ASM1869171v1 GCA_018691715.1 GCF_018691715.1 True Phytophthora cinnamomi downy mildews (GKB4 2021) https://genome.ucsc.edu/h/GCA_018691715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/691/715/GCA_018691715.1/genes/GCA_018691715.1_ASM1869171v1.augustus.gtf.gz +Plasmodium coatneyi Hackeri GenBank GCA_001680005.1 yes 0 0 14 Plasmodium coatneyi Hackeri PlasmoDB 208452 GCF_001680005.1_ASM168000v1 GCA_001680005.1 GCF_001680005.1 True Plasmodium coatneyi apicomplexans P.coatneyi (Hackeri 2016) https://genome.ucsc.edu/h/GCF_001680005.1 +Podospora comata strain T mat+ INSDC GCA_900290415.1 yes 0 0 7 Podospora comata strain T mat+ FungiDB 48703 GCA_900290415.1_version1 GCA_900290415.1 False Podospora comata ascomycetes P.comata (T 2018) https://genome.ucsc.edu/h/GCA_900290415.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/290/415/GCA_900290415.1/genes/GCA_900290415.1_version1.augustus.gtf.gz +Paratrypanosoma confusum CUL13 GenBank GCA_002921335.1 yes 1922 266 0 Paratrypanosoma confusum CUL13 TriTrypDB 1470209 GCA_002921335.1_ASM292133v1 GCA_002921335.1 False Paratrypanosoma confusum Paratrypanosoma confusum (CUL13MS 2018) https://genome.ucsc.edu/h/GCA_002921335.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/921/335/GCA_002921335.1/genes/GCA_002921335.1_ASM292133v1.augustus.gtf.gz +Peronospora effusa R13 INSDC GCA_003843895.1 yes 0 784 0 Peronospora effusa R13 FungiDB 542832 GCA_003843895.1_ASM384389v1 GCA_003843895.1 False Peronospora effusa downy mildews (R13 2018) https://genome.ucsc.edu/h/GCA_003843895.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/843/895/GCA_003843895.1/genes/GCA_003843895.1_ASM384389v1.augustus.gtf.gz +Penicillium expansum d1 INSDC GCA_000769735.1 yes 0 270 0 Penicillium expansum d1 FungiDB 27334 GCA_000769735.1_ASM76973v1 GCA_000769735.1 False Penicillium expansum ascomycetes P.expansum (d1 2014) https://genome.ucsc.edu/h/GCA_000769735.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/769/735/GCA_000769735.1/genes/GCA_000769735.1_ASM76973v1.augustus.gtf.gz +Plasmodium falciparum 7G8 2019 INSDC GCA_009761555.1 no 0 20 0 Plasmodium falciparum 7G8 2019 PlasmoDB 5833 GCA_009761555.1_7G8_v1 GCA_009761555.1 False Plasmodium falciparum malaria parasite P. falciparum (7G8 2019) https://genome.ucsc.edu/h/GCA_009761555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/555/GCA_009761555.1/genes/GCA_009761555.1_7G8_v1.augustus.gtf.gz +Plasmodium falciparum CD01 GenBank GCA_900617135.1 no 5 0 14 Plasmodium falciparum CD01 PlasmoDB 5833 GCA_900617135.1_PfCD01-2 GCA_900617135.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900617135.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/617/135/GCA_900617135.1/genes/GCA_900617135.1_PfCD01-2.augustus.gtf.gz +Plasmodium falciparum GA01 GenBank GCA_900632005.1 no 4 0 14 Plasmodium falciparum GA01 PlasmoDB 5833 GCA_900632005.1_PfGA01-3 GCA_900632005.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632005.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/005/GCA_900632005.1/genes/GCA_900632005.1_PfGA01-3.augustus.gtf.gz +Plasmodium falciparum GB4 GenBank GCA_900632035.1 no 10 0 14 Plasmodium falciparum GB4 PlasmoDB 5833 GCA_900632035.1_PfGB4-3 GCA_900632035.1 False Plasmodium falciparum malaria parasite P. falciparum (GB4 2018) https://genome.ucsc.edu/h/GCA_900632035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/035/GCA_900632035.1/genes/GCA_900632035.1_PfGB4-3.augustus.gtf.gz +Plasmodium falciparum GN01 GenBank GCA_900631995.1 no 3 0 14 Plasmodium falciparum GN01 PlasmoDB 5833 GCA_900631995.1_PfGN01-3 GCA_900631995.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900631995.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/995/GCA_900631995.1/genes/GCA_900631995.1_PfGN01-3.augustus.gtf.gz +Plasmodium falciparum IT GenBank GCA_900632055.1 no 11 0 14 Plasmodium falciparum IT PlasmoDB 5833 GCA_900632055.1_PfIT-3 GCA_900632055.1 False Plasmodium falciparum malaria parasite P. falciparum (type strain: I 2018) https://genome.ucsc.edu/h/GCA_900632055.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/055/GCA_900632055.1/genes/GCA_900632055.1_PfIT-3.augustus.gtf.gz +Plasmodium falciparum KE01 GenBank GCA_900631975.1 no 5 0 14 Plasmodium falciparum KE01 PlasmoDB 5833 GCA_900631975.1_PfKE01-3 GCA_900631975.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900631975.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/975/GCA_900631975.1/genes/GCA_900631975.1_PfKE01-3.augustus.gtf.gz +Plasmodium falciparum KH01 GenBank GCA_900632025.1 no 6 0 14 Plasmodium falciparum KH01 PlasmoDB 5833 GCA_900632025.1_PfKH01-3 GCA_900632025.1 False Plasmodium falciparum malaria parasite P. falciparum (KH1 2018) https://genome.ucsc.edu/h/GCA_900632025.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/025/GCA_900632025.1/genes/GCA_900632025.1_PfKH01-3.augustus.gtf.gz +Plasmodium falciparum KH02 GenBank GCA_900632015.1 no 5 0 14 Plasmodium falciparum KH02 PlasmoDB 5833 GCA_900632015.1_PfKH02-3 GCA_900632015.1 False Plasmodium falciparum malaria parasite P. falciparum (KH2 2018) https://genome.ucsc.edu/h/GCA_900632015.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/015/GCA_900632015.1/genes/GCA_900632015.1_PfKH02-3.augustus.gtf.gz +Plasmodium falciparum ML01 GenBank GCA_900632085.1 no 101 0 14 Plasmodium falciparum ML01 PlasmoDB 5833 GCA_900632085.1_PfML01-3 GCA_900632085.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632085.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/085/GCA_900632085.1/genes/GCA_900632085.1_PfML01-3.augustus.gtf.gz +Plasmodium falciparum NF135.C10 INSDC GCA_009761425.1 no 0 21 0 Plasmodium falciparum NF135.C10 PlasmoDB 5833 GCA_009761425.1_NF135.C10_v1 GCA_009761425.1 False Plasmodium falciparum malaria parasite P. falciparum (NF135.C10 2019) https://genome.ucsc.edu/h/GCA_009761425.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/425/GCA_009761425.1/genes/GCA_009761425.1_NF135.C10_v1.augustus.gtf.gz +Plasmodium falciparum NF166 INSDC GCA_009761515.1 no 0 30 0 Plasmodium falciparum NF166 PlasmoDB 5833 GCA_009761515.1_NF166_v1 GCA_009761515.1 False Plasmodium falciparum malaria parasite P. falciparum (NF166 2019) https://genome.ucsc.edu/h/GCA_009761515.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/515/GCA_009761515.1/genes/GCA_009761515.1_NF166_v1.augustus.gtf.gz +Plasmodium falciparum SD01 GenBank GCA_900632095.1 no 4 0 13 Plasmodium falciparum SD01 PlasmoDB 5833 GCA_900632095.1_PfSD01-3 GCA_900632095.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632095.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/095/GCA_900632095.1/genes/GCA_900632095.1_PfSD01-3.augustus.gtf.gz +Plasmodium falciparum SN01 GenBank GCA_900632075.1 no 20 0 14 Plasmodium falciparum SN01 PlasmoDB 5833 GCA_900632075.1_PfSN01-3 GCA_900632075.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632075.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/075/GCA_900632075.1/genes/GCA_900632075.1_PfSN01-3.augustus.gtf.gz +Plasmodium falciparum TG01 GenBank GCA_900632065.1 no 63 0 14 Plasmodium falciparum TG01 PlasmoDB 5833 GCA_900632065.1_PfTG01-3 GCA_900632065.1 False Plasmodium falciparum malaria parasite P. falciparum (2018) https://genome.ucsc.edu/h/GCA_900632065.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/065/GCA_900632065.1/genes/GCA_900632065.1_PfTG01-3.augustus.gtf.gz +Plasmodium fragile strain nilgiri GenBank GCA_000956335.1 yes 0 247 0 Plasmodium fragile strain nilgiri PlasmoDB 5857 GCF_000956335.1_Plas_frag_nilgiri_V1 GCA_000956335.1 GCF_000956335.1 True Plasmodium fragile apicomplexans P.fragile (nilgiri 2015) https://genome.ucsc.edu/h/GCF_000956335.1 +Plasmodium gaboni strain G01 GenBank GCA_900097045.1 no 82 0 14 Plasmodium gaboni strain G01 PlasmoDB 647221 GCA_900097045.1_PGABG01 GCA_900097045.1 False Plasmodium gaboni apicomplexans P.gaboni (2021) https://genome.ucsc.edu/h/GCA_900097045.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/045/GCA_900097045.1/genes/GCA_900097045.1_PGABG01.augustus.gtf.gz +Plasmodium gaboni strain SY75 GenBank GCA_001602025.1 yes 818 0 14 Plasmodium gaboni strain SY75 PlasmoDB 647221 GCF_001602025.1_ASM160202v1 GCA_001602025.1 GCF_001602025.1 True Plasmodium gaboni apicomplexans P.gaboni (SY75 2016) https://genome.ucsc.edu/h/GCF_001602025.1 +Plasmodium gallinaceum 8A GenBank GCA_900005855.1 yes 152 0 0 Plasmodium gallinaceum 8A PlasmoDB 5849 GCF_900005855.1_PGAL8A GCA_900005855.1 GCF_900005855.1 False Plasmodium gallinaceum apicomplexans P.gallinaceum (8A 2016) https://genome.ucsc.edu/h/GCF_900005855.1 +Porcisia hertigi MCOE/PA/1965/C119 INSDC GCA_017918235.1 yes 0 38 36 Porcisia hertigi MCOE/PA/1965/C119 TriTrypDB 2761500 GCA_017918235.1_LU_Pher_1.0 GCA_017918235.1 GCF_017918235.1 True Porcisia hertigi Porcisia hertigi (C119 2021) https://genome.ucsc.edu/h/GCA_017918235.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/235/GCA_017918235.1/genes/GCA_017918235.1_LU_Pher_1.0.augustus.gtf.gz +Pediculus humanus USDA INSDC GCA_000006295.1 yes 0 1882 0 Pediculus humanus USDA VectorBase 121224 GCF_000006295.1_JCVI_LOUSE_1.0 GCA_000006295.1 GCF_000006295.1 True Pediculus humanus corporis human body louse https://genome.ucsc.edu/h/GCF_000006295.1 +Plasmodium knowlesi strain A1H1 INSDC GCA_900162085.1 no 0 0 14 Plasmodium knowlesi strain A1H1 PlasmoDB 5850 GCA_900162085.1_PkA1H1_v1 GCA_900162085.1 False Plasmodium knowlesi apicomplexans P.knowlesi (2017) https://genome.ucsc.edu/h/GCA_900162085.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/162/085/GCA_900162085.1/genes/GCA_900162085.1_PkA1H1_v1.augustus.gtf.gz +Plasmodium knowlesi strain Malayan Strain Pk1 A GenBank GCA_002140095.1 no 0 28 0 Plasmodium knowlesi strain Malayan Strain Pk1 A PlasmoDB 5850 GCA_002140095.1_PKNOHv1 GCA_002140095.1 False Plasmodium knowlesi apicomplexans P.knowlesi (Malayan Strain Pk1 A 2017) https://genome.ucsc.edu/h/GCA_002140095.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/140/095/GCA_002140095.1/genes/GCA_002140095.1_PKNOHv1.augustus.gtf.gz +Pichia kudriavzevii strain CBS5147 INSDC GCA_003054405.1 no 0 0 5 Pichia kudriavzevii strain CBS5147 FungiDB 4909 GCA_003054405.1_ASM305440v1 GCA_003054405.1 False Pichia kudriavzevii budding yeast P.kudriavzevii (CBS5147 2018) https://genome.ucsc.edu/h/GCA_003054405.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/054/405/GCA_003054405.1/genes/GCA_003054405.1_ASM305440v1.augustus.gtf.gz +Pichia kudriavzevii strain CBS573 INSDC GCA_003054445.1 yes 0 0 5 Pichia kudriavzevii strain CBS573 FungiDB 4909 GCF_003054445.1_ASM305444v1 GCA_003054445.1 GCF_003054445.1 False Pichia kudriavzevii budding yeast P.kudriavzevii https://genome.ucsc.edu/h/GCF_003054445.1 +Pneumocystis sp. macacae isolate P2C INSDC GCA_018127085.1 yes 0 3 16 Pneumocystis sp. 'macacae' P2C FungiDB 2698480 GCA_018127085.1_P2C.v1.0 GCA_018127085.1 False Pneumocystis sp. 'macacae' ascomycetes P.sp. 'macacae' (P2C 2021) https://genome.ucsc.edu/h/GCA_018127085.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/018/127/085/GCA_018127085.1/genes/GCA_018127085.1_P2C.v1.0.augustus.gtf.gz +Plasmodium malariae UG01 GenBank GCA_900090045.1 yes 47 0 14 Plasmodium malariae UG01 PlasmoDB 5858 GCF_900090045.1_PmUG01 GCA_900090045.1 GCF_900090045.1 False Plasmodium malariae Plasmodium malariae (2016) https://genome.ucsc.edu/h/GCF_900090045.1 +Pseudoloma neurophilia strain MK1 GenBank GCA_001432165.1 yes 1603 0 0 Pseudoloma neurophilia strain MK1 MicrosporidiaDB 146866 GCA_001432165.1_ASM143216v1 GCA_001432165.1 False Pseudoloma neurophilia microsporidians P.neurophilia (MK1 2015) https://genome.ucsc.edu/h/GCA_001432165.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/432/165/GCA_001432165.1/genes/GCA_001432165.1_ASM143216v1.augustus.gtf.gz +Pneumocystis oryctolagi CS1 INSDC GCA_017311285.1 yes 0 38 0 Pneumocystis oryctolagi CS1 FungiDB 42067 GCA_017311285.1_Pneumocystis_oryctolagi_MERGE_1.1 GCA_017311285.1 False Pneumocystis oryctolagi ascomycetes P.oryctolagi (RABM 2021) https://genome.ucsc.edu/h/GCA_017311285.1 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 +Plasmodium ovale curtisi GH01 GenBank GCA_900090035.2 yes 638 0 14 Plasmodium ovale curtisi GH01 PlasmoDB 36330 GCA_900090035.2_PocGH01 GCA_900090035.2 False Plasmodium ovale malaria parasite P. ovale (2016) https://genome.ucsc.edu/h/GCA_900090035.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/035/GCA_900090035.2/genes/GCA_900090035.2_PocGH01.augustus.gtf.gz +Plasmodium ovale wallikeri PowCR01 INSDC GCA_900090025.2 no 0 763 14 Plasmodium ovale wallikeri PowCR01 PlasmoDB 36330 GCA_900090025.2_PowCR01 GCA_900090025.2 False Plasmodium ovale malaria parasite P. ovale (2016) https://genome.ucsc.edu/h/GCA_900090025.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/025/GCA_900090025.2/genes/GCA_900090025.2_PowCR01.augustus.gtf.gz +Phytophthora palmivora var. palmivora strain sbr112.9 GenBank GCA_002911725.1 yes 24809 0 0 Phytophthora palmivora var. palmivora strain sbr112.9 FungiDB 4796 GCA_002911725.1_ASM291172v1 GCA_002911725.1 False Phytophthora palmivora downy mildews (sbr112.9 2018) https://genome.ucsc.edu/h/GCA_002911725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/911/725/GCA_002911725.1/genes/GCA_002911725.1_ASM291172v1.augustus.gtf.gz +Phlebotomus papatasi Israel INSDC GCA_000262795.1 no 0 106826 0 Phlebotomus papatasi Israel VectorBase 29031 GCA_000262795.1_Ppap_1.0 GCA_000262795.1 False Phlebotomus papatasi fly P.papatasi (2012) https://genome.ucsc.edu/h/GCA_000262795.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/262/795/GCA_000262795.1/genes/GCA_000262795.1_Ppap_1.0.augustus.gtf.gz +Phlebotomus papatasi M1 INSDC GCF_024763615.1 yes 0 640 5 Phlebotomus papatasi M1 VectorBase 29031 GCF_024763615.1_Ppap_2.1 GCA_024763615.2 GCF_024763615.1 False Phlebotomus papatasi fly P.papatasi (M1 2022) https://genome.ucsc.edu/h/GCF_024763615.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/024/763/615/GCF_024763615.1/genes/GCF_024763615.1_Ppap_2.1.ncbiRefSeq.gtf.gz +Pyricularia pennisetigena Br36 INSDC GCA_004337985.1 yes 0 103 5 Pyricularia pennisetigena Br36 FungiDB 1578925 GCF_004337985.1_PpBr36 GCA_004337985.1 GCF_004337985.1 True Pyricularia pennisetigena ascomycetes P.pennisetigena (Br36 2019 refseq) https://genome.ucsc.edu/h/GCF_004337985.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/337/985/GCA_004337985.1/genes/GCA_004337985.1_PpBr36.augustus.gtf.gz +Phytophthora plurivora AV1007 GenBank GCA_002247145.1 yes 1897 0 0 Phytophthora plurivora AV1007 FungiDB 639000 GCA_002247145.1_Plurivora_assembly_v1.fn GCA_002247145.1 False Phytophthora plurivora downy mildews (AV1007 2017) https://genome.ucsc.edu/h/GCA_002247145.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/247/145/GCA_002247145.1/genes/GCA_002247145.1_Plurivora_assembly_v1.fn.augustus.gtf.gz +Plasmodium praefalciparum strain G01 INSDC GCA_900095595.1 yes 0 39 14 Plasmodium praefalciparum strain G01 PlasmoDB 880534 GCA_900095595.1_PPRFG01 GCA_900095595.1 False Plasmodium sp. gorilla clade G1 apicomplexans P.sp. gorilla clade G1 (2018) https://genome.ucsc.edu/h/GCA_900095595.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/095/595/GCA_900095595.1/genes/GCA_900095595.1_PPRFG01.augustus.gtf.gz +Phytophthora ramorum 14567 INSDC GCA_020800235.1 no 0 27 0 Phytophthora ramorum 14567 FungiDB 164328 GCA_020800235.1_ASM2080023v1 GCA_020800235.1 False Phytophthora ramorum sudden oak death agent (14567 PR-15-019 primary hap 2021) https://genome.ucsc.edu/h/GCA_020800235.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/235/GCA_020800235.1/genes/GCA_020800235.1_ASM2080023v1.augustus.gtf.gz +Phytophthora ramorum strain Pr102 GenBank GCA_020800215.1 yes 0 28 0 Phytophthora ramorum strain Pr102 FungiDB 164328 GCA_020800215.1_PR-102_v3_p GCA_020800215.1 GCF_020800215.1 True Phytophthora ramorum sudden oak death agent (Pr-102 primary hap 2021) https://genome.ucsc.edu/h/GCA_020800215.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/215/GCA_020800215.1/genes/GCA_020800215.1_PR-102_v3_p.augustus.gtf.gz +Plasmodium reichenowi CDC GenBank GCA_000723685.1 yes 356 0 14 Plasmodium reichenowi CDC PlasmoDB 5854 GCF_000723685.1_PREICH001 GCA_000723685.1 GCF_000723685.1 True Plasmodium reichenowi apicomplexans P.reichenowi (CDC 2014) https://genome.ucsc.edu/h/GCF_000723685.1 +Plasmodium reichenowi G01 GenBank GCA_900097025.1 no 34 0 14 Plasmodium reichenowi G01 PlasmoDB 5854 GCA_900097025.1_PRG01 GCA_900097025.1 False Plasmodium reichenowi apicomplexans P.reichenowi (2018) https://genome.ucsc.edu/h/GCA_900097025.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/025/GCA_900097025.1/genes/GCA_900097025.1_PRG01.augustus.gtf.gz +Plasmodium relictum SGS1-like GenBank GCA_900005765.1 yes 460 0 14 Plasmodium relictum SGS1-like PlasmoDB 85471 GCF_900005765.1_PRELSG GCA_900005765.1 GCF_900005765.1 False Plasmodium relictum apicomplexans P.relictum (SGS1 2016) https://genome.ucsc.edu/h/GCF_900005765.1 +Puccinia sorghi strain RO10H11247 INSDC GCA_001263375.1 yes 0 15715 0 Puccinia sorghi strain RO10H11247 FungiDB 27349 GCA_001263375.1_ASM126337v1 GCA_001263375.1 False Puccinia sorghi rust P.sorghi (RO10H11247 2015) https://genome.ucsc.edu/h/GCA_001263375.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/263/375/GCA_001263375.1/genes/GCA_001263375.1_ASM126337v1.augustus.gtf.gz +Puccinia striiformis strain 93-210 INSDC GCA_002920065.1 yes 0 492 0 Puccinia striiformis strain 93-210 FungiDB 27350 GCA_002920065.1_ASM292006v1 GCA_002920065.1 False Puccinia striiformis rust P.striiformis (93-210 2018) https://genome.ucsc.edu/h/GCA_002920065.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/065/GCA_002920065.1/genes/GCA_002920065.1_ASM292006v1.augustus.gtf.gz +Puccinia striiformis 93TX-2 INSDC GCA_002920205.1 no 0 561 0 Puccinia striiformis 93TX-2 FungiDB 27350 GCA_002920205.1_ASM292020v1 GCA_002920205.1 False Puccinia striiformis rust P.striiformis (93TX-2 2018) https://genome.ucsc.edu/h/GCA_002920205.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/205/GCA_002920205.1/genes/GCA_002920205.1_ASM292020v1.augustus.gtf.gz +Paecilomyces variotii CBS 101075 INSDC GCF_004022145.1 yes 0 86 0 Paecilomyces variotii CBS 101075 FungiDB 264951 GCF_004022145.1_Paevar1 GCA_004022145.1 GCF_004022145.1 True Paecilomyces variotii ascomycetes B.spectabilis https://genome.ucsc.edu/h/GCF_004022145.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/004/022/145/GCF_004022145.1/genes/GCF_004022145.1_Paevar1.ncbiRefSeq.gtf.gz +Plasmodium vinckei Cameroon EL INSDC GCA_903994265.1 no 0 0 14 Plasmodium vinckei Cameroon EL PlasmoDB 5860 GCA_903994265.1_PVSEL_v1 GCA_903994265.1 False Plasmodium vinckei apicomplexans P.vinckei (2020) https://genome.ucsc.edu/h/GCA_903994265.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/265/GCA_903994265.1/genes/GCA_903994265.1_PVSEL_v1.augustus.gtf.gz +Plasmodium vinckei brucechwatti DA INSDC GCA_903994205.1 no 0 0 14 Plasmodium vinckei brucechwatti DA PlasmoDB 119398 GCA_903994205.1_PVBDA_v1 GCA_903994205.1 False Plasmodium vinckei brucechwatti apicomplexans P.vinckei brucechwatti (2020) https://genome.ucsc.edu/h/GCA_903994205.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/205/GCA_903994205.1/genes/GCA_903994205.1_PVBDA_v1.augustus.gtf.gz +Plasmodium vinckei lentum DE INSDC GCA_903994225.1 no 0 0 14 Plasmodium vinckei lentum DE PlasmoDB 138297 GCA_903994225.1_PVLDE_v1 GCA_903994225.1 False Plasmodium vinckei lentum apicomplexans P.vinckei lentum (2020) https://genome.ucsc.edu/h/GCA_903994225.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/225/GCA_903994225.1/genes/GCA_903994225.1_PVLDE_v1.augustus.gtf.gz +Plasmodium vinckei petteri strain CR GenBank GCA_000524515.1 no 0 66 0 Plasmodium vinckei petteri strain CR PlasmoDB 138298 GCA_000524515.1_Plas_vinc_pett_CR_V1 GCA_000524515.1 False Plasmodium vinckei petteri apicomplexans P.vinckei petteri (CR 2014) https://genome.ucsc.edu/h/GCA_000524515.1 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 +Plasmodium vinckei petteri CR 2020 INSDC GCA_903994235.1 no 0 0 14 Plasmodium vinckei petteri CR 2020 PlasmoDB 138298 GCA_903994235.1_PVPCR_v1 GCA_903994235.1 False Plasmodium vinckei petteri apicomplexans P.vinckei petteri (2020) https://genome.ucsc.edu/h/GCA_903994235.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/235/GCA_903994235.1/genes/GCA_903994235.1_PVPCR_v1.augustus.gtf.gz +Plasmodium vinckei vinckei CY INSDC GCA_900681995.1 yes 0 0 14 Plasmodium vinckei vinckei CY PlasmoDB 54757 GCF_900681995.1_PVVCY_v1 GCA_900681995.1 GCF_900681995.1 True Plasmodium vinckei vinckei apicomplexans P.vinckei vinckei (2019) https://genome.ucsc.edu/h/GCF_900681995.1 +Plasmodium vinckei vinckei strain vinckei GenBank GCA_000709005.1 no 0 49 0 Plasmodium vinckei vinckei strain vinckei PlasmoDB 54757 GCF_000709005.1_Plas_vinc_vinckei_V1 GCA_000709005.1 GCF_000709005.1 True Plasmodium vinckei vinckei apicomplexans P.vinckei (vinckei 2014) https://genome.ucsc.edu/h/GCF_000709005.1 +Plasmodium vivax P01 GenBank GCA_900093555.2 yes 226 0 14 Plasmodium vivax P01 PlasmoDB 5855 GCA_900093555.2_GCA_900093555 GCA_900093555.2 False Plasmodium vivax malaria parasite P. vivax (PvP01 2019) https://genome.ucsc.edu/h/GCA_900093555.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/093/555/GCA_900093555.2/genes/GCA_900093555.2_GCA_900093555.augustus.gtf.gz +Plasmodium vivax PAM INSDC GCA_949152365.1 no 0 28 0 Plasmodium vivax PAM PlasmoDB 5855 GCA_949152365.1_PVPAM GCA_949152365.1 False Plasmodium vivax malaria parasite P. vivax (Pv01-19 2023) https://genome.ucsc.edu/h/GCA_949152365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/949/152/365/GCA_949152365.1/genes/GCA_949152365.1_PVPAM.augustus.gtf.gz +Plasmodium vivax PvSY56 INSDC GCA_003402215.1 no 0 14 0 Plasmodium vivax PvSY56 PlasmoDB 5855 GCA_003402215.1_PvSY56_v1 GCA_003402215.1 False Plasmodium vivax malaria parasite P. vivax (PvSY56 2018) https://genome.ucsc.edu/h/GCA_003402215.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/402/215/GCA_003402215.1/genes/GCA_003402215.1_PvSY56_v1.augustus.gtf.gz +Plasmodium vivax PvW1 INSDC GCA_914969965.1 no 0 19 0 Plasmodium vivax PvW1 PlasmoDB 5855 GCA_914969965.1_5987STDY8548200 GCA_914969965.1 False Plasmodium vivax malaria parasite P. vivax (PvW1 2021) https://genome.ucsc.edu/h/GCA_914969965.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/914/969/965/GCA_914969965.1/genes/GCA_914969965.1_5987STDY8548200.augustus.gtf.gz +Pneumocystis wakefieldiae 2A INSDC GCA_017301755.1 yes 0 0 17 Pneumocystis wakefieldiae 2A FungiDB 38082 GCA_017301755.1_ASM1730175v1 GCA_017301755.1 False Pneumocystis wakefieldiae ascomycetes P.wakefieldiae (2A 2021) https://genome.ucsc.edu/h/GCA_017301755.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/017/301/755/GCA_017301755.1/genes/GCA_017301755.1_ASM1730175v1.augustus.gtf.gz +Plasmodium yoelii yoelii 17X GenBank GCA_900002385.2 yes 0 0 14 Plasmodium yoelii yoelii 17X PlasmoDB 5861 GCF_900002385.2_GCA_900002385 GCA_900002385.2 GCF_900002385.2 False Plasmodium yoelii apicomplexans P.yoelii (17X 2019) https://genome.ucsc.edu/h/GCF_900002385.2 +Plasmodium yoelii yoelii 17XNL 2023 INSDC GCA_020844765.3 no 0 0 14 Plasmodium yoelii yoelii 17XNL 2023 PlasmoDB 73239 GCA_020844765.3_17XNL_PSU_2 GCA_020844765.3 False Plasmodium yoelii yoelii apicomplexans P.yoelii yoelii (17XNL clone 1.1 2023) https://genome.ucsc.edu/h/GCA_020844765.3 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/844/765/GCA_020844765.3/genes/GCA_020844765.3_17XNL_PSU_2.augustus.gtf.gz +Plasmodium yoelii yoelii YM INSDC GCA_900002395.1 no 0 181 14 Plasmodium yoelii yoelii YM PlasmoDB 5861 GCA_900002395.1_PYYM01 GCA_900002395.1 False Plasmodium yoelii apicomplexans P.yoelii (YM 2014) https://genome.ucsc.edu/h/GCA_900002395.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/002/395/GCA_900002395.1/genes/GCA_900002395.1_PYYM01.augustus.gtf.gz +Rhipicephalus annulatus KleinGrass INSDC GCA_013436015.1 yes 0 16339 0 Rhipicephalus annulatus KleinGrass VectorBase 34611 GCA_013436015.1_TxGen_Rann GCA_013436015.1 False Rhipicephalus annulatus mite/tick R.annulatus (Klein Grass 2020) https://genome.ucsc.edu/h/GCA_013436015.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/436/015/GCA_013436015.1/genes/GCA_013436015.1_TxGen_Rann.augustus.gtf.gz +Rhizophagus irregularis A1 (DAOM-664342) GenBank GCA_001593125.1 no 11196 0 0 Rhizophagus irregularis A1 (DAOM-664342) FungiDB 588596 GCA_001593125.1_ASM159312v1 GCA_001593125.1 False Rhizophagus irregularis glomeromycetes (A1 2016) https://genome.ucsc.edu/h/GCA_001593125.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/125/GCA_001593125.1/genes/GCA_001593125.1_ASM159312v1.augustus.gtf.gz +Rhizophagus irregularis C2 INSDC GCA_020716745.1 no 0 0 33 Rhizophagus irregularis C2 FungiDB 588596 GCA_020716745.1_ASM2071674v1 GCA_020716745.1 False Rhizophagus irregularis glomeromycetes (C2 2021) https://genome.ucsc.edu/h/GCA_020716745.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/745/GCA_020716745.1/genes/GCA_020716745.1_ASM2071674v1.augustus.gtf.gz +Raffaelea lauricola RL4 INSDC GCA_014183025.1 yes 0 169 0 Raffaelea lauricola RL4 FungiDB 483707 GCA_014183025.1_ASM1418302v1 GCA_014183025.1 False Harringtonia lauricola ascomycetes H.lauricola (RL4 2020) https://genome.ucsc.edu/h/GCA_014183025.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/183/025/GCA_014183025.1/genes/GCA_014183025.1_ASM1418302v1.augustus.gtf.gz +Rickenella mellea Ricmel1 INSDC GCA_004355085.1 yes 0 848 0 Rickenella mellea Ricmel1 FungiDB 50990 GCA_004355085.1_Ricmel1 GCA_004355085.1 False Rickenella mellea basidiomycetes R.mellea (SZMC22713 2019) https://genome.ucsc.edu/h/GCA_004355085.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/355/085/GCA_004355085.1/genes/GCA_004355085.1_Ricmel1.augustus.gtf.gz +Rhipicephalus microplus Rmic-2018 INSDC GCA_013339725.1 yes 7036 0 11 Rhipicephalus microplus Rmic-2018 VectorBase 6941 GCF_013339725.1_ASM1333972v1 GCA_013339725.1 GCF_013339725.1 False Rhipicephalus microplus southern cattle tick (Rmic-2018 2020 refseq) https://genome.ucsc.edu/h/GCF_013339725.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/725/GCA_013339725.1/genes/GCA_013339725.1_BIME_Rmic_1.3.augustus.gtf.gz +Rhizopus microsporus var. microsporus ATCC 52814 INSDC GCA_002083745.1 yes 0 560 0 Rhizopus microsporus var. microsporus ATCC 52814 FungiDB 86635 GCA_002083745.1_Rhimi_ATCC52814_1 GCA_002083745.1 False Rhizopus microsporus var. microsporus fungi R.microsporus var. microsporus (ATCC 52814 2017) https://genome.ucsc.edu/h/GCA_002083745.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/083/745/GCA_002083745.1/genes/GCA_002083745.1_Rhimi_ATCC52814_1.augustus.gtf.gz +Rattus norvegicus BN/NHsdMcwi INSDC GCA_015227675.2 yes 0 153 22 Rattus norvegicus BN/NHsdMcwi HostDB 10116 GCF_015227675.2_mRatBN7.2 GCA_015227675.2 GCF_015227675.2 True Rattus norvegicus Norway rat BN7.2 https://genome.ucsc.edu/h/GCF_015227675.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/015/227/675/GCA_015227675.2/genes/GCA_015227675.2_mRatBN7.2.augustus.gtf.gz +Rhodnius prolixus CDC INSDC GCA_000181055.3 yes 0 16537 0 Rhodnius prolixus CDC VectorBase 13249 GCA_000181055.3_Rhodnius_prolixus-3.0.3 GCA_000181055.3 False Rhodnius prolixus bugs R.prolixus (2015) https://genome.ucsc.edu/h/GCA_000181055.3 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 +Rhipicephalus sanguineus Rsan-2018 INSDC GCF_013339695.2 yes 0 2316 11 Rhipicephalus sanguineus Rsan-2018 VectorBase 34632 GCF_013339695.2_BIME_Rsan_1.4 GCA_013339695.2 GCF_013339695.2 False Rhipicephalus sanguineus brown dog tick (v1.4 Rsan-2018 2022) https://genome.ucsc.edu/h/GCF_013339695.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/013/339/695/GCF_013339695.2/genes/GCF_013339695.2_BIME_Rsan_1.4.ncbiRefSeq.gtf.gz +Scedosporium apiospermum IHEM 14462 GenBank GCA_000732125.1 yes 176 0 0 Scedosporium apiospermum IHEM 14462 FungiDB 563466 GCF_000732125.1_ScApio1.0 GCA_000732125.1 GCF_000732125.1 True Scedosporium apiospermum ascomycetes S.apiospermum https://genome.ucsc.edu/h/GCF_000732125.1 +Stomoxys calcitrans USDA INSDC GCA_001015335.1 yes 0 12042 0 Stomoxys calcitrans USDA VectorBase 35570 GCF_001015335.1_Stomoxys_calcitrans-1.0.1 GCA_001015335.1 GCF_001015335.1 True Stomoxys calcitrans stable fly (8C7A2A5H3J4 2015 rewfseq) https://genome.ucsc.edu/h/GCF_001015335.1 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 +Sabethes cyaneus ScyaPA1 INSDC GCF_943734655.1 yes 0 5 3 Sabethes cyaneus ScyaPA1 VectorBase 53552 GCF_943734655.1_idSabCyanKW18_F2 GCA_943734655.2 GCF_943734655.1 False Sabethes cyaneus mosquito S.cyaneus (primary hap 2022) https://genome.ucsc.edu/h/GCF_943734655.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/655/GCF_943734655.1/genes/GCF_943734655.1_idSabCyanKW18_F2.ncbiRefSeq.gtf.gz +Synchytrium endobioticum MB42 INSDC GCA_006535955.1 yes 0 786 0 Synchytrium endobioticum MB42 FungiDB 286115 GCA_006535955.1_ASM653595v1 GCA_006535955.1 False Synchytrium endobioticum chytrids & allies (MB42 2019) https://genome.ucsc.edu/h/GCA_006535955.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/006/535/955/GCA_006535955.1/genes/GCA_006535955.1_ASM653595v1.augustus.gtf.gz +Saccharomycodes ludwigii UTAD17 INSDC GCA_900491785.1 yes 0 1360 0 Saccharomycodes ludwigii UTAD17 FungiDB 36035 GCA_900491785.1_S_ludwigii_v1 GCA_900491785.1 False Saccharomycodes ludwigii budding yeast S.ludwigii (UTAD17 2018) https://genome.ucsc.edu/h/GCA_900491785.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/491/785/GCA_900491785.1/genes/GCA_900491785.1_S_ludwigii_v1.augustus.gtf.gz +Sarcocystis neurona SN3 GenBank GCA_000727475.1 yes 701 171 0 Sarcocystis neurona SN3 ToxoDB 42890 GCA_000727475.1_ASM72747v1 GCA_000727475.1 False Sarcocystis neurona apicomplexans S.neurona (SN3 2014) https://genome.ucsc.edu/h/GCA_000727475.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/727/475/GCA_000727475.1/genes/GCA_000727475.1_ASM72747v1.augustus.gtf.gz +Sarcocystis neurona SO SN1 GenBank GCA_000875885.1 no 0 3066 0 Sarcocystis neurona SO SN1 ToxoDB 42890 GCA_000875885.1_ASM87588v1 GCA_000875885.1 False Sarcocystis neurona apicomplexans S.neurona (SN1 2015) https://genome.ucsc.edu/h/GCA_000875885.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/875/885/GCA_000875885.1/genes/GCA_000875885.1_ASM87588v1.augustus.gtf.gz +Saccharomyces paradoxus CBS432 INSDC GCA_002079055.1 yes 0 0 16 Saccharomyces paradoxus CBS432 FungiDB 27291 GCF_002079055.1_ASM207905v1 GCA_002079055.1 GCF_002079055.1 False Saccharomyces paradoxus budding yeast S.paradoxus https://genome.ucsc.edu/h/GCF_002079055.1 +Sarcoptes scabiei Arlian INSDC GCA_000828355.1 yes 0 18859 0 Sarcoptes scabiei Arlian VectorBase 52283 GCA_000828355.1_SarSca1.0 GCA_000828355.1 False Sarcoptes scabiei mite/tick S.scabiei (Arlian Lab 2015) https://genome.ucsc.edu/h/GCA_000828355.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/828/355/GCA_000828355.1/genes/GCA_000828355.1_SarSca1.0.augustus.gtf.gz +Trichoderma atroviride strain JCM 9410 INSDC GCA_001599035.1 yes 0 23 0 Trichoderma atroviride strain JCM 9410 FungiDB 63577 GCA_001599035.1_JCM_9410_assembly_v001 GCA_001599035.1 False Trichoderma atroviride ascomycetes T.atroviride (JCM 9410 2016) https://genome.ucsc.edu/h/GCA_001599035.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/035/GCA_001599035.1/genes/GCA_001599035.1_JCM_9410_assembly_v001.augustus.gtf.gz +Trypanosoma brucei EATRO1125 INSDC GCA_019096175.1 no 685 0 11 Trypanosoma brucei EATRO1125 TriTrypDB 5691 GCA_019096175.1_IZB_EATRO1125_Draft_genome_1.0 GCA_019096175.1 False Trypanosoma brucei Trypanosoma brucei (EATRO1125 2021) https://genome.ucsc.edu/h/GCA_019096175.1 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 +Trypanosoma brucei Lister strain 427 2018 GenBank GCA_900497135.1 no 272 0 44 Trypanosoma brucei Lister strain 427 2018 TriTrypDB 5702 GCA_900497135.1_HGAP3_Tb427v9 GCA_900497135.1 False Trypanosoma brucei brucei Trypanosoma brucei brucei (2018) https://genome.ucsc.edu/h/GCA_900497135.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/497/135/GCA_900497135.1/genes/GCA_900497135.1_HGAP3_Tb427v9.augustus.gtf.gz +Trichomonascus ciferrii CBS 4856 INSDC GCA_008704605.1 yes 0 583 0 Trichomonascus ciferrii CBS 4856 FungiDB 44093 GCA_008704605.1_ASM870460v1 GCA_008704605.1 False Trichomonascus ciferrii budding yeast T.ciferrii (CBS 4856 2019) https://genome.ucsc.edu/h/GCA_008704605.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/008/704/605/GCA_008704605.1/genes/GCA_008704605.1_ASM870460v1.augustus.gtf.gz +Trypanosoma congolense IL3000 2019 GenBank GCA_003013265.1 no 364 0 11 Trypanosoma congolense IL3000 2019 TriTrypDB 1068625 GCA_003013265.1_ASM301326v1 GCA_003013265.1 False Trypanosoma congolense IL3000 Trypanosoma congolense (IL3000 2018 kinetoplastids) https://genome.ucsc.edu/h/GCA_003013265.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/013/265/GCA_003013265.1/genes/GCA_003013265.1_ASM301326v1.augustus.gtf.gz +Thelohania contejeani T1 INSDC GCA_014805555.1 yes 0 1391 0 Thelohania contejeani T1 MicrosporidiaDB 164912 GCA_014805555.1_ASM1480555v1 GCA_014805555.1 False Astathelohania contejeani microsporidians A.contejeani (T1 2020) https://genome.ucsc.edu/h/GCA_014805555.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/555/GCA_014805555.1/genes/GCA_014805555.1_ASM1480555v1.augustus.gtf.gz +Trypanosoma congolense Tc1/148 INSDC GCA_002287245.1 no 0 536 0 Trypanosoma congolense Tc1/148 TriTrypDB 5692 GCA_002287245.1_ASM228724v1 GCA_002287245.1 False Trypanosoma congolense Trypanosoma congolense (Tc1/148 2017) https://genome.ucsc.edu/h/GCA_002287245.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/287/245/GCA_002287245.1/genes/GCA_002287245.1_ASM228724v1.augustus.gtf.gz +Trypanosoma cruzi strain 231 GenBank GCA_900252365.1 no 8469 0 0 Trypanosoma cruzi strain 231 TriTrypDB 5693 GCA_900252365.1_TcIII_231rod GCA_900252365.1 False Trypanosoma cruzi Trypanosoma cruzi (231 2018) https://genome.ucsc.edu/h/GCA_900252365.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/252/365/GCA_900252365.1/genes/GCA_900252365.1_TcIII_231rod.augustus.gtf.gz +Trypanosoma cruzi Berenice INSDC GCA_013358655.1 no 0 923 0 Trypanosoma cruzi Berenice TriTrypDB 5693 GCA_013358655.1_ASM1335865v1 GCA_013358655.1 False Trypanosoma cruzi Trypanosoma cruzi (Berenice 2020) https://genome.ucsc.edu/h/GCA_013358655.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/655/GCA_013358655.1/genes/GCA_013358655.1_ASM1335865v1.augustus.gtf.gz +Trypanosoma cruzi Brazil A4 GenBank GCA_015033625.1 no 359 0 43 Trypanosoma cruzi Brazil A4 TriTrypDB 5693 GCA_015033625.1_ASM1503362v1 GCA_015033625.1 False Trypanosoma cruzi Trypanosoma cruzi (Brazil clone A4 2020) https://genome.ucsc.edu/h/GCA_015033625.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/625/GCA_015033625.1/genes/GCA_015033625.1_ASM1503362v1.augustus.gtf.gz +Trypanosoma cruzi Bug2148 GenBank GCA_002749415.1 no 929 0 0 Trypanosoma cruzi Bug2148 TriTrypDB 5693 GCA_002749415.1_ASM274941v1 GCA_002749415.1 False Trypanosoma cruzi Trypanosoma cruzi (Bug2148 2017) https://genome.ucsc.edu/h/GCA_002749415.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/415/GCA_002749415.1/genes/GCA_002749415.1_ASM274941v1.augustus.gtf.gz +Trypanosoma cruzi strain CL INSDC GCA_003719155.1 no 0 7764 0 Trypanosoma cruzi strain CL TriTrypDB 5693 GCA_003719155.1_ASM371915v1 GCA_003719155.1 False Trypanosoma cruzi Trypanosoma cruzi (CL 2018) https://genome.ucsc.edu/h/GCA_003719155.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/155/GCA_003719155.1/genes/GCA_003719155.1_ASM371915v1.augustus.gtf.gz +Trypanosoma cruzi Dm28c 2017 GenBank GCA_002219105.2 no 0 1029 0 Trypanosoma cruzi Dm28c 2017 TriTrypDB 85057 GCA_002219105.2_TcruziDm28cPB1 GCA_002219105.2 False Trypanosoma cruzi cruzi Trypanosoma cruzi cruzi (Dm28c 2017) https://genome.ucsc.edu/h/GCA_002219105.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/105/GCA_002219105.2/genes/GCA_002219105.2_TcruziDm28cPB1.augustus.gtf.gz +Trypanosoma cruzi Dm28c 2018 GenBank GCA_003177105.1 no 636 0 0 Trypanosoma cruzi Dm28c 2018 TriTrypDB 5693 GCA_003177105.1_ASM317710v1 GCA_003177105.1 False Trypanosoma cruzi Trypanosoma cruzi (Dm28c 2018) https://genome.ucsc.edu/h/GCA_003177105.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/105/GCA_003177105.1/genes/GCA_003177105.1_ASM317710v1.augustus.gtf.gz +Trypanosoma cruzi strain G INSDC GCA_003719455.1 no 0 1450 0 Trypanosoma cruzi strain G TriTrypDB 5693 GCA_003719455.1_ASM371945v1 GCA_003719455.1 False Trypanosoma cruzi Trypanosoma cruzi (G 2018) https://genome.ucsc.edu/h/GCA_003719455.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/455/GCA_003719455.1/genes/GCA_003719455.1_ASM371945v1.augustus.gtf.gz +Trypanosoma cruzi strain S11 INSDC GCA_003594385.1 no 0 7855 0 Trypanosoma cruzi strain S11 TriTrypDB 5693 GCA_003594385.1_ASM359438v1 GCA_003594385.1 False Trypanosoma cruzi Trypanosoma cruzi (S11 2018) https://genome.ucsc.edu/h/GCA_003594385.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/385/GCA_003594385.1/genes/GCA_003594385.1_ASM359438v1.augustus.gtf.gz +Trypanosoma cruzi strain S15 INSDC GCA_003594585.1 no 0 9197 0 Trypanosoma cruzi strain S15 TriTrypDB 5693 GCA_003594585.1_ASM359458v1 GCA_003594585.1 False Trypanosoma cruzi Trypanosoma cruzi (S15 2018) https://genome.ucsc.edu/h/GCA_003594585.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/585/GCA_003594585.1/genes/GCA_003594585.1_ASM359458v1.augustus.gtf.gz +Trypanosoma cruzi strain S154a INSDC GCA_003594715.1 no 0 6946 0 Trypanosoma cruzi strain S154a TriTrypDB 5693 GCA_003594715.1_ASM359471v1 GCA_003594715.1 False Trypanosoma cruzi Trypanosoma cruzi (S154a 2018) https://genome.ucsc.edu/h/GCA_003594715.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/715/GCA_003594715.1/genes/GCA_003594715.1_ASM359471v1.augustus.gtf.gz +Trypanosoma cruzi strain S162a INSDC GCA_003594605.1 no 0 8588 0 Trypanosoma cruzi strain S162a TriTrypDB 5693 GCA_003594605.1_ASM359460v1 GCA_003594605.1 False Trypanosoma cruzi Trypanosoma cruzi (S162a 2018) https://genome.ucsc.edu/h/GCA_003594605.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/605/GCA_003594605.1/genes/GCA_003594605.1_ASM359460v1.augustus.gtf.gz +Trypanosoma cruzi strain S23b INSDC GCA_003594425.1 no 0 7145 0 Trypanosoma cruzi strain S23b TriTrypDB 5693 GCA_003594425.1_ASM359442v1 GCA_003594425.1 False Trypanosoma cruzi Trypanosoma cruzi (S23b 2018) https://genome.ucsc.edu/h/GCA_003594425.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/425/GCA_003594425.1/genes/GCA_003594425.1_ASM359442v1.augustus.gtf.gz +Trypanosoma cruzi strain S44a INSDC GCA_003594705.1 no 0 4971 0 Trypanosoma cruzi strain S44a TriTrypDB 5693 GCA_003594705.1_ASM359470v1 GCA_003594705.1 False Trypanosoma cruzi Trypanosoma cruzi (S44a 2018) https://genome.ucsc.edu/h/GCA_003594705.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/705/GCA_003594705.1/genes/GCA_003594705.1_ASM359470v1.augustus.gtf.gz +Trypanosoma cruzi strain S92a INSDC GCA_003594445.1 no 0 7134 0 Trypanosoma cruzi strain S92a TriTrypDB 5693 GCA_003594445.1_ASM359444v1 GCA_003594445.1 False Trypanosoma cruzi Trypanosoma cruzi (S92a 2018) https://genome.ucsc.edu/h/GCA_003594445.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/445/GCA_003594445.1/genes/GCA_003594445.1_ASM359444v1.augustus.gtf.gz +Trypanosoma cruzi Sylvio X10/1-2012 GenBank GCA_000188675.2 no 27019 0 0 Trypanosoma cruzi Sylvio X10/1-2012 TriTrypDB 5693 GCA_000188675.2_Tc_SX10_v2.0 GCA_000188675.2 False Trypanosoma cruzi Trypanosoma cruzi (Sylvio X10/1 2012) https://genome.ucsc.edu/h/GCA_000188675.2 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/188/675/GCA_000188675.2/genes/GCA_000188675.2_Tc_SX10_v2.0.augustus.gtf.gz +Trypanosoma cruzi TCC GenBank GCA_003177095.1 no 1236 0 0 Trypanosoma cruzi TCC TriTrypDB 5693 GCA_003177095.1_TCC_diploid_1.0 GCA_003177095.1 False Trypanosoma cruzi Trypanosoma cruzi (TCC 2018) https://genome.ucsc.edu/h/GCA_003177095.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/095/GCA_003177095.1/genes/GCA_003177095.1_TCC_diploid_1.0.augustus.gtf.gz +Trypanosoma cruzi strain Y GenBank GCA_002749425.1 no 9821 0 0 Trypanosoma cruzi strain Y TriTrypDB 5693 GCA_002749425.1_ASM274942v1 GCA_002749425.1 False Trypanosoma cruzi Trypanosoma cruzi (Y 2017) https://genome.ucsc.edu/h/GCA_002749425.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/425/GCA_002749425.1/genes/GCA_002749425.1_ASM274942v1.augustus.gtf.gz +Trypanosoma cruzi Y C6 GenBank GCA_015033655.1 no 226 0 40 Trypanosoma cruzi Y C6 TriTrypDB 5693 GCA_015033655.1_ASM1503365v1 GCA_015033655.1 False Trypanosoma cruzi Trypanosoma cruzi (Y clone C6 2020) https://genome.ucsc.edu/h/GCA_015033655.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/655/GCA_015033655.1/genes/GCA_015033655.1_ASM1503365v1.augustus.gtf.gz +Trypanosoma cruzi strain Ycl2 INSDC GCA_003594485.1 no 0 6884 0 Trypanosoma cruzi strain Ycl2 TriTrypDB 5693 GCA_003594485.1_ASM359448v1 GCA_003594485.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl2 2018) https://genome.ucsc.edu/h/GCA_003594485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/485/GCA_003594485.1/genes/GCA_003594485.1_ASM359448v1.augustus.gtf.gz +Trypanosoma cruzi strain Ycl4 INSDC GCA_003594405.1 no 0 6664 0 Trypanosoma cruzi strain Ycl4 TriTrypDB 5693 GCA_003594405.1_ASM359440v1 GCA_003594405.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl4 2018) https://genome.ucsc.edu/h/GCA_003594405.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/405/GCA_003594405.1/genes/GCA_003594405.1_ASM359440v1.augustus.gtf.gz +Trypanosoma cruzi strain Ycl6 INSDC GCA_003594465.1 no 0 6967 0 Trypanosoma cruzi strain Ycl6 TriTrypDB 5693 GCA_003594465.1_ASM359446v1 GCA_003594465.1 False Trypanosoma cruzi Trypanosoma cruzi (Ycl6 2018) https://genome.ucsc.edu/h/GCA_003594465.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/465/GCA_003594465.1/genes/GCA_003594465.1_ASM359446v1.augustus.gtf.gz +Trypanosoma cruzi marinkellei strain B7 GenBank GCA_000300495.1 no 0 16783 0 Trypanosoma cruzi marinkellei strain B7 TriTrypDB 85056 GCA_000300495.1_ASM30049v1 GCA_000300495.1 False Trypanosoma cruzi marinkellei Trypanosoma cruzi marinkellei (B7 2012) https://genome.ucsc.edu/h/GCA_000300495.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/495/GCA_000300495.1/genes/GCA_000300495.1_ASM30049v1.augustus.gtf.gz +Trypanosoma equiperdum OVI INSDC GCA_001457755.2 yes 0 2026 0 Trypanosoma equiperdum OVI TriTrypDB 5694 GCF_001457755.1_Trypanosoma_equiperdum_OVI_V2 GCA_001457755.2 GCF_001457755.1 True Trypanosoma equiperdum Trypanosoma equiperdum (OVI 2016) https://genome.ucsc.edu/h/GCF_001457755.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/457/755/GCA_001457755.2/genes/GCA_001457755.2_Trypanosoma_equiperdum_OVI_V2.augustus.gtf.gz +Trypanosoma evansi strain STIB 805 GenBank GCA_917563935.1 yes 0 0 13 Trypanosoma evansi strain STIB 805 TriTrypDB 5697 GCA_917563935.1_Assembly1 GCA_917563935.1 False Trypanosoma evansi Trypanosoma evansi (2021) https://genome.ucsc.edu/h/GCA_917563935.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/935/GCA_917563935.1/genes/GCA_917563935.1_Assembly1.augustus.gtf.gz +Toxoplasma gondii strain ME49xCTG F1 S27 INSDC GCA_014898695.1 no 0 48 0 Toxoplasma gondii strain ME49xCTG F1 S27 ToxoDB 5811 GCA_014898695.1_ASM1489869v1 GCA_014898695.1 False Toxoplasma gondii apicomplexans T.gondii (ME49xCTG S27 2020) https://genome.ucsc.edu/h/GCA_014898695.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/014/898/695/GCA_014898695.1/genes/GCA_014898695.1_ASM1489869v1.augustus.gtf.gz +Toxoplasma gondii RH 2016 GenBank GCA_001593265.1 no 441 0 0 Toxoplasma gondii RH 2016 ToxoDB 383379 GCA_001593265.1_ToxRH1.0 GCA_001593265.1 False Toxoplasma gondii RH apicomplexans T.gondii (RH 2016) https://genome.ucsc.edu/h/GCA_001593265.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/265/GCA_001593265.1/genes/GCA_001593265.1_ToxRH1.0.augustus.gtf.gz +Trypanosoma grayi ANR4 GenBank GCA_000691245.1 yes 2871 0 0 Trypanosoma grayi ANR4 TriTrypDB 71804 GCF_000691245.1_Tgr_V1 GCA_000691245.1 GCF_000691245.1 True Trypanosoma grayi Trypanosoma grayi (ANR4 2014 kinetoplastids) https://genome.ucsc.edu/h/GCF_000691245.1 +Trachipleistophora hominis Unknown strain GenBank GCA_000316135.1 yes 0 310 0 Trachipleistophora hominis Unknown strain MicrosporidiaDB 72359 GCA_000316135.1_ASM31613v1 GCA_000316135.1 False Trachipleistophora hominis microsporidians T.hominis (2013) https://genome.ucsc.edu/h/GCA_000316135.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/000/316/135/GCA_000316135.1/genes/GCA_000316135.1_ASM31613v1.augustus.gtf.gz +Triatoma infestans isolate FIOC_28 INSDC GCA_011037195.1 yes 0 14951 0 Triatoma infestans isolate FIOC_28 VectorBase 30076 GCA_011037195.1_UVM_Tinf_1.0 GCA_011037195.1 False Triatoma infestans bugs T.infestans (FIOC_28 2020) https://genome.ucsc.edu/h/GCA_011037195.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/011/037/195/GCA_011037195.1/genes/GCA_011037195.1_UVM_Tinf_1.0.augustus.gtf.gz +Talaromyces marneffei TM4 INSDC GCA_003971505.1 no 0 0 8 Talaromyces marneffei TM4 FungiDB 37727 GCA_003971505.1_ASM397150v1 GCA_003971505.1 False Talaromyces marneffei ascomycetes T.marneffei (TM4 2018) https://genome.ucsc.edu/h/GCA_003971505.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/003/971/505/GCA_003971505.1/genes/GCA_003971505.1_ASM397150v1.augustus.gtf.gz +Trypanosoma melophagium St. Kilda INSDC GCA_022059095.1 yes 0 64 0 Trypanosoma melophagium St. Kilda TriTrypDB 715481 GCF_022059095.1_T.mel.1 GCA_022059095.1 GCF_022059095.1 True Trypanosoma melophagium Trypanosoma melophagium (St. Kilda St. Kilda 2022 refseq) https://genome.ucsc.edu/h/GCF_022059095.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/059/095/GCA_022059095.1/genes/GCA_022059095.1_T.mel.1.augustus.gtf.gz +Trichophyton mentagrophytes TIMM 2789 INSDC GCA_003118255.1 yes 0 16543 0 Trichophyton mentagrophytes TIMM 2789 FungiDB 523103 GCA_003118255.1_ABySS_70bp_45k_152cov_v1 GCA_003118255.1 False Trichophyton mentagrophytes ascomycetes T.mentagrophytes (TIMM 2789 2018) https://genome.ucsc.edu/h/GCA_003118255.1 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 +Tubulinosema ratisbonensis Franzen INSDC GCA_004000155.1 yes 0 952 0 Tubulinosema ratisbonensis Franzen MicrosporidiaDB 291195 GCA_004000155.1_ASM400015v1 GCA_004000155.1 False Tubulinosema ratisbonensis microsporidians T.ratisbonensis (Franzen 2019) https://genome.ucsc.edu/h/GCA_004000155.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/155/GCA_004000155.1/genes/GCA_004000155.1_ASM400015v1.augustus.gtf.gz +Trichoderma reesei QM6a 2017 INSDC GCA_002006585.1 no 0 0 7 Trichoderma reesei QM6a 2017 FungiDB 431241 GCA_002006585.1_ASM200658v1 GCA_002006585.1 False Trichoderma reesei QM6a ascomycetes T.reesei (QM6a 2017) https://genome.ucsc.edu/h/GCA_002006585.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/002/006/585/GCA_002006585.1/genes/GCA_002006585.1_ASM200658v1.augustus.gtf.gz +Trichomonas tenax strain NIH4 ATCC 30207 INSDC GCA_900231805.1 yes 0 4161 0 Trichomonas tenax strain NIH4 ATCC 30207 TrichDB 43075 GCA_900231805.1_PRJEB22701 GCA_900231805.1 False Trichomonas tenax trichomonads (NIH4 ATCC 30207 2019) https://genome.ucsc.edu/h/GCA_900231805.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/900/231/805/GCA_900231805.1/genes/GCA_900231805.1_PRJEB22701.augustus.gtf.gz +Trypanosoma theileri isolate Edinburgh GenBank GCA_002087225.1 yes 253 0 0 Trypanosoma theileri isolate Edinburgh TriTrypDB 67003 GCF_002087225.1_Tth_v3 GCA_002087225.1 GCF_002087225.1 True Trypanosoma theileri Trypanosoma theileri (Edinburgh 2017 kinetoplastids) https://genome.ucsc.edu/h/GCF_002087225.1 +Trichomonas vaginalis G3 2022 INSDC GCA_026262505.1 yes 0 212 6 Trichomonas vaginalis G3 2022 TrichDB 412133 GCF_026262505.1_NYU_TvagG3_2 GCA_026262505.1 GCF_026262505.1 True Trichomonas vaginalis G3 Trichomonas vaginalis (G3 2022) https://genome.ucsc.edu/h/GCF_026262505.1 +Verruconis gallopava strain CBS 43764 INSDC GCA_000836295.1 yes 0 367 0 Verruconis gallopava strain CBS 43764 FungiDB 253628 GCF_000836295.1_O_gall_CBS43764 GCA_000836295.1 GCF_000836295.1 True Verruconis gallopava ascomycetes V.gallopava https://genome.ucsc.edu/h/GCF_000836295.1 +Xylaria arbuscula CBS 124340 INSDC GCA_022385695.1 yes 0 89 0 Xylaria arbuscula CBS 124340 FungiDB 114810 GCA_022385695.1_Xylarb124340_1 GCA_022385695.1 False Xylaria arbuscula ascomycetes X.arbuscula (CBS 124340 2022) https://genome.ucsc.edu/h/GCA_022385695.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/022/385/695/GCA_022385695.1/genes/GCA_022385695.1_Xylarb124340_1.augustus.gtf.gz +Yarrowia lipolytica CLIB89 (W29) GenBank GCA_001761485.1 no 0 0 6 Yarrowia lipolytica CLIB89 (W29) FungiDB 4952 GCA_001761485.1_ASM176148v1 GCA_001761485.1 GCF_001761485.1 False Yarrowia lipolytica budding yeast Y.lipolytica (CLIB89W29 2016) https://genome.ucsc.edu/h/GCA_001761485.1 https://hgdownload.soe.ucsc.edu/hubs/GCA/001/761/485/GCA_001761485.1/genes/GCA_001761485.1_ASM176148v1.augustus.gtf.gz From f3a47dd0566e34aee46a442b58cc4efd93b9fc7f Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Tue, 29 Oct 2024 22:36:11 +0100 Subject: [PATCH 14/15] feat: chip-seq workflow with fasta input (#137) --- app/utils/galaxy-api.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 5236239..4063b9d 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -54,6 +54,16 @@ export async function getWorkflowLandingUrl( return `${WORKFLOW_LANDING_URL_PREFIX}${encodeURIComponent(id)}?public=true`; } +function buildFastaUrl(identifier: string): string { + const baseUrl = "https://hgdownload.soe.ucsc.edu/hubs/"; + const parts = identifier.split("_"); + const formattedPath = `${parts[0]}/${parts[1].slice(0, 3)}/${parts[1].slice( + 3, + 6 + )}/${parts[1].slice(6, 9)}/${identifier}/${identifier}.fa.gz`; + return `${baseUrl}${formattedPath}`; +} + /** * Get the appropriate `request_state` object for the given workflow ID and reference genome. * @param workflowId - Workflow ID. @@ -69,6 +79,11 @@ function getWorkflowLandingsRequestState( if (workflowId === WORKFLOW_ID.VARIANT_CALLING && geneModelUrl) { return { "Annotation GTF": { ext: "gtf.gz", src: "url", url: geneModelUrl }, + "Genome fasta": { + ext: "fasta.gz", + src: "url", + url: buildFastaUrl(referenceGenome), + }, }; } return { reference_genome: referenceGenome }; From bdcc97c883cfcd8308727844c09af83c7d225a53 Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Tue, 29 Oct 2024 22:38:42 +0100 Subject: [PATCH 15/15] feat: move variant calling out of coming soon (#137) --- .../entity/genome/analysisMethodMainColumn.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts index 9015d1e..5144915 100644 --- a/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts +++ b/site-config/brc-analytics/local/entity/genome/analysisMethodMainColumn.ts @@ -21,6 +21,15 @@ export const mainColumn: ComponentsConfig = [ variant: "banner", }, }, + { + component: C.AnalysisMethod, + viewBuilder: (r) => + V.buildGenomeAnalysisMethod(r, { + analysisMethod: ANALYSIS_METHOD.VARIANT_CALLING, + text: MDX.VariantCalling({}), + title: "Variant calling", + }), + }, { component: C.AnalysisMethod, viewBuilder: (r) => @@ -54,15 +63,6 @@ export const mainColumn: ComponentsConfig = [ variant: "banner", }, }, - { - component: C.AnalysisMethod, - viewBuilder: (r) => - V.buildGenomeAnalysisMethod(r, { - analysisMethod: ANALYSIS_METHOD.VARIANT_CALLING, - text: MDX.VariantCalling({}), - title: "Variant calling", - }), - }, { component: C.AnalysisMethod, viewBuilder: (r) =>