From 9f6514b702297c84fbfb105aca15632fcc7333af Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sat, 16 Nov 2024 15:54:18 -0800 Subject: [PATCH 01/19] feat: update genome list to use data from ncbi (#177) --- .../brc-analytics-catalog/common/entities.ts | 21 +- .../brc-analytics-catalog/common/utils.ts | 4 +- .../common/viewModelBuilders.ts | 258 +- files/build-catalog.ts | 44 +- files/entities.ts | 31 +- files/out/genomes.json | 9916 +---------------- site-config/brc-analytics/category.ts | 36 +- .../local/index/genomeEntityConfig.ts | 138 +- 8 files changed, 634 insertions(+), 9814 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 6ec031a..8e69429 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -10,17 +10,20 @@ export enum ANALYSIS_METHOD { export type BRCCatalog = BRCDataCatalogGenome; export interface BRCDataCatalogGenome { - chromosomes: number; - contigs: number; - geneModelUrl: string; - genomeVersionAssemblyId: string; + accession: string; + annotationStatus: string | null; + chromosomes: number | null; + coverage: string | null; + gcPercent: number; + isRef: boolean; + length: number; + level: string; ncbiTaxonomyId: string; organism: string; - species: string; - strain: string; - supercontigs: number; - ucscBrowserUrl: string; - vEuPathDbProject: string; + scaffoldCount: number; + scaffoldL50: number; + scaffoldN50: number; + ucscBrowserUrl: string | null; } export interface EntitiesResponse { diff --git a/app/apis/catalog/brc-analytics-catalog/common/utils.ts b/app/apis/catalog/brc-analytics-catalog/common/utils.ts index 8146c3b..935fde0 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/utils.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/utils.ts @@ -1,12 +1,12 @@ import { BRCDataCatalogGenome } from "./entities"; export function getGenomeId(genome: BRCDataCatalogGenome): string { - return sanitizeEntityId(genome.genomeVersionAssemblyId); + return sanitizeEntityId(genome.accession); } export function getGenomeTitle(genome?: BRCDataCatalogGenome): string { if (!genome) return ""; - return `${genome.species} - ${genome.strain}`; + return `${genome.organism}`; } export function sanitizeEntityId(entityId?: string): string { diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 49a7e47..022a1a2 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -10,6 +10,19 @@ import { BRCDataCatalogGenome } from "../../../../apis/catalog/brc-analytics-cat import * as C from "../../../../components"; import { GENOME_BROWSER, NCBI_DATASETS_URL } from "./constants"; +/** + * Build props for the accession cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildAccession = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + value: genome.accession, + }; +}; + /** * Build props for the genome analysis cell. * @param genome - Genome entity. @@ -20,7 +33,7 @@ export const buildAnalyzeGenome = ( genome: BRCDataCatalogGenome, viewContext: ViewContext ): ComponentProps => { - const { genomeVersionAssemblyId, ncbiTaxonomyId, ucscBrowserUrl } = genome; + const { accession, ncbiTaxonomyId, ucscBrowserUrl } = genome; const rowId = viewContext.cellContext?.row?.id; return { analyze: { @@ -28,10 +41,12 @@ export const buildAnalyzeGenome = ( url: rowId ? `${ROUTES.ORGANISMS}/${rowId}` : "", }, views: [ - { label: "UCSC Genome Browser", url: ucscBrowserUrl }, + ...(ucscBrowserUrl + ? [{ label: "UCSC Genome Browser", url: ucscBrowserUrl }] + : []), { label: "NCBI Genome Assembly", - url: `${NCBI_DATASETS_URL}/genome/${genomeVersionAssemblyId}`, + url: `${NCBI_DATASETS_URL}/genome/${accession}`, }, { label: "NCBI Taxonomy", @@ -43,6 +58,19 @@ export const buildAnalyzeGenome = ( }; }; +/** + * Build props for the annotation status cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildAnnotationStatus = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + value: genome.annotationStatus, + }; +}; + /** * Build props for the chromosomes cell. * @param genome - Genome entity. @@ -57,179 +85,229 @@ export const buildChromosomes = ( }; /** - * Build props for the contigs cell. + * Build props for the coverage cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildContigs = ( +export const buildCoverage = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.contigs, + value: genome.coverage, }; }; /** - * Build props for the genome AnalysisMethod component. + * Build props for the GC% cell. * @param genome - Genome entity. - * @param analysisMethodProps - Analysis Method properties. - * @param analysisMethodProps.analysisMethod - Analysis method. - * @param analysisMethodProps.content - Content to be displayed. - * @returns Props to be used for the AnalysisMethod component. + * @returns Props to be used for the cell. */ -export const buildGenomeAnalysisMethod = ( - genome: BRCDataCatalogGenome, - analysisMethodProps: Pick< - ComponentProps, - "analysisMethod" | "content" - > -): ComponentProps => { +export const buildGcPercent = ( + genome: BRCDataCatalogGenome +): ComponentProps => { return { - ...analysisMethodProps, - geneModelUrl: genome.geneModelUrl, - genomeVersionAssemblyId: genome.genomeVersionAssemblyId, + value: genome.gcPercent, }; }; /** - * Build props for the genome AnalysisPortals component. + * Build props for the "is ref" cell. * @param genome - Genome entity. - * @returns Props to be used for the AnalysisPortals component. + * @returns Props to be used for the cell. */ -export const buildGenomeAnalysisPortals = ( +export const buildIsRef = ( genome: BRCDataCatalogGenome -): ComponentProps => { +): ComponentProps => { return { - portals: [ - { - imageProps: { - alt: GENOME_BROWSER, - src: "/analysis-portals/ucsc-genome.png", - width: 20, - }, - label: GENOME_BROWSER, - url: genome.ucscBrowserUrl, - }, - ], + value: genome.isRef ? "Yes" : "No", }; }; /** - * Build props for the genome DetailViewHero component. + * Build props for the length cell. * @param genome - Genome entity. - * @returns Props to be used for the DetailViewHero component. + * @returns Props to be used for the cell. */ -export const buildGenomeChooseAnalysisMethodDetailViewHero = ( +export const buildLength = ( genome: BRCDataCatalogGenome -): ComponentProps => { +): ComponentProps => { return { - breadcrumbs: C.Breadcrumbs({ - breadcrumbs: getGenomeEntityChooseAnalysisMethodBreadcrumbs(genome), - }), - title: "Choose Analysis Methods", + value: genome.length, }; }; /** - * Build props for the genome detail KeyValuePairs component. + * Build props for the level cell. * @param genome - Genome entity. - * @returns Props to be used for the KeyValuePairs component. + * @returns Props to be used for the cell. */ -export const buildGenomeDetails = ( +export const buildLevel = ( genome: BRCDataCatalogGenome -): ComponentProps => { - const keyValuePairs = new Map(); - keyValuePairs.set( - "Species", - C.Link({ - label: genome.species, - url: `https://www.ncbi.nlm.nih.gov/datasets/taxonomy/${encodeURIComponent( - genome.ncbiTaxonomyId - )}/`, - }) - ); - keyValuePairs.set("Strain", genome.strain); - keyValuePairs.set( - "Assembly Version ID", - C.CopyText({ - children: genome.genomeVersionAssemblyId, - value: genome.genomeVersionAssemblyId, - }) - ); - keyValuePairs.set("VeUPathDB Project", genome.vEuPathDbProject); - keyValuePairs.set("Contigs", genome.contigs); - keyValuePairs.set("Super Contigs", genome.supercontigs); - keyValuePairs.set("Chromosomes", genome.chromosomes); +): ComponentProps => { return { - KeyElType: C.KeyElType, - KeyValuesElType: (props) => C.Stack({ gap: 4, ...props }), - ValueElType: C.ValueElType, - keyValuePairs, + value: genome.level, }; }; /** - * Build props for the genome version/assembly ID cell. + * Build props for the organism cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildGenomeVersionAssemblyId = ( +export const buildOrganism = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.genomeVersionAssemblyId, + value: genome.organism, }; }; /** - * Build props for the species cell. + * Build props for the scaffold count cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildSpecies = ( +export const buildScaffoldCount = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.species, + value: genome.scaffoldCount, }; }; /** - * Build props for the strain cell. + * Build props for the scaffold L50 cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildStrain = ( +export const buildScaffoldL50 = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.strain, + value: genome.scaffoldL50, }; }; /** - * Build props for the supercontigs cell. + * Build props for the scaffold N50 cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildSupercontigs = ( +export const buildScaffoldN50 = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.supercontigs, + value: genome.scaffoldN50, }; }; /** - * Build props for the VEuPathDB project cell. + * Build props for the taxonomy ID cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildVEuPathDbProject = ( +export const buildTaxonomyId = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.vEuPathDbProject, + value: genome.ncbiTaxonomyId, + }; +}; + +/** + * Build props for the genome AnalysisMethod component. + * @param genome - Genome entity. + * @param analysisMethodProps - Analysis Method properties. + * @param analysisMethodProps.analysisMethod - Analysis method. + * @param analysisMethodProps.content - Content to be displayed. + * @returns Props to be used for the AnalysisMethod component. + */ +export const buildGenomeAnalysisMethod = ( + genome: BRCDataCatalogGenome, + analysisMethodProps: Pick< + ComponentProps, + "analysisMethod" | "content" + > +): ComponentProps => { + return { + ...analysisMethodProps, + geneModelUrl: "", + genomeVersionAssemblyId: genome.accession, + }; +}; + +/** + * Build props for the genome AnalysisPortals component. + * @param genome - Genome entity. + * @returns Props to be used for the AnalysisPortals component. + */ +export const buildGenomeAnalysisPortals = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + portals: genome.ucscBrowserUrl + ? [ + { + imageProps: { + alt: GENOME_BROWSER, + src: "/analysis-portals/ucsc-genome.png", + width: 20, + }, + label: GENOME_BROWSER, + url: genome.ucscBrowserUrl, + }, + ] + : [], + }; +}; + +/** + * Build props for the genome DetailViewHero component. + * @param genome - Genome entity. + * @returns Props to be used for the DetailViewHero component. + */ +export const buildGenomeChooseAnalysisMethodDetailViewHero = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + breadcrumbs: C.Breadcrumbs({ + breadcrumbs: getGenomeEntityChooseAnalysisMethodBreadcrumbs(genome), + }), + title: "Choose Analysis Methods", + }; +}; + +/** + * Build props for the genome detail KeyValuePairs component. + * @param genome - Genome entity. + * @returns Props to be used for the KeyValuePairs component. + */ +export const buildGenomeDetails = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + const keyValuePairs = new Map(); + keyValuePairs.set( + "Taxon", + C.Link({ + label: genome.organism, + url: `https://www.ncbi.nlm.nih.gov/datasets/taxonomy/${encodeURIComponent( + genome.ncbiTaxonomyId + )}/`, + }) + ); + keyValuePairs.set( + "Accession", + C.CopyText({ + children: genome.accession, + value: genome.accession, + }) + ); + keyValuePairs.set("Chromosomes", genome.chromosomes); + return { + KeyElType: C.KeyElType, + KeyValuesElType: (props) => C.Stack({ gap: 4, ...props }), + ValueElType: C.ValueElType, + keyValuePairs, }; }; @@ -243,7 +321,7 @@ function getGenomeEntityChooseAnalysisMethodBreadcrumbs( ): Breadcrumb[] { return [ { path: ROUTES.ORGANISMS, text: "Organisms" }, - { path: "", text: `${genome.species} - ${genome.strain}` }, + { path: "", text: `${genome.organism}` }, { path: "", text: "Choose Analysis Methods" }, ]; } diff --git a/files/build-catalog.ts b/files/build-catalog.ts index 8573975..49229d0 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -3,7 +3,7 @@ import fsp from "fs/promises"; import { BRCDataCatalogGenome } from "../app/apis/catalog/brc-analytics-catalog/common/entities"; import { SourceGenome } from "./entities"; -const SOURCE_PATH_GENOMES = "files/source/genomes.tsv"; +const SOURCE_PATH_GENOMES = "files/source/genomes-from-ncbi.tsv"; buildCatalog(); @@ -20,22 +20,23 @@ async function buildGenomes(): Promise { const sourceRows = await readValuesFile(SOURCE_PATH_GENOMES); const mappedRows = sourceRows.map( (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, - species: row.Species, - strain: row.Strain, - supercontigs: parseNumber(row.Supercontigs), - ucscBrowserUrl: row.ucscBrowser, - vEuPathDbProject: row["VEuPathDB Project"], + accession: row.accession, + annotationStatus: parseStringOrNull(row.annotationStatus), + chromosomes: parseNumberOrNull(row.chromosomeCount), + coverage: parseStringOrNull(row.coverage), + gcPercent: parseNumber(row.gcPercent), + isRef: parseBoolean(row.isRef), + length: parseNumber(row.length), + level: row.level, + ncbiTaxonomyId: row.taxonomyId, + organism: row.taxon, + scaffoldCount: parseNumber(row.scaffoldCount), + scaffoldL50: parseNumber(row.scaffoldL50), + scaffoldN50: parseNumber(row.scaffoldN50), + ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), }) ); - return mappedRows.sort((a, b) => - a.genomeVersionAssemblyId.localeCompare(b.genomeVersionAssemblyId) - ); + return mappedRows.sort((a, b) => a.accession.localeCompare(b.accession)); } async function readValuesFile( @@ -54,6 +55,15 @@ async function saveJson(filePath: string, data: unknown): Promise { await fsp.writeFile(filePath, JSON.stringify(data, undefined, 2) + "\n"); } +function parseStringOrNull(value: string): string | null { + return value || null; +} + +function parseNumberOrNull(value: string): number | null { + if (!value) return null; + return parseNumber(value); +} + function parseNumber(value: string): number { value = value.trim(); const n = Number(value); @@ -61,3 +71,7 @@ function parseNumber(value: string): number { throw new Error(`Invalid number value: ${JSON.stringify(value)}`); return n; } + +function parseBoolean(value: string): boolean { + return value[0].toLowerCase() === "t"; +} diff --git a/files/entities.ts b/files/entities.ts index dad7cc1..6f5b6f6 100644 --- a/files/entities.ts +++ b/files/entities.ts @@ -1,21 +1,16 @@ export interface SourceGenome { - asmId: string; - Chromosomes: string; - comName: string; - Contigs: string; - genBank: string; - geneModelUrl: string; - "Genome Source": string; - "Genome Version/Assembly ID": string; - identical: string; - "Is Reference Strain": string; - Organism: string; - refSeq: string; - sciName: string; - Species: string; - Strain: string; - Supercontigs: string; - taxId: string; + accession: string; + annotationStatus: string; + chromosomeCount: string; + coverage: string; + gcPercent: string; + isRef: string; + length: string; + level: string; + scaffoldCount: string; + scaffoldL50: string; + scaffoldN50: string; + taxon: string; + taxonomyId: string; ucscBrowser: string; - "VEuPathDB Project": string; } diff --git a/files/out/genomes.json b/files/out/genomes.json index 14bb70e..abbeba6 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -1,9674 +1,322 @@ [ { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000001215.4", - "ncbiTaxonomyId": "7227", - "organism": "Drosophila melanogaster iso-1", - "species": "Drosophila melanogaster", - "strain": "iso-1", - "supercontigs": 1862, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001215.4", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000001985.1", - "ncbiTaxonomyId": "441960", - "organism": "Talaromyces marneffei ATCC 18224", - "species": "Talaromyces marneffei", - "strain": "ATCC 18224", - "supercontigs": 452, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/001/985/GCA_000001985.1/genes/GCA_000001985.1_JCVI-PMFA1-2.0.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 2733, - "genomeVersionAssemblyId": "GCA_000002415.2", + "accession": "GCF_000002415.2", + "annotationStatus": "Full annotation", + "chromosomes": 14, + "coverage": null, + "gcPercent": 42.5, + "isRef": true, + "length": 27007701, + "level": "Chromosome", "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax Sal-1", - "species": "Plasmodium vivax", - "strain": "Sal-1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002435.2", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage A isolate WB 2019", - "species": "Giardia Assemblage A", - "strain": "isolate WB 2019", - "supercontigs": 30, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002435.2", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "" + "organism": "Plasmodium vivax", + "scaffoldCount": 2747, + "scaffoldL50": 6, + "scaffoldN50": 1678596, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2" }, { - "chromosomes": 16, - "contigs": 115, - "genomeVersionAssemblyId": "GCA_000002445.1", + "accession": "GCF_000002445.2", + "annotationStatus": "Full annotation", + "chromosomes": 11, + "coverage": null, + "gcPercent": 46.5, + "isRef": true, + "length": 26075494, + "level": "Chromosome", "ncbiTaxonomyId": "185431", "organism": "Trypanosoma brucei brucei TREU927", - "species": "Trypanosoma brucei", - "strain": "brucei TREU927", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002495.2", - "ncbiTaxonomyId": "242507", - "organism": "Pyricularia oryzae 70-15", - "species": "Pyricularia oryzae", - "strain": "70-15", - "supercontigs": 46, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002495.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002515.1", - "ncbiTaxonomyId": "28985", - "organism": "Kluyveromyces lactis NRRL Y-1140", - "species": "Kluyveromyces lactis", - "strain": "NRRL Y-1140", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002515.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002525.1", - "ncbiTaxonomyId": "284591", - "organism": "Yarrowia lipolytica CLIB122", - "species": "Yarrowia lipolytica", - "strain": "CLIB122", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/525/GCA_000002525.1/genes/GCA_000002525.1_ASM252v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002545.2", - "ncbiTaxonomyId": "5478", - "organism": "Nakaseomyces glabratus CBS 138", - "species": "Nakaseomyces glabratus", - "strain": "CBS 138", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002545.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/545/GCA_000002545.2/genes/GCA_000002545.2_ASM254v2.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002655.1", - "ncbiTaxonomyId": "330879", - "organism": "Aspergillus fumigatus Af293", - "species": "Aspergillus fumigatus", - "strain": "Af293", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002715.1", - "ncbiTaxonomyId": "344612", - "organism": "Aspergillus clavatus NRRL 1", - "species": "Aspergillus clavatus", - "strain": "NRRL 1", - "supercontigs": 143, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002715.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" + "scaffoldCount": 12, + "scaffoldL50": 4, + "scaffoldN50": 2481190, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2" }, { + "accession": "GCF_000002725.2", + "annotationStatus": "Full annotation", "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002725.2", + "coverage": null, + "gcPercent": 59.5, + "isRef": true, + "length": 32855089, + "level": "Complete Genome", "ncbiTaxonomyId": "347515", "organism": "Leishmania major strain Friedlin", - "species": "Leishmania major", - "strain": "strain Friedlin", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/002/725/GCA_000002725.2/genes/GCA_000002725.2_ASM272v2.augustus.gtf.gz" + "scaffoldCount": 36, + "scaffoldL50": 11, + "scaffoldN50": 1091540, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2" }, { + "accession": "GCF_000002765.6", + "annotationStatus": "Full annotation", "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002765.3", + "coverage": "100.0x", + "gcPercent": 19.5, + "isRef": true, + "length": 23292622, + "level": "Complete Genome", "ncbiTaxonomyId": "36329", "organism": "Plasmodium falciparum 3D7", - "species": "Plasmodium falciparum", - "strain": "3D7", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" + "scaffoldCount": 14, + "scaffoldL50": 5, + "scaffoldN50": 1687656, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5" }, { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002825.1", - "ncbiTaxonomyId": "412133", - "organism": "Trichomonas vaginalis G3", - "species": "Trichomonas vaginalis", - "strain": "G3", - "supercontigs": 64764, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002825.2", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "" - }, - { - "chromosomes": 36, - "contigs": 103, - "genomeVersionAssemblyId": "GCA_000002845.2", + "accession": "GCF_000002845.2", + "annotationStatus": null, + "chromosomes": 35, + "coverage": null, + "gcPercent": 58, + "isRef": true, + "length": 32068771, + "level": "Chromosome", "ncbiTaxonomyId": "420245", "organism": "Leishmania braziliensis MHOM/BR/75/M2904", - "species": "Leishmania braziliensis", - "strain": "MHOM/BR/75/M2904", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000002855.2", - "ncbiTaxonomyId": "5061", - "organism": "Aspergillus niger CBS 513.88", - "species": "Aspergillus niger", - "strain": "CBS 513.88", - "supercontigs": 19, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002855.4", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 5617, - "genomeVersionAssemblyId": "GCA_000003085.2", - "ncbiTaxonomyId": "73239", - "organism": "Plasmodium yoelii yoelii 17XNL", - "species": "Plasmodium yoelii", - "strain": "yoelii 17XNL", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003085.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003125.1", - "ncbiTaxonomyId": "441959", - "organism": "Talaromyces stipitatus ATCC 10500", - "species": "Talaromyces stipitatus", - "strain": "ATCC 10500", - "supercontigs": 820, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003225.1", - "ncbiTaxonomyId": "5874", - "organism": "Theileria annulata strain Ankara", - "species": "Theileria annulata", - "strain": "strain Ankara", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000003225.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/225/GCA_000003225.1/genes/GCA_000003225.1_ASM322v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003515.2", - "ncbiTaxonomyId": "336963", - "organism": "Uncinocarpus reesii 1704", - "species": "Uncinocarpus reesii", - "strain": "1704", - "supercontigs": 44, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003525.2", - "ncbiTaxonomyId": "559297", - "organism": "Blastomyces dermatitidis ER-3", - "species": "Blastomyces dermatitidis", - "strain": "ER-3", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003525.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/525/GCA_000003525.2/genes/GCA_000003525.2_BD_ER3_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003835.1", - "ncbiTaxonomyId": "306902", - "organism": "Clavispora lusitaniae ATCC 42720", - "species": "Clavispora lusitaniae", - "strain": "ATCC 42720", - "supercontigs": 9, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003835.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/835/GCA_000003835.1/genes/GCA_000003835.1_ASM383v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000003855.2", - "ncbiTaxonomyId": "559298", - "organism": "Blastomyces gilchristii SLH14081", - "species": "Blastomyces gilchristii", - "strain": "SLH14081", - "supercontigs": 100, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003855.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/003/855/GCA_000003855.2/genes/GCA_000003855.2_BD_SLH14081_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000004985.1", - "ncbiTaxonomyId": "5762", - "organism": "Naegleria gruberi strain NEG-M", - "species": "Naegleria gruberi", - "strain": "strain NEG-M", - "supercontigs": 784, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000004985.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000006275.3", - "ncbiTaxonomyId": "332952", - "organism": "Aspergillus flavus NRRL3357", - "species": "Aspergillus flavus", - "strain": "NRRL3357", - "supercontigs": 282, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000006275.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/006/275/GCA_000006275.3/genes/GCA_000006275.3_JCVI-afl1-v3.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000006295.1", - "ncbiTaxonomyId": "121224", - "organism": "Pediculus humanus USDA", - "species": "Pediculus humanus", - "strain": "USDA", - "supercontigs": 1882, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006295.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000006335.3", - "ncbiTaxonomyId": "294747", - "organism": "Candida tropicalis MYA-3404", - "species": "Candida tropicalis", - "strain": "MYA-3404", - "supercontigs": 23, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006335.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 148, - "genomeVersionAssemblyId": "GCA_000006355.3", - "ncbiTaxonomyId": "5851", - "organism": "Plasmodium knowlesi strain H", - "species": "Plasmodium knowlesi", - "strain": "strain H", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006355.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1422, - "genomeVersionAssemblyId": "GCA_000006425.1", - "ncbiTaxonomyId": "353151", - "organism": "Cryptosporidium hominis TU502", - "species": "Cryptosporidium hominis", - "strain": "TU502", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006425.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000006445.2", - "ncbiTaxonomyId": "284592", - "organism": "Debaryomyces hansenii CBS767", - "species": "Debaryomyces hansenii", - "strain": "CBS767", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000026945.1", - "ncbiTaxonomyId": "573826", - "organism": "Candida dubliniensis CD36", - "species": "Candida dubliniensis", - "strain": "CD36", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000026945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000091045.1", - "ncbiTaxonomyId": "214684", - "organism": "Cryptococcus neoformans var. neoformans JEC21", - "species": "Cryptococcus neoformans", - "strain": "var. neoformans JEC21", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/091/045/GCA_000091045.1/genes/GCA_000091045.1_ASM9104v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000091225.2", - "ncbiTaxonomyId": "284813", - "organism": "Encephalitozoon cuniculi GB-M1", - "species": "Encephalitozoon cuniculi", - "strain": "GB-M1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091225.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000142945.1", - "ncbiTaxonomyId": "403677", - "organism": "Phytophthora infestans T30-4", - "species": "Phytophthora infestans", - "strain": "T30-4", - "supercontigs": 4921, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000142945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000143045.1", - "ncbiTaxonomyId": "431595", - "organism": "Globisporangium ultimum DAOM BR144", - "species": "Globisporangium ultimum", - "strain": "DAOM BR144", - "supercontigs": 975, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000143045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/143/045/GCA_000143045.1/genes/GCA_000143045.1_pug.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000143185.2", - "ncbiTaxonomyId": "578458", - "organism": "Schizophyllum commune H4-8", - "species": "Schizophyllum commune", - "strain": "H4-8", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143185.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000143365.1", - "ncbiTaxonomyId": "306901", - "organism": "Chaetomium globosum CBS 148.51", - "species": "Chaetomium globosum", - "strain": "CBS 148.51", - "supercontigs": 21, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 18, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000143535.4", - "ncbiTaxonomyId": "332648", - "organism": "Botrytis cinerea B05.10", - "species": "Botrytis cinerea", - "strain": "B05.10", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143535.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000145635.1", - "ncbiTaxonomyId": "644352", - "organism": "Gaeumannomyces tritici R3-111a-1", - "species": "Gaeumannomyces tritici", - "strain": "R3-111a-1", - "supercontigs": 513, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000145635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 16, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000146045.2", - "ncbiTaxonomyId": "559292", - "organism": "Saccharomyces cerevisiae S288C", - "species": "Saccharomyces cerevisiae", - "strain": "S288C", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146045.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000146465.1", - "ncbiTaxonomyId": "876142", - "organism": "Encephalitozoon intestinalis ATCC 50506", - "species": "Encephalitozoon intestinalis", - "strain": "ATCC 50506", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146465.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149035.1", - "ncbiTaxonomyId": "645133", - "organism": "Colletotrichum graminicola M1.001", - "species": "Colletotrichum graminicola", - "strain": "M1.001", - "supercontigs": 653, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149205.2", - "ncbiTaxonomyId": "227321", - "organism": "Aspergillus nidulans FGSC A4", - "species": "Aspergillus nidulans", - "strain": "FGSC A4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149205.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/205/GCA_000149205.2/genes/GCA_000149205.2_ASM14920v2.augustus.gtf.gz" + "scaffoldCount": 138, + "scaffoldL50": 11, + "scaffoldN50": 992961, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2" }, { + "accession": "GCF_000006565.2", + "annotationStatus": null, "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149245.3", - "ncbiTaxonomyId": "235443", - "organism": "Cryptococcus neoformans var. grubii H99", - "species": "Cryptococcus neoformans", - "strain": "var. grubii H99", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149305.1", - "ncbiTaxonomyId": "246409", - "organism": "Rhizopus delemar RA 99-880", - "species": "Rhizopus delemar", - "strain": "RA 99-880", - "supercontigs": 81, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149305.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/305/GCA_000149305.1/genes/GCA_000149305.1_RO3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149335.2", + "coverage": "26.5x", + "gcPercent": 52.5, + "isRef": true, + "length": 65633124, + "level": "Chromosome", + "ncbiTaxonomyId": "508771", + "organism": "Toxoplasma gondii ME49", + "scaffoldCount": 2276, + "scaffoldL50": 6, + "scaffoldN50": 4973582, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2" + }, + { + "accession": "GCF_000149335.2", + "annotationStatus": "Full annotation", + "chromosomes": null, + "coverage": null, + "gcPercent": 46, + "isRef": true, + "length": 28947925, + "level": "Scaffold", "ncbiTaxonomyId": "246410", "organism": "Coccidioides immitis RS", - "species": "Coccidioides immitis", - "strain": "RS", - "supercontigs": 6, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149385.1", - "ncbiTaxonomyId": "283643", - "organism": "Cryptococcus neoformans var. neoformans B-3501A", - "species": "Cryptococcus neoformans", - "strain": "var. neoformans B-3501A", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149425.1", - "ncbiTaxonomyId": "294746", - "organism": "Meyerozyma guilliermondii ATCC 6260", - "species": "Meyerozyma guilliermondii", - "strain": "ATCC 6260", - "supercontigs": 9, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149425.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149445.2", - "ncbiTaxonomyId": "294748", - "organism": "Candida albicans WO-1", - "species": "Candida albicans", - "strain": "WO-1", - "supercontigs": 16, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/445/GCA_000149445.2/genes/GCA_000149445.2_ASM14944v2.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149555.1", - "ncbiTaxonomyId": "334819", - "organism": "Fusarium verticillioides 7600", - "species": "Fusarium verticillioides", - "strain": "7600", - "supercontigs": 10, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149585.1", - "ncbiTaxonomyId": "2059318", - "organism": "Histoplasma capsulatum NAm1", - "species": "Histoplasma capsulatum", - "strain": "NAm1", - "supercontigs": 276, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149615.1", - "ncbiTaxonomyId": "341663", - "organism": "Aspergillus terreus NIH2624", - "species": "Aspergillus terreus", - "strain": "NIH2624", - "supercontigs": 26, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149645.4", - "ncbiTaxonomyId": "331117", - "organism": "Aspergillus fischeri NRRL 181", - "species": "Aspergillus fischeri", - "strain": "NRRL 181", - "supercontigs": 163, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149645.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149685.1", - "ncbiTaxonomyId": "379508", - "organism": "Lodderomyces elongisporus NRRL YB-4239", - "species": "Lodderomyces elongisporus", - "strain": "NRRL YB-4239", - "supercontigs": 27, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/685/GCA_000149685.1/genes/GCA_000149685.1_ASM14968v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 2034, - "genomeVersionAssemblyId": "GCA_000149715.2", - "ncbiTaxonomyId": "507601", - "organism": "Toxoplasma gondii GT1", - "species": "Toxoplasma gondii", - "strain": "GT1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149715.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/715/GCA_000149715.2/genes/GCA_000149715.2_TGGT1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149755.2", - "ncbiTaxonomyId": "67593", - "organism": "Phytophthora sojae strain P6497", - "species": "Phytophthora sojae", - "strain": "strain P6497", - "supercontigs": 82, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149815.1", - "ncbiTaxonomyId": "396776", - "organism": "Coccidioides immitis H538.4", - "species": "Coccidioides immitis", - "strain": "H538.4", - "supercontigs": 553, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149815.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/815/GCA_000149815.1/genes/GCA_000149815.1_ASM14981v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149845.2", - "ncbiTaxonomyId": "402676", - "organism": "Schizosaccharomyces japonicus yFS275", - "species": "Schizosaccharomyces japonicus", - "strain": "yFS275", - "supercontigs": 32, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149845.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149865.1", - "ncbiTaxonomyId": "403673", - "organism": "Batrachochytrium dendrobatidis JEL423", - "species": "Batrachochytrium dendrobatidis", - "strain": "JEL423", - "supercontigs": 69, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/865/GCA_000149865.1/genes/GCA_000149865.1_BD_JEL423.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149895.1", - "ncbiTaxonomyId": "404692", - "organism": "Coccidioides immitis RMSCC 2394", - "species": "Coccidioides immitis", - "strain": "RMSCC 2394", - "supercontigs": 23, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/149/895/GCA_000149895.1/genes/GCA_000149895.1_ASM14989v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149925.1", - "ncbiTaxonomyId": "418459", - "organism": "Puccinia graminis f. sp. tritici CRL 75-36-700-3", - "species": "Puccinia graminis", - "strain": "f. sp. tritici CRL 75-36-700-3", - "supercontigs": 392, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 15, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000149955.2", - "ncbiTaxonomyId": "426428", - "organism": "Fusarium oxysporum f. sp. lycopersici 4287", - "species": "Fusarium oxysporum", - "strain": "f. sp. lycopersici 4287", - "supercontigs": 70, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150015.2", - "ncbiTaxonomyId": "432359", - "organism": "Toxoplasma gondii VEG", - "species": "Toxoplasma gondii", - "strain": "VEG", - "supercontigs": 1290, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150015.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/015/GCA_000150015.2/genes/GCA_000150015.2_TGVEG.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150055.1", - "ncbiTaxonomyId": "454284", - "organism": "Coccidioides posadasii RMSCC 3488", - "species": "Coccidioides posadasii", - "strain": "RMSCC 3488", - "supercontigs": 6, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/055/GCA_000150055.1/genes/GCA_000150055.1_ASM15005v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150085.1", - "ncbiTaxonomyId": "454286", - "organism": "Coccidioides immitis RMSCC 3703", - "species": "Coccidioides immitis", - "strain": "RMSCC 3703", - "supercontigs": 286, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/085/GCA_000150085.1/genes/GCA_000150085.1_ASM15008v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150145.1", - "ncbiTaxonomyId": "451804", - "organism": "Aspergillus fumigatus A1163", - "species": "Aspergillus fumigatus", - "strain": "A1163", - "supercontigs": 55, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/145/GCA_000150145.1/genes/GCA_000150145.1_ASM15014v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150185.1", - "ncbiTaxonomyId": "469470", - "organism": "Coccidioides posadasii RMSCC 2133", - "species": "Coccidioides posadasii", - "strain": "RMSCC 2133", - "supercontigs": 53, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/185/GCA_000150185.1/genes/GCA_000150185.1_ASM15018v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150215.1", - "ncbiTaxonomyId": "469471", - "organism": "Coccidioides posadasii RMSCC 3700", - "species": "Coccidioides posadasii", - "strain": "RMSCC 3700", - "supercontigs": 241, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/215/GCA_000150215.1/genes/GCA_000150215.1_ASM15021v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150245.1", - "ncbiTaxonomyId": "469472", - "organism": "Coccidioides posadasii CPA 0001", - "species": "Coccidioides posadasii", - "strain": "CPA 0001", - "supercontigs": 255, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/245/GCA_000150245.1/genes/GCA_000150245.1_ASM15024v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150475.2", - "ncbiTaxonomyId": "482561", - "organism": "Paracoccidioides brasiliensis Pb03", - "species": "Paracoccidioides brasiliensis", - "strain": "Pb03", - "supercontigs": 65, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150475.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/475/GCA_000150475.2/genes/GCA_000150475.2_Paracocci_br_Pb03_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150505.2", - "ncbiTaxonomyId": "483514", - "organism": "Schizosaccharomyces octosporus yFS286", - "species": "Schizosaccharomyces octosporus", - "strain": "yFS286", - "supercontigs": 5, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150505.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150555.1", - "ncbiTaxonomyId": "490065", - "organism": "Coccidioides posadasii RMSCC 1037", - "species": "Coccidioides posadasii", - "strain": "RMSCC 1037", - "supercontigs": 633, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/555/GCA_000150555.1/genes/GCA_000150555.1_ASM15055v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150585.1", - "ncbiTaxonomyId": "490066", - "organism": "Coccidioides posadasii RMSCC 1038", - "species": "Coccidioides posadasii", - "strain": "RMSCC 1038", - "supercontigs": 551, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/585/GCA_000150585.1/genes/GCA_000150585.1_ASM15058v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150615.1", - "ncbiTaxonomyId": "490068", - "organism": "Coccidioides posadasii CPA 0020", - "species": "Coccidioides posadasii", - "strain": "CPA 0020", - "supercontigs": 620, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/615/GCA_000150615.1/genes/GCA_000150615.1_ASM15061v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150645.1", - "ncbiTaxonomyId": "490069", - "organism": "Coccidioides posadasii CPA 0066", - "species": "Coccidioides posadasii", - "strain": "CPA 0066", - "supercontigs": 473, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/645/GCA_000150645.1/genes/GCA_000150645.1_ASM15064v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150705.2", - "ncbiTaxonomyId": "502779", - "organism": "Paracoccidioides lutzii Pb01", - "species": "Paracoccidioides lutzii", - "strain": "Pb01", - "supercontigs": 110, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150705.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150735.2", - "ncbiTaxonomyId": "502780", - "organism": "Paracoccidioides brasiliensis Pb18", - "species": "Paracoccidioides brasiliensis", - "strain": "Pb18", - "supercontigs": 57, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150765.1", - "ncbiTaxonomyId": "1518534", - "organism": "Anopheles coluzzii Mali-NIH", - "species": "Anopheles coluzzii", - "strain": "Mali-NIH", - "supercontigs": 10521, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/765/GCA_000150765.1/genes/GCA_000150765.1_m5.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150785.1", - "ncbiTaxonomyId": "7165", - "organism": "Anopheles gambiae Pimperena", - "species": "Anopheles gambiae", - "strain": "Pimperena", - "supercontigs": 13042, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150785.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/150/785/GCA_000150785.1/genes/GCA_000150785.1_g4.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000150975.2", - "ncbiTaxonomyId": "535722", - "organism": "Nannizzia gypsea CBS 118893", - "species": "Nannizzia gypsea", - "strain": "CBS 118893", - "supercontigs": 18, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150975.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151035.1", - "ncbiTaxonomyId": "544712", - "organism": "Histoplasma capsulatum H143", - "species": "Histoplasma capsulatum", - "strain": "H143", - "supercontigs": 48, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/035/GCA_000151035.1/genes/GCA_000151035.1_ASM15103v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151145.1", - "ncbiTaxonomyId": "554155", - "organism": "Microsporum canis CBS 113480", - "species": "Microsporum canis", - "strain": "CBS 113480", - "supercontigs": 16, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151175.1", - "ncbiTaxonomyId": "559882", - "organism": "Trichophyton equinum CBS 127.97", - "species": "Trichophyton equinum", - "strain": "CBS 127.97", - "supercontigs": 123, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/175/GCA_000151175.1/genes/GCA_000151175.1_ASM15117v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151295.1", - "ncbiTaxonomyId": "578462", - "organism": "Allomyces macrogynus ATCC 38327", - "species": "Allomyces macrogynus", - "strain": "ATCC 38327", - "supercontigs": 101, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/295/GCA_000151295.1/genes/GCA_000151295.1_A_macrogynus_V3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151335.1", - "ncbiTaxonomyId": "222929", - "organism": "Coccidioides posadasii C735 delta SOWgp", - "species": "Coccidioides posadasii", - "strain": "C735 delta SOWgp", - "supercontigs": 55, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151335.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/335/GCA_000151335.1/genes/GCA_000151335.1_JCVI-cpa1-1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151355.1", - "ncbiTaxonomyId": "660122", - "organism": "Fusarium vanettenii 77-13-4", - "species": "Fusarium vanettenii", - "strain": "77-13-4", - "supercontigs": 209, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151355.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151425.1", - "ncbiTaxonomyId": "559305", - "organism": "Trichophyton rubrum CBS 118892", - "species": "Trichophyton rubrum", - "strain": "CBS 118892", - "supercontigs": 35, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151425.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151455.1", - "ncbiTaxonomyId": "647933", - "organism": "Trichophyton tonsurans CBS 112818", - "species": "Trichophyton tonsurans", - "strain": "CBS 112818", - "supercontigs": 110, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151455.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/455/GCA_000151455.1/genes/GCA_000151455.1_ASM15145v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 14818, - "genomeVersionAssemblyId": "GCA_000151525.2", - "ncbiTaxonomyId": "630390", - "organism": "Puccinia triticina 1-1 BBBD Race 1", - "species": "Puccinia triticina", - "strain": "1-1 BBBD Race 1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/525/GCA_000151525.2/genes/GCA_000151525.2_P_triticina_1_1_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151545.2", - "ncbiTaxonomyId": "695850", - "organism": "Saprolegnia parasitica CBS 223.65", - "species": "Saprolegnia parasitica", - "strain": "CBS 223.65", - "supercontigs": 1442, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000151735.1", - "ncbiTaxonomyId": "10141", - "organism": "Cavia porcellus 2N", - "species": "Cavia porcellus", - "strain": "2N", - "supercontigs": 3143, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151735.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/151/735/GCA_000151735.1/genes/GCA_000151735.1_Cavpor3.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000165345.1", - "ncbiTaxonomyId": "353152", - "organism": "Cryptosporidium parvum Iowa II", - "species": "Cryptosporidium parvum", - "strain": "Iowa II", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165345.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 2, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000165365.1", - "ncbiTaxonomyId": "333668", - "organism": "Theileria parva strain Muguga", - "species": "Theileria parva", - "strain": "strain Muguga", - "supercontigs": 6, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165365.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" + "scaffoldCount": 6, + "scaffoldL50": 3, + "scaffoldN50": 4323945, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2" + }, + { + "accession": "GCF_000195955.2", + "annotationStatus": null, + "chromosomes": 1, + "coverage": null, + "gcPercent": 65.5, + "isRef": true, + "length": 4411532, + "level": "Complete Genome", + "ncbiTaxonomyId": "83332", + "organism": "Mycobacterium tuberculosis H37Rv", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 4411532, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_000209065.1", + "annotationStatus": "Full annotation", + "chromosomes": null, + "coverage": null, + "gcPercent": 51.5, + "isRef": true, + "length": 89937456, + "level": "Scaffold", + "ncbiTaxonomyId": "5693", + "organism": "Trypanosoma cruzi", + "scaffoldCount": 29495, + "scaffoldL50": 212, + "scaffoldN50": 88624, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1" }, { + "accession": "GCF_000227135.1", + "annotationStatus": "Full annotation", + "chromosomes": 36, + "coverage": null, + "gcPercent": 59.5, + "isRef": true, + "length": 32444968, + "level": "Chromosome", + "ncbiTaxonomyId": "5661", + "organism": "Leishmania donovani", + "scaffoldCount": 36, + "scaffoldL50": 11, + "scaffoldN50": 1024085, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1" + }, + { + "accession": "GCF_000277735.2", + "annotationStatus": null, + "chromosomes": 1, + "coverage": null, + "gcPercent": 65.5, + "isRef": false, + "length": 4411709, + "level": "Complete Genome", + "ncbiTaxonomyId": "83332", + "organism": "Mycobacterium tuberculosis H37Rv", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 4411709, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_000857045.1", + "annotationStatus": null, + "chromosomes": 1, + "coverage": null, + "gcPercent": 33, + "isRef": false, + "length": 196858, + "level": "Complete Genome", + "ncbiTaxonomyId": "10244", + "organism": "Monkeypox virus", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 196858, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_009858895.2", + "annotationStatus": null, + "chromosomes": 1, + "coverage": null, + "gcPercent": 38, + "isRef": false, + "length": 29903, + "level": "Complete Genome", + "ncbiTaxonomyId": "2697049", + "organism": "Severe acute respiratory syndrome coronavirus 2", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 29903, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_016801865.2", + "annotationStatus": "Full annotation", "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000165395.2", - "ncbiTaxonomyId": "484906", - "organism": "Babesia bovis T2Bo", - "species": "Babesia bovis", - "strain": "T2Bo", - "supercontigs": 3, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165395.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000166155.1", - "ncbiTaxonomyId": "447095", - "organism": "Blastomyces dermatitidis ATCC 26199", - "species": "Blastomyces dermatitidis", - "strain": "ATCC 26199", - "supercontigs": 3282, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000166155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/166/155/GCA_000166155.1/genes/GCA_000166155.1_BD_ATCC26199_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000167175.1", - "ncbiTaxonomyId": "273507", - "organism": "Phanerochaete chrysosporium RP-78", - "species": "Phanerochaete chrysosporium", - "strain": "RP-78", - "supercontigs": 232, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000167175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/167/175/GCA_000167175.1/genes/GCA_000167175.1_ASM16717v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000167675.2", - "ncbiTaxonomyId": "431241", - "organism": "Trichoderma reesei QM6a", - "species": "Trichoderma reesei", - "strain": "QM6a", - "supercontigs": 77, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000167675.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000170175.2", + "coverage": "250.0x", + "gcPercent": 37, + "isRef": true, + "length": 566339288, + "level": "Chromosome", + "ncbiTaxonomyId": "42434", + "organism": "Culex pipiens pallens", + "scaffoldCount": 289, + "scaffoldL50": 2, + "scaffoldN50": 186194774, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_018416015.2", + "annotationStatus": "Full annotation", + "chromosomes": 9, + "coverage": "475.0x", + "gcPercent": 46.5, + "isRef": true, + "length": 28193268, + "level": "Complete Genome", "ncbiTaxonomyId": "443226", "organism": "Coccidioides posadasii str. Silveira", - "species": "Coccidioides posadasii", - "strain": "str. Silveira", - "supercontigs": 54, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000170175.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/170/175/GCA_000170175.2/genes/GCA_000170175.2_CPS2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 93, - "genomeVersionAssemblyId": "GCA_000170995.2", - "ncbiTaxonomyId": "413071", - "organism": "Trichoderma virens Gv29-8", - "species": "Trichoderma virens", - "strain": "Gv29-8", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000170995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000173235.2", - "ncbiTaxonomyId": "559515", - "organism": "Hyaloperonospora arabidopsidis Emoy2", - "species": "Hyaloperonospora arabidopsidis", - "strain": "Emoy2", - "supercontigs": 3044, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000173235.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/173/235/GCA_000173235.2/genes/GCA_000173235.2_HyaAraEmoy2_2.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000181055.3", - "ncbiTaxonomyId": "13249", - "organism": "Rhodnius prolixus CDC", - "species": "Rhodnius prolixus", - "strain": "CDC", - "supercontigs": 16537, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000181055.3", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/181/055/GCA_000181055.3/genes/GCA_000181055.3_Rhodnius_prolixus-3.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 2931, - "genomeVersionAssemblyId": "GCA_000182405.1", - "ncbiTaxonomyId": "598745", - "organism": "Giardia Assemblage B isolate GS", - "species": "Giardia Assemblage B", - "strain": "isolate GS", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182405.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/405/GCA_000182405.1/genes/GCA_000182405.1_ASM18240v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000182565.2", - "ncbiTaxonomyId": "645134", - "organism": "Spizellomyces punctatus DAOM BR117", - "species": "Spizellomyces punctatus", - "strain": "DAOM BR117", - "supercontigs": 38, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182565.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 820, - "genomeVersionAssemblyId": "GCA_000182665.1", - "ncbiTaxonomyId": "658858", - "organism": "Giardia Assemblage E isolate P15", - "species": "Giardia Assemblage E", - "strain": "isolate P15", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000182665.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/665/GCA_000182665.1/genes/GCA_000182665.1_ASM18266v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000182765.2", - "ncbiTaxonomyId": "5480", - "organism": "Candida parapsilosis CDC317", - "species": "Candida parapsilosis", - "strain": "CDC317", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182765.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000182895.1", - "ncbiTaxonomyId": "240176", - "organism": "Coprinopsis cinerea okayama7#130", - "species": "Coprinopsis cinerea", - "strain": "okayama7#130", - "supercontigs": 67, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/895/GCA_000182895.1/genes/GCA_000182895.1_CC3.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000182925.2", - "ncbiTaxonomyId": "367110", - "organism": "Neurospora crassa OR74A", - "species": "Neurospora crassa", - "strain": "OR74A", - "supercontigs": 13, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182925.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000182965.3", - "ncbiTaxonomyId": "237561", - "organism": "Candida albicans SC5314", - "species": "Candida albicans", - "strain": "SC5314", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 5465, - "genomeVersionAssemblyId": "GCA_000182985.1", - "ncbiTaxonomyId": "578460", - "organism": "Nosema ceranae BRL01", - "species": "Nosema ceranae", - "strain": "BRL01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/182/985/GCA_000182985.1/genes/GCA_000182985.1_ASM18298v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000184105.1", - "ncbiTaxonomyId": "658429", - "organism": "Pseudogymnoascus destructans 20631-21", - "species": "Pseudogymnoascus destructans", - "strain": "20631-21", - "supercontigs": 1846, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/184/105/GCA_000184105.1/genes/GCA_000184105.1_Geom_destructans_V1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 3, - "genomeVersionAssemblyId": "GCA_000184455.3", - "ncbiTaxonomyId": "510516", - "organism": "Aspergillus oryzae RIB40", - "species": "Aspergillus oryzae", - "strain": "RIB40", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184455.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000185945.1", - "ncbiTaxonomyId": "367775", - "organism": "Cryptococcus gattii WM276", - "species": "Cryptococcus gattii VGI", - "strain": "WM276", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000185945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 27019, - "genomeVersionAssemblyId": "GCA_000188675.2", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Sylvio X10/1-2012", - "species": "Trypanosoma cruzi", - "strain": "Sylvio X10/1-2012", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000188675.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/188/675/GCA_000188675.2/genes/GCA_000188675.2_Tc_SX10_v2.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000190615.1", - "ncbiTaxonomyId": "935791", - "organism": "Nematocida parisii ERTm3", - "species": "Nematocida parisii", - "strain": "ERTm3", - "supercontigs": 53, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190615.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/190/615/GCA_000190615.1/genes/GCA_000190615.1_Nema_parisii_ERTm3_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000192795.1", - "ncbiTaxonomyId": "948595", - "organism": "Vavraia culicis subsp. floridensis", - "species": "Vavraia culicis", - "strain": "subsp. floridensis", - "supercontigs": 379, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000192795.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000193285.1", - "ncbiTaxonomyId": "644358", - "organism": "Magnaporthiopsis poae ATCC 64411", - "species": "Magnaporthiopsis poae", - "strain": "ATCC 64411", - "supercontigs": 205, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000193285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/193/285/GCA_000193285.1/genes/GCA_000193285.1_Mag_poae_ATCC_64411_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000204055.1", - "ncbiTaxonomyId": "747676", - "organism": "Melampsora larici-populina 98AG31", - "species": "Melampsora larici-populina", - "strain": "98AG31", - "supercontigs": 462, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000204055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000208615.1", - "ncbiTaxonomyId": "6945", - "organism": "Ixodes scapularis Wikel", - "species": "Ixodes scapularis", - "strain": "Wikel", - "supercontigs": 369492, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208615.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/208/615/GCA_000208615.1/genes/GCA_000208615.1_JCVI_ISG_i3_1.0.augustus.gtf.gz" + "scaffoldCount": 9, + "scaffoldL50": 2, + "scaffoldN50": 8079863, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2" + }, + { + "accession": "GCF_030566675.1", + "annotationStatus": null, + "chromosomes": 1, + "coverage": "20.0x", + "gcPercent": 65.5, + "isRef": false, + "length": 4516435, + "level": "Complete Genome", + "ncbiTaxonomyId": "1773", + "organism": "Mycobacterium tuberculosis", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 4516435, + "ucscBrowserUrl": null + }, + { + "accession": "GCF_900002385.2", + "annotationStatus": "Full annotation", + "chromosomes": 14, + "coverage": "100.0x", + "gcPercent": 21.5, + "isRef": true, + "length": 23043114, + "level": "Complete Genome", + "ncbiTaxonomyId": "5861", + "organism": "Plasmodium yoelii", + "scaffoldCount": 14, + "scaffoldL50": 5, + "scaffoldN50": 2046250, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2" }, { + "accession": "GCF_900681995.1", + "annotationStatus": "Full annotation", "chromosomes": 14, - "contigs": 52, - "genomeVersionAssemblyId": "GCA_000208865.2", - "ncbiTaxonomyId": "572307", - "organism": "Neospora caninum Liverpool", - "species": "Neospora caninum", - "strain": "Liverpool", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208865.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000208925.2", - "ncbiTaxonomyId": "294381", - "organism": "Entamoeba histolytica HM-1:IMSS", - "species": "Entamoeba histolytica", - "strain": "HM-1:IMSS", - "supercontigs": 1496, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208925.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 29407, - "genomeVersionAssemblyId": "GCA_000209065.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain CL Brener", - "species": "Trypanosoma cruzi", - "strain": "strain CL Brener", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000209125.2", - "ncbiTaxonomyId": "370354", - "organism": "Entamoeba dispar SAW760", - "species": "Entamoeba dispar", - "strain": "SAW760", - "supercontigs": 3312, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209125.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000209185.1", - "ncbiTaxonomyId": "7176", - "organism": "Culex quinquefasciatus Johannesburg", - "species": "Culex quinquefasciatus", - "strain": "Johannesburg", - "supercontigs": 3171, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/185/GCA_000209185.1/genes/GCA_000209185.1_CulPip1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1730, - "genomeVersionAssemblyId": "GCA_000209485.1", - "ncbiTaxonomyId": "481877", - "organism": "Enterocytozoon bieneusi H348", - "species": "Enterocytozoon bieneusi", - "strain": "H348", - "supercontigs": 3, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209485.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/209/485/GCA_000209485.1/genes/GCA_000209485.1_ASM20948v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000210295.1", - "ncbiTaxonomyId": "679716", - "organism": "Trypanosoma brucei gambiense DAL972", - "species": "Trypanosoma brucei", - "strain": "gambiense DAL972", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000210295.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000211455.3", - "ncbiTaxonomyId": "43151", - "organism": "Anopheles darlingi Coari", - "species": "Anopheles darlingi", - "strain": "Coari", - "supercontigs": 2220, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000211455.3", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/211/455/GCA_000211455.3/genes/GCA_000211455.3_A_darlingi_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000213175.1", - "ncbiTaxonomyId": "510951", - "organism": "Neurospora tetrasperma FGSC 2508", - "species": "Neurospora tetrasperma", - "strain": "FGSC 2508", - "supercontigs": 81, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000213175.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 21, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000219625.1", - "ncbiTaxonomyId": "336722", - "organism": "Zymoseptoria tritici IPO323", - "species": "Zymoseptoria tritici", - "strain": "IPO323", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000219625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/219/625/GCA_000219625.1/genes/GCA_000219625.1_MYCGR_v2.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 15, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000221245.2", - "ncbiTaxonomyId": "989655", - "organism": "Encephalitozoon cuniculi EC3", - "species": "Encephalitozoon cuniculi", - "strain": "EC3", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221245.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/245/GCA_000221245.2/genes/GCA_000221245.2_Ence_cuni_EC3_V1.augustus.gtf.gz" - }, - { - "chromosomes": 16, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000221265.2", - "ncbiTaxonomyId": "989654", - "organism": "Encephalitozoon cuniculi EC2", - "species": "Encephalitozoon cuniculi", - "strain": "EC2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221265.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/265/GCA_000221265.2/genes/GCA_000221265.2_Ence_cuni_EC2_V1.augustus.gtf.gz" - }, - { - "chromosomes": 12, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000221285.2", - "ncbiTaxonomyId": "986730", - "organism": "Encephalitozoon cuniculi EC1", - "species": "Encephalitozoon cuniculi", - "strain": "EC1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221285.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/221/285/GCA_000221285.2/genes/GCA_000221285.2_Ence_cuni_EC1_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000223845.4", - "ncbiTaxonomyId": "110365", - "organism": "Gregarina niphandrodes Unknown strain", - "species": "Gregarina niphandrodes", - "strain": "Unknown strain", - "supercontigs": 469, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000223845.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224805.2", - "ncbiTaxonomyId": "935652", - "organism": "Toxoplasma gondii RUB", - "species": "Toxoplasma gondii", - "strain": "RUB", - "supercontigs": 2424, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224805.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/805/GCA_000224805.2/genes/GCA_000224805.2_TGRUB_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224825.2", - "ncbiTaxonomyId": "943120", - "organism": "Toxoplasma gondii TgCATBr9", - "species": "Toxoplasma gondii", - "strain": "TgCATBr9", - "supercontigs": 2452, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224825.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/825/GCA_000224825.2/genes/GCA_000224825.2_TGCATBR9_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224845.2", - "ncbiTaxonomyId": "933077", - "organism": "Toxoplasma gondii VAND", - "species": "Toxoplasma gondii", - "strain": "VAND", - "supercontigs": 2137, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224845.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/845/GCA_000224845.2/genes/GCA_000224845.2_TGVAND_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224865.2", - "ncbiTaxonomyId": "943118", - "organism": "Toxoplasma gondii MAS", - "species": "Toxoplasma gondii", - "strain": "MAS", - "supercontigs": 2180, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224865.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/865/GCA_000224865.2/genes/GCA_000224865.2_TGMAS1_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224885.2", - "ncbiTaxonomyId": "943119", - "organism": "Toxoplasma gondii p89", - "species": "Toxoplasma gondii", - "strain": "p89", - "supercontigs": 2150, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224885.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/885/GCA_000224885.2/genes/GCA_000224885.2_TGP89A_v02.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000224905.2", - "ncbiTaxonomyId": "943167", - "organism": "Toxoplasma gondii FOU", - "species": "Toxoplasma gondii", - "strain": "FOU", - "supercontigs": 2869, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000224905.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/224/905/GCA_000224905.2/genes/GCA_000224905.2_TGFOU1v02.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 3076, - "genomeVersionAssemblyId": "GCA_000225285.2", - "ncbiTaxonomyId": "1035635", - "organism": "Epichloe glyceriae E277", - "species": "Epichloe glyceriae", - "strain": "E277", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000225285.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/225/285/GCA_000225285.2/genes/GCA_000225285.2_EpiGly_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000225605.1", - "ncbiTaxonomyId": "983644", - "organism": "Cordyceps militaris CM01", - "species": "Cordyceps militaris", - "strain": "CM01", - "supercontigs": 32, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000225605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000226095.1", - "ncbiTaxonomyId": "573729", - "organism": "Thermothelomyces thermophilus ATCC 42464", - "species": "Thermothelomyces thermophilus", - "strain": "ATCC 42464", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226095.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000226395.1", - "ncbiTaxonomyId": "500485", - "organism": "Penicillium rubens Wisconsin 54-1255", - "species": "Penicillium rubens", - "strain": "Wisconsin 54-1255", - "supercontigs": 49, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226395.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/226/395/GCA_000226395.1/genes/GCA_000226395.1_PenChr_Nov2007.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000226545.1", - "ncbiTaxonomyId": "515849", - "organism": "Podospora anserina S mat+", - "species": "Podospora anserina", - "strain": "S mat+", - "supercontigs": 33, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000227135.2", - "ncbiTaxonomyId": "5661", - "organism": "Leishmania donovani BPK282A1", - "species": "Leishmania donovani", - "strain": "BPK282A1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 11, - "contigs": 8279, - "genomeVersionAssemblyId": "GCA_000227375.1", - "ncbiTaxonomyId": "1055687", - "organism": "Trypanosoma vivax Y486", - "species": "Trypanosoma vivax", - "strain": "Y486", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227375.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/375/GCA_000227375.1/genes/GCA_000227375.1_ASM22737v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 2828, - "genomeVersionAssemblyId": "GCA_000227395.2", - "ncbiTaxonomyId": "1068625", - "organism": "Trypanosoma congolense IL3000", - "species": "Trypanosoma congolense", - "strain": "IL3000", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227395.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/227/395/GCA_000227395.2/genes/GCA_000227395.2_ASM22739v2.augustus.gtf.gz" - }, - { - "chromosomes": 23, - "contigs": 21, - "genomeVersionAssemblyId": "GCA_000230245.1", - "ncbiTaxonomyId": "999809", - "organism": "Sporisorium reilianum SRZ2", - "species": "Sporisorium reilianum", - "strain": "SRZ2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230245.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/245/GCA_000230245.1/genes/GCA_000230245.1_ASM23024v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000230375.1", - "ncbiTaxonomyId": "985895", - "organism": "Plenodomus lingam JN3", - "species": "Plenodomus lingam", - "strain": "JN3", - "supercontigs": 76, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000230395.2", - "ncbiTaxonomyId": "380704", - "organism": "Aspergillus niger ATCC 1015", - "species": "Aspergillus niger", - "strain": "ATCC 1015", - "supercontigs": 24, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230395.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/395/GCA_000230395.2/genes/GCA_000230395.2_ASPNI_v3.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1429, - "genomeVersionAssemblyId": "GCA_000230595.3", - "ncbiTaxonomyId": "1003232", - "organism": "Edhazardia aedis USNM 41457", - "species": "Edhazardia aedis", - "strain": "USNM 41457", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230595.3", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/230/595/GCA_000230595.3/genes/GCA_000230595.3_Edha_aedis_V4b.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000230625.1", - "ncbiTaxonomyId": "858893", - "organism": "Exophiala dermatitidis NIH/UT8656", - "species": "Exophiala dermatitidis", - "strain": "NIH/UT8656", - "supercontigs": 10, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000231115.1", - "ncbiTaxonomyId": "993615", - "organism": "Vittaforma corneae ATCC 50505", - "species": "Vittaforma corneae", - "strain": "ATCC 50505", - "supercontigs": 220, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000231115.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 34, - "contigs": 554, - "genomeVersionAssemblyId": "GCA_000234665.4", - "ncbiTaxonomyId": "929439", - "organism": "Leishmania mexicana MHOM/GT/2001/U1103", - "species": "Leishmania mexicana", - "strain": "MHOM/GT/2001/U1103", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000234665.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1016, - "genomeVersionAssemblyId": "GCA_000239835.2", - "ncbiTaxonomyId": "1033177", - "organism": "Aspergillus luchuensis IFO 4308", - "species": "Aspergillus luchuensis", - "strain": "IFO 4308", - "supercontigs": 146, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000239835.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/239/835/GCA_000239835.2/genes/GCA_000239835.2_Akaw_assembly01.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000247585.2", - "ncbiTaxonomyId": "761204", - "organism": "Phytophthora parasitica INRA-310", - "species": "Phytophthora parasitica", - "strain": "INRA-310", - "supercontigs": 708, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000247585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000250695.1", - "ncbiTaxonomyId": "1913371", - "organism": "Nematocida ausubeli ERTm2", - "species": "Nematocida ausubeli", - "strain": "ERTm2", - "supercontigs": 202, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250695.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/695/GCA_000250695.1/genes/GCA_000250695.1_Nema_parisii_ERTm2_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000250755.2", - "ncbiTaxonomyId": "860570", - "organism": "Leishmania major strain SD 75.1", - "species": "Leishmania major", - "strain": "strain SD 75.1", - "supercontigs": 36, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250755.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/755/GCA_000250755.2/genes/GCA_000250755.2_Leishmania_major_SD_75.1-1.1.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000250965.2", - "ncbiTaxonomyId": "1074872", - "organism": "Toxoplasma gondii ARI", - "species": "Toxoplasma gondii", - "strain": "ARI", - "supercontigs": 2723, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250965.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/250/965/GCA_000250965.2/genes/GCA_000250965.2_TGARI_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000250985.1", - "ncbiTaxonomyId": "881290", - "organism": "Nematocida parisii ERTm1", - "species": "Nematocida parisii", - "strain": "ERTm1", - "supercontigs": 65, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000250985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000256705.2", - "ncbiTaxonomyId": "943122", - "organism": "Toxoplasma gondii CAST", - "species": "Toxoplasma gondii", - "strain": "CAST", - "supercontigs": 2656, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256705.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/705/GCA_000256705.2/genes/GCA_000256705.2_TGCAST_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000256725.2", - "ncbiTaxonomyId": "1130821", - "organism": "Toxoplasma gondii TgCatPRC2", - "species": "Toxoplasma gondii", - "strain": "TgCatPRC2", - "supercontigs": 3060, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000256725.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/256/725/GCA_000256725.2/genes/GCA_000256725.2_TGCATPRC2_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000258005.2", - "ncbiTaxonomyId": "99158", - "organism": "Hammondia hammondi strain H.H.34", - "species": "Hammondia hammondi", - "strain": "strain H.H.34", - "supercontigs": 14860, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000258005.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 6995, - "genomeVersionAssemblyId": "GCA_000259835.1", - "ncbiTaxonomyId": "943121", - "organism": "Toxoplasma gondii TgCATBr5", - "species": "Toxoplasma gondii", - "strain": "TgCATBr5", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000259835.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/259/835/GCA_000259835.1/genes/GCA_000259835.1_TGCATBR5.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000260195.2", - "ncbiTaxonomyId": "1089451", - "organism": "Fusarium odoratissimum NRRL 54006", - "species": "Fusarium odoratissimum", - "strain": "NRRL 54006", - "supercontigs": 418, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000260195.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000260495.2", - "ncbiTaxonomyId": "1089452", - "organism": "Fusarium oxysporum f. sp. melonis 26406", - "species": "Fusarium oxysporum", - "strain": "f. sp. melonis 26406", - "supercontigs": 1146, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000260495.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/260/495/GCA_000260495.2/genes/GCA_000260495.2_FO_melonis_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000262795.1", - "ncbiTaxonomyId": "29031", - "organism": "Phlebotomus papatasi Israel", - "species": "Phlebotomus papatasi", - "strain": "Israel", - "supercontigs": 106826, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000262795.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/262/795/GCA_000262795.1/genes/GCA_000262795.1_Ppap_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000265325.1", - "ncbiTaxonomyId": "7200", - "organism": "Lutzomyia longipalpis Jacobina", - "species": "Lutzomyia longipalpis", - "strain": "Jacobina", - "supercontigs": 11532, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000265325.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/265/325/GCA_000265325.1/genes/GCA_000265325.1_Llon_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000271645.1", - "ncbiTaxonomyId": "578456", - "organism": "Tremella mesenterica DSM 1558", - "species": "Tremella mesenterica", - "strain": "DSM 1558", - "supercontigs": 45, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000271705.2", - "ncbiTaxonomyId": "660027", - "organism": "Fusarium oxysporum Fo47", - "species": "Fusarium oxysporum", - "strain": "Fo47", - "supercontigs": 124, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000271705.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/705/GCA_000271705.2/genes/GCA_000271705.2_FO_Fo47_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000271745.2", - "ncbiTaxonomyId": "660029", - "organism": "Fusarium oxysporum NRRL 32931", - "species": "Fusarium oxysporum", - "strain": "NRRL 32931", - "supercontigs": 168, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/271/745/GCA_000271745.2/genes/GCA_000271745.2_FO_FOSC_3_a_V1.augustus.gtf.gz" - }, - { - "chromosomes": 12, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000277815.3", - "ncbiTaxonomyId": "907965", - "organism": "Encephalitozoon hellem ATCC 50504", - "species": "Encephalitozoon hellem", - "strain": "ATCC 50504", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277815.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 6177, - "genomeVersionAssemblyId": "GCA_000278365.1", - "ncbiTaxonomyId": "1194599", - "organism": "Toxoplasma gondii CtCo5", - "species": "Toxoplasma gondii", - "strain": "CtCo5", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000278365.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/278/365/GCA_000278365.1/genes/GCA_000278365.1_ASM27836v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000280035.2", - "ncbiTaxonomyId": "1178016", - "organism": "Encephalitozoon romaleae SJ-2008", - "species": "Encephalitozoon romaleae", - "strain": "SJ-2008", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000280035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000281045.1", - "ncbiTaxonomyId": "1156394", - "organism": "Saprolegnia diclina VS20", - "species": "Saprolegnia diclina", - "strain": "VS20", - "supercontigs": 390, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000281045.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000293215.1", - "ncbiTaxonomyId": "1186058", - "organism": "Trichosporon asahii var. asahii CBS 2479", - "species": "Trichosporon asahii", - "strain": "var. asahii CBS 2479", - "supercontigs": 77, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000293215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000300495.1", - "ncbiTaxonomyId": "85056", - "organism": "Trypanosoma cruzi marinkellei strain B7", - "species": "Trypanosoma cruzi", - "strain": "marinkellei strain B7", - "supercontigs": 16783, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300495.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/495/GCA_000300495.1/genes/GCA_000300495.1_ASM30049v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000300775.2", - "ncbiTaxonomyId": "30069", - "organism": "Anopheles stephensi Indian", - "species": "Anopheles stephensi", - "strain": "Indian", - "supercontigs": 23371, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300775.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/300/775/GCA_000300775.2/genes/GCA_000300775.2_ASM30077v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000302655.1", - "ncbiTaxonomyId": "1126212", - "organism": "Macrophomina phaseolina MS6", - "species": "Macrophomina phaseolina", - "strain": "MS6", - "supercontigs": 1506, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000302655.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/302/655/GCA_000302655.1/genes/GCA_000302655.1_MphMS6_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000312925.2", - "ncbiTaxonomyId": "1097556", - "organism": "Taphrina deformans PYCC 5710", - "species": "Taphrina deformans", - "strain": "PYCC 5710", - "supercontigs": 394, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000312925.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/312/925/GCA_000312925.2/genes/GCA_000312925.2_ASM31292v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000313135.1", - "ncbiTaxonomyId": "1257118", - "organism": "Acanthamoeba castellanii str. Neff", - "species": "Acanthamoeba castellanii", - "strain": "str. Neff", - "supercontigs": 384, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000313135.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 8427, - "genomeVersionAssemblyId": "GCA_000313815.1", - "ncbiTaxonomyId": "723287", - "organism": "Anncaliia algerae Undeen", - "species": "Anncaliia algerae", - "strain": "Undeen", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000313815.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/313/815/GCA_000313815.1/genes/GCA_000313815.1_ASM31381v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000316135.1", - "ncbiTaxonomyId": "72359", - "organism": "Trachipleistophora hominis Unknown strain", - "species": "Trachipleistophora hominis", - "strain": "Unknown strain", - "supercontigs": 310, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000316135.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/316/135/GCA_000316135.1/genes/GCA_000316135.1_ASM31613v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000321355.1", - "ncbiTaxonomyId": "1120755", - "organism": "Plasmodium cynomolgi strain B", - "species": "Plasmodium cynomolgi", - "strain": "strain B", - "supercontigs": 1649, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000321355.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000325525.2", - "ncbiTaxonomyId": "1130820", - "organism": "Toxoplasma gondii GAB2-2007-GAL-DOM2", - "species": "Toxoplasma gondii", - "strain": "GAB2-2007-GAL-DOM2", - "supercontigs": 2481, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000325525.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/325/525/GCA_000325525.2/genes/GCA_000325525.2_TGGABGALDOM2_v2.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 15007, - "genomeVersionAssemblyId": "GCA_000327425.1", - "ncbiTaxonomyId": "366581", - "organism": "Trypanosoma cruzi strain Esmeraldo", - "species": "Trypanosoma cruzi", - "strain": "strain Esmeraldo", - "supercontigs": 796, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000327425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/327/425/GCA_000327425.1/genes/GCA_000327425.1_Trypanosoma_cruzi-5.1.3.augustus.gtf.gz" - }, - { - "chromosomes": 23, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000328475.2", - "ncbiTaxonomyId": "5270", - "organism": "Ustilago maydis 521", - "species": "Ustilago maydis", - "strain": "521", - "supercontigs": 4, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000328475.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000330505.1", - "ncbiTaxonomyId": "370355", - "organism": "Entamoeba invadens IP1", - "species": "Entamoeba invadens", - "strain": "IP1", - "supercontigs": 1144, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000330505.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 30, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000331325.2", - "ncbiTaxonomyId": "5656", - "organism": "Crithidia fasciculata strain Cf-Cl", - "species": "Crithidia fasciculata", - "strain": "strain Cf-Cl", - "supercontigs": 427, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331325.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/325/GCA_000331325.2/genes/GCA_000331325.2_Crithidia_fasciculata-14.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000331345.1", - "ncbiTaxonomyId": "860569", - "organism": "Leishmania major strain LV39c5", - "species": "Leishmania major", - "strain": "strain LV39c5", - "supercontigs": 773, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331345.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/345/GCA_000331345.1/genes/GCA_000331345.1_Leishmania_major_LV39c5-1.0.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 14752, - "genomeVersionAssemblyId": "GCA_000331405.1", - "ncbiTaxonomyId": "914063", - "organism": "Trypanosoma cruzi JR cl. 4", - "species": "Trypanosoma cruzi", - "strain": "JR cl. 4", - "supercontigs": 560, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331405.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/331/405/GCA_000331405.1/genes/GCA_000331405.1_Trypanosoma_cruzi_JR_cl4-1.1.4.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000333855.2", - "ncbiTaxonomyId": "5705", - "organism": "Endotrypanum monterogeii strain LV88", - "species": "Endotrypanum monterogeii", - "strain": "strain LV88", - "supercontigs": 1925, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333855.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/855/GCA_000333855.2/genes/GCA_000333855.2_Endotrypanum_monterogeii-LV88-1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000333975.2", - "ncbiTaxonomyId": "42068", - "organism": "Pneumocystis jirovecii SE8", - "species": "Pneumocystis jirovecii", - "strain": "SE8", - "supercontigs": 328, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333975.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/333/975/GCA_000333975.2/genes/GCA_000333975.2_ASM33397v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 4075, - "genomeVersionAssemblyId": "GCA_000338675.2", - "ncbiTaxonomyId": "1074873", - "organism": "Toxoplasma gondii COUG", - "species": "Toxoplasma gondii", - "strain": "COUG", - "supercontigs": 105, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338675.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/675/GCA_000338675.2/genes/GCA_000338675.2_TGCOUG_v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000338855.1", - "ncbiTaxonomyId": "885311", - "organism": "Entamoeba histolytica KU27", - "species": "Entamoeba histolytica", - "strain": "KU27", - "supercontigs": 1796, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000338855.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/338/855/GCA_000338855.1/genes/GCA_000338855.1_EHA_ku27_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000340215.1", - "ncbiTaxonomyId": "383855", - "organism": "Pseudocercospora fijiensis CIRAD86", - "species": "Pseudocercospora fijiensis", - "strain": "CIRAD86", - "supercontigs": 56, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000340215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 35, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000340355.2", - "ncbiTaxonomyId": "1295825", - "organism": "Leishmania braziliensis MHOM/BR/75/M2903", - "species": "Leishmania braziliensis", - "strain": "MHOM/BR/75/M2903", - "supercontigs": 709, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340355.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/355/GCA_000340355.2/genes/GCA_000340355.2_Leishmania_braziliensis_M2903-1.0.6.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000340495.1", - "ncbiTaxonomyId": "1295824", - "organism": "Leishmania panamensis MHOM/COL/81/L13", - "species": "Leishmania panamensis", - "strain": "MHOM/COL/81/L13", - "supercontigs": 820, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340495.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/340/495/GCA_000340495.1/genes/GCA_000340495.1_Leishmania_panamensis_L13-1.3.1.augustus.gtf.gz" - }, - { - "chromosomes": 2, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000342415.1", - "ncbiTaxonomyId": "1537102", - "organism": "Theileria equi strain WA", - "species": "Theileria equi", - "strain": "strain WA", - "supercontigs": 8, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000342415.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000344925.1", - "ncbiTaxonomyId": "885319", - "organism": "Entamoeba histolytica HM-1:IMSS-B", - "species": "Entamoeba histolytica", - "strain": "HM-1:IMSS-B", - "supercontigs": 1938, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000344925.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/344/925/GCA_000344925.1/genes/GCA_000344925.1_EHA_CB_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000346345.1", - "ncbiTaxonomyId": "885315", - "organism": "Entamoeba histolytica HM-3:IMSS", - "species": "Entamoeba histolytica", - "strain": "HM-3:IMSS", - "supercontigs": 1880, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000346345.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/346/345/GCA_000346345.1/genes/GCA_000346345.1_EHA.strHM3_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000347355.1", - "ncbiTaxonomyId": "1111077", - "organism": "Claviceps purpurea 20.1", - "species": "Claviceps purpurea", - "strain": "20.1", - "supercontigs": 191, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000347355.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/347/355/GCA_000347355.1/genes/GCA_000347355.1_ASM34735v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349005.2", - "ncbiTaxonomyId": "1069680", - "organism": "Pneumocystis murina B123", - "species": "Pneumocystis murina", - "strain": "B123", - "supercontigs": 20, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000349005.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349025.1", - "ncbiTaxonomyId": "112268", - "organism": "Anopheles minimus MINIMUS1", - "species": "Anopheles minimus", - "strain": "MINIMUS1", - "supercontigs": 678, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349025.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/025/GCA_000349025.1/genes/GCA_000349025.1_Anop_mini_MINIMUS1_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349045.1", - "ncbiTaxonomyId": "30069", - "organism": "Anopheles stephensi SDA-500", - "species": "Anopheles stephensi", - "strain": "SDA-500", - "supercontigs": 1110, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349045.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/045/GCA_000349045.1/genes/GCA_000349045.1_Anop_step_SDA-500_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349065.1", - "ncbiTaxonomyId": "34691", - "organism": "Anopheles quadriannulatus SANGWE", - "species": "Anopheles quadriannulatus", - "strain": "SANGWE", - "supercontigs": 2823, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349065.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/065/GCA_000349065.1/genes/GCA_000349065.1_Anop_quad_QUAD4_A_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349105.1", - "ncbiTaxonomyId": "199890", - "organism": "Anopheles epiroticus Epiroticus2", - "species": "Anopheles epiroticus", - "strain": "Epiroticus2", - "supercontigs": 2673, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349105.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/105/GCA_000349105.1/genes/GCA_000349105.1_Anop_epir_epiroticus2_V1.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349125.2", - "ncbiTaxonomyId": "7167", - "organism": "Anopheles albimanus STECLA", - "species": "Anopheles albimanus", - "strain": "STECLA", - "supercontigs": 196, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349125.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/125/GCA_000349125.2/genes/GCA_000349125.2_Anop_albi_ALBI9_A_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349145.1", - "ncbiTaxonomyId": "7168", - "organism": "Anopheles dirus WRAIR2", - "species": "Anopheles dirus", - "strain": "WRAIR2", - "supercontigs": 1266, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349145.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/145/GCA_000349145.1/genes/GCA_000349145.1_Anop_diru_WRAIR2_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349165.1", - "ncbiTaxonomyId": "43041", - "organism": "Anopheles christyi ACHKN1017", - "species": "Anopheles christyi", - "strain": "ACHKN1017", - "supercontigs": 30369, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349165.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/165/GCA_000349165.1/genes/GCA_000349165.1_Anop_chri_ACHKN1017_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000349185.1", - "ncbiTaxonomyId": "7173", - "organism": "Anopheles arabiensis Dongola", - "species": "Anopheles arabiensis", - "strain": "Dongola", - "supercontigs": 1214, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/349/185/GCA_000349185.1/genes/GCA_000349185.1_Anop_arab_DONG5_A_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000350345.1", - "ncbiTaxonomyId": "1229664", - "organism": "Fusarium oxysporum f. sp. cubense race 1", - "species": "Fusarium oxysporum", - "strain": "f. sp. cubense race 1", - "supercontigs": 1341, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350345.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/345/GCA_000350345.1/genes/GCA_000350345.1_Foc1_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000350365.1", - "ncbiTaxonomyId": "2502994", - "organism": "Fusarium odoratissimum strain race 4", - "species": "Fusarium odoratissimum", - "strain": "strain race 4", - "supercontigs": 840, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/350/365/GCA_000350365.1/genes/GCA_000350365.1_Foc4_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000365145.2", - "ncbiTaxonomyId": "1220924", - "organism": "Cyphellophora europaea CBS 101466", - "species": "Cyphellophora europaea", - "strain": "CBS 101466", - "supercontigs": 19, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000365165.2", - "ncbiTaxonomyId": "1279043", - "organism": "Cladophialophora carrionii CBS 160.54", - "species": "Cladophialophora carrionii", - "strain": "CBS 160.54", - "supercontigs": 19, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 43931, - "genomeVersionAssemblyId": "GCA_000365225.1", - "ncbiTaxonomyId": "1206070", - "organism": "Trypanosoma cruzi Tula cl2", - "species": "Trypanosoma cruzi", - "strain": "Tula cl2", - "supercontigs": 1780, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/225/GCA_000365225.1/genes/GCA_000365225.1_Trypanosoma_cruzi_Tula_cl2-1.0.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000365475.1", - "ncbiTaxonomyId": "885318", - "organism": "Entamoeba histolytica HM-1:IMSS-A", - "species": "Entamoeba histolytica", - "strain": "HM-1:IMSS-A", - "supercontigs": 1685, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365475.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/365/475/GCA_000365475.1/genes/GCA_000365475.1_EHA_CA_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000371365.1", - "ncbiTaxonomyId": "7370", - "organism": "Musca domestica aabys", - "species": "Musca domestica", - "strain": "aabys", - "supercontigs": 20487, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000371365.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/371/365/GCA_000371365.1/genes/GCA_000371365.1_Musca_domestica-2.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000383075.1", - "ncbiTaxonomyId": "578461", - "organism": "Nosema bombycis CQ1", - "species": "Nosema bombycis", - "strain": "CQ1", - "supercontigs": 1607, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000383075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/383/075/GCA_000383075.1/genes/GCA_000383075.1_NosBomCQ1_v1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000385855.2", - "ncbiTaxonomyId": "1240240", - "organism": "Anncaliia algerae PRA109", - "species": "Anncaliia algerae", - "strain": "PRA109", - "supercontigs": 7113, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385855.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/855/GCA_000385855.2/genes/GCA_000385855.2_Annc_alge_PRA109_V4.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000385875.2", - "ncbiTaxonomyId": "1288291", - "organism": "Anncaliia algerae PRA339", - "species": "Anncaliia algerae", - "strain": "PRA339", - "supercontigs": 431, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385875.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/385/875/GCA_000385875.2/genes/GCA_000385875.2_Annc_alge_insect_USDA_JJB_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387425.2", - "ncbiTaxonomyId": "1223557", - "organism": "Globisporangium irregulare DAOM BR486", - "species": "Globisporangium irregulare", - "strain": "DAOM BR486", - "supercontigs": 5887, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387425.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/425/GCA_000387425.2/genes/GCA_000387425.2_pir_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387445.2", - "ncbiTaxonomyId": "1223555", - "organism": "Pythium aphanidermatum DAOM BR444", - "species": "Pythium aphanidermatum", - "strain": "DAOM BR444", - "supercontigs": 1774, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387445.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/445/GCA_000387445.2/genes/GCA_000387445.2_pag1_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387465.2", - "ncbiTaxonomyId": "1223558", - "organism": "Globisporangium iwayamae DAOM BR242034", - "species": "Globisporangium iwayamae", - "strain": "DAOM BR242034", - "supercontigs": 11542, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387465.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/465/GCA_000387465.2/genes/GCA_000387465.2_piw_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387505.2", - "ncbiTaxonomyId": "1223556", - "organism": "Pythium arrhenomanes ATCC 12531", - "species": "Pythium arrhenomanes", - "strain": "ATCC 12531", - "supercontigs": 10972, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387505.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/505/GCA_000387505.2/genes/GCA_000387505.2_par_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387525.2", - "ncbiTaxonomyId": "1223559", - "organism": "Globisporangium ultimum var. sporangiiferum BR650", - "species": "Globisporangium ultimum", - "strain": "var. sporangiiferum BR650", - "supercontigs": 5482, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387525.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/525/GCA_000387525.2/genes/GCA_000387525.2_pug3_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000387545.2", - "ncbiTaxonomyId": "1223560", - "organism": "Phytopythium vexans DAOM BR484", - "species": "Phytopythium vexans", - "strain": "DAOM BR484", - "supercontigs": 3685, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000387545.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/387/545/GCA_000387545.2/genes/GCA_000387545.2_pve_scaffolds_v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000400815.2", - "ncbiTaxonomyId": "1202531", - "organism": "Verticillium dahliae JR2", - "species": "Verticillium dahliae", - "strain": "JR2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000400815.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/400/815/GCA_000400815.2/genes/GCA_000400815.2_VDAG_JR2v.4.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000401635.1", - "ncbiTaxonomyId": "1220926", - "organism": "Mucor circinelloides 1006PhL", - "species": "Mucor circinelloides", - "strain": "1006PhL", - "supercontigs": 470, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000401635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/401/635/GCA_000401635.1/genes/GCA_000401635.1_Muco_sp_1006Ph_V1.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000409445.2", - "ncbiTaxonomyId": "1303197", - "organism": "Leishmania martiniquensis LEM2494", - "species": "Leishmania martiniquensis", - "strain": "LEM2494", - "supercontigs": 215, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000409445.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/409/445/GCA_000409445.2/genes/GCA_000409445.2_Leishmania_MAR_LEM2494-1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000410695.2", - "ncbiTaxonomyId": "40284", - "organism": "Leishmania arabica strain LEM1108", - "species": "Leishmania arabica", - "strain": "strain LEM1108", - "supercontigs": 132, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410695.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/695/GCA_000410695.2/genes/GCA_000410695.2_Leishmania_arabica_LEM1108-1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000410715.1", - "ncbiTaxonomyId": "1206058", - "organism": "Leishmania tropica L590", - "species": "Leishmania tropica", - "strain": "L590", - "supercontigs": 124, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410715.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/715/GCA_000410715.1/genes/GCA_000410715.1_Leishmania_tropica_L590-2.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000410735.1", - "ncbiTaxonomyId": "1262450", - "organism": "Ophiostoma piceae UAMH 11346", - "species": "Ophiostoma piceae", - "strain": "UAMH 11346", - "supercontigs": 45, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/735/GCA_000410735.1/genes/GCA_000410735.1_Opiceae_UAMHv01.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000410755.2", - "ncbiTaxonomyId": "5663", - "organism": "Leishmania enriettii strain LEM3045", - "species": "Leishmania enriettii", - "strain": "strain LEM3045", - "supercontigs": 459, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410755.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/410/755/GCA_000410755.2/genes/GCA_000410755.2_Leishmania_enrietti_LEM3045-1.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1392, - "genomeVersionAssemblyId": "GCA_000430065.1", - "ncbiTaxonomyId": "1358809", - "organism": "Spraguea lophii 42_110", - "species": "Spraguea lophii", - "strain": "42_110", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000430065.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/430/065/GCA_000430065.1/genes/GCA_000430065.1_Sprlop1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000438535.1", - "ncbiTaxonomyId": "5659", - "organism": "Leishmania amazonensis MHOM/BR/71973/M2269", - "species": "Leishmania amazonensis", - "strain": "MHOM/BR/71973/M2269", - "supercontigs": 2627, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000438535.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/438/535/GCA_000438535.1/genes/GCA_000438535.1_LeiAma1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000441895.2", - "ncbiTaxonomyId": "74873", - "organism": "Anopheles sinensis China", - "species": "Anopheles sinensis", - "strain": "China", - "supercontigs": 9592, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441895.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/895/GCA_000441895.2/genes/GCA_000441895.2_AS2.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000441995.1", - "ncbiTaxonomyId": "62297", - "organism": "Leishmania turanica strain LEM423", - "species": "Leishmania turanica", - "strain": "strain LEM423", - "supercontigs": 183, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441995.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/441/995/GCA_000441995.1/genes/GCA_000441995.1_Leishmania_turanica_LEM423-1.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000443025.1", - "ncbiTaxonomyId": "40285", - "organism": "Leishmania gerbilli strain LEM452", - "species": "Leishmania gerbilli", - "strain": "strain LEM452", - "supercontigs": 106, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000443025.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/443/025/GCA_000443025.1/genes/GCA_000443025.1_Leishmania_gerbilii_LEM452-1.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000444285.2", - "ncbiTaxonomyId": "1206056", - "organism": "Leishmania aethiopica L147", - "species": "Leishmania aethiopica", - "strain": "L147", - "supercontigs": 124, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000444285.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/444/285/GCA_000444285.2/genes/GCA_000444285.2_Leishmania_aethiopica-L147-2.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000447185.1", - "ncbiTaxonomyId": "1037528", - "organism": "Nosema apis BRL 01", - "species": "Nosema apis", - "strain": "BRL 01", - "supercontigs": 554, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000447185.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/447/185/GCA_000447185.1/genes/GCA_000447185.1_NapisBRLv01.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000470725.1", - "ncbiTaxonomyId": "5661", - "organism": "Leishmania donovani strain BHU 1220", - "species": "Leishmania donovani", - "strain": "strain BHU 1220", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000470725.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/470/725/GCA_000470725.1/genes/GCA_000470725.1_BHU1220.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000472065.2", - "ncbiTaxonomyId": "74873", - "organism": "Anopheles sinensis SINENSIS", - "species": "Anopheles sinensis", - "strain": "SINENSIS", - "supercontigs": 10448, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000472065.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/472/065/GCA_000472065.2/genes/GCA_000472065.2_Anop_sine_SINENSIS_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473185.1", - "ncbiTaxonomyId": "74869", - "organism": "Anopheles maculatus maculatus3", - "species": "Anopheles maculatus", - "strain": "maculatus3", - "supercontigs": 47797, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473185.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/185/GCA_000473185.1/genes/GCA_000473185.1_Anop_macu_maculatus3_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473375.1", - "ncbiTaxonomyId": "139723", - "organism": "Anopheles culicifacies A-37", - "species": "Anopheles culicifacies", - "strain": "A-37", - "supercontigs": 16162, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473375.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/375/GCA_000473375.1/genes/GCA_000473375.1_Anop_culi_species_A-37_1_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473445.2", - "ncbiTaxonomyId": "69004", - "organism": "Anopheles farauti FAR1", - "species": "Anopheles farauti", - "strain": "FAR1", - "supercontigs": 310, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473445.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/445/GCA_000473445.2/genes/GCA_000473445.2_Anop_fara_FAR1_V2.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473505.1", - "ncbiTaxonomyId": "41427", - "organism": "Anopheles atroparvus EBRO", - "species": "Anopheles atroparvus", - "strain": "EBRO", - "supercontigs": 1315, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473505.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/505/GCA_000473505.1/genes/GCA_000473505.1_Anop_atro_EBRO_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473525.2", - "ncbiTaxonomyId": "34690", - "organism": "Anopheles melas CM1001059_A", - "species": "Anopheles melas", - "strain": "CM1001059_A", - "supercontigs": 20229, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473525.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/525/GCA_000473525.2/genes/GCA_000473525.2_Anop_mela_CM1001059_A_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000473845.2", - "ncbiTaxonomyId": "30066", - "organism": "Anopheles merus MAF", - "species": "Anopheles merus", - "strain": "MAF", - "supercontigs": 2027, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473845.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/473/845/GCA_000473845.2/genes/GCA_000473845.2_Anop_meru_MAF_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 7433, - "genomeVersionAssemblyId": "GCA_000492115.1", - "ncbiTaxonomyId": "429131", - "organism": "Trypanosoma rangeli SC58", - "species": "Trypanosoma rangeli", - "strain": "SC58", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000492115.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/492/115/GCA_000492115.1/genes/GCA_000492115.1_T_rangeli_SC58v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1210, - "genomeVersionAssemblyId": "GCA_000496795.1", - "ncbiTaxonomyId": "1416333", - "organism": "Trypanosoma cruzi Dm28c 2014", - "species": "Trypanosoma cruzi", - "strain": "Dm28c 2014", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000496795.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/496/795/GCA_000496795.1/genes/GCA_000496795.1_T.cruzi.Dm28c_v01.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 239, - "genomeVersionAssemblyId": "GCA_000498715.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage A2 isolate DH", - "species": "Giardia Assemblage A", - "strain": "2 isolate DH", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498715.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/715/GCA_000498715.1/genes/GCA_000498715.1_ASM49871v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 543, - "genomeVersionAssemblyId": "GCA_000498735.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage B isolate GS_B", - "species": "Giardia Assemblage B", - "strain": "isolate GS_B", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000498735.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/498/735/GCA_000498735.1/genes/GCA_000498735.1_ASM49873v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499105.1", - "ncbiTaxonomyId": "5763", - "organism": "Naegleria fowleri ATCC 30863", - "species": "Naegleria fowleri", - "strain": "ATCC 30863", - "supercontigs": 1124, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499105.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/105/GCA_000499105.1/genes/GCA_000499105.1_Naegleria_fowleri_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499385.1", - "ncbiTaxonomyId": "51315", - "organism": "Eimeria necatrix Houghton", - "species": "Eimeria necatrix", - "strain": "Houghton", - "supercontigs": 3707, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499385.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499425.1", - "ncbiTaxonomyId": "5801", - "organism": "Eimeria acervulina Houghton", - "species": "Eimeria acervulina", - "strain": "Houghton", - "supercontigs": 3415, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499425.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499445.1", - "ncbiTaxonomyId": "51316", - "organism": "Eimeria praecox Houghton", - "species": "Eimeria praecox", - "strain": "Houghton", - "supercontigs": 21348, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499445.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/445/GCA_000499445.1/genes/GCA_000499445.1_EPH001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499545.1", - "ncbiTaxonomyId": "5802", - "organism": "Eimeria tenella strain Houghton", - "species": "Eimeria tenella", - "strain": "strain Houghton", - "supercontigs": 4664, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499545.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/545/GCA_000499545.1/genes/GCA_000499545.1_ETH001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499605.1", - "ncbiTaxonomyId": "5804", - "organism": "Eimeria maxima Weybridge", - "species": "Eimeria maxima", - "strain": "Weybridge", - "supercontigs": 3564, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499605.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499725.1", - "ncbiTaxonomyId": "51314", - "organism": "Eimeria brunetti Houghton", - "species": "Eimeria brunetti", - "strain": "Houghton", - "supercontigs": 8575, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000499725.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/499/725/GCA_000499725.1/genes/GCA_000499725.1_EBH001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000499745.2", - "ncbiTaxonomyId": "44415", - "organism": "Eimeria mitis Houghton", - "species": "Eimeria mitis", - "strain": "Houghton", - "supercontigs": 15978, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499745.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000507425.3", - "ncbiTaxonomyId": "1296119", - "organism": "Kwoniella heveanensis CBS 569", - "species": "Kwoniella heveanensis", - "strain": "CBS 569", - "supercontigs": 242, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000507425.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/507/425/GCA_000507425.3/genes/GCA_000507425.3_Cryp_heve_CBS569_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000520075.1", - "ncbiTaxonomyId": "112090", - "organism": "Aphanomyces astaci strain APO3", - "species": "Aphanomyces astaci", - "strain": "strain APO3", - "supercontigs": 835, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520075.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000520115.1", - "ncbiTaxonomyId": "157072", - "organism": "Aphanomyces invadans NJM9701", - "species": "Aphanomyces invadans", - "strain": "NJM9701", - "supercontigs": 481, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000524495.1", - "ncbiTaxonomyId": "1237626", - "organism": "Plasmodium inui San Antonio 1", - "species": "Plasmodium inui", - "strain": "San Antonio 1", - "supercontigs": 323, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000524495.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000524515.1", - "ncbiTaxonomyId": "138298", - "organism": "Plasmodium vinckei petteri strain CR", - "species": "Plasmodium vinckei", - "strain": "petteri strain CR", - "supercontigs": 66, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000524515.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/524/515/GCA_000524515.1/genes/GCA_000524515.1_Plas_vinc_pett_CR_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000585515.1", - "ncbiTaxonomyId": "1182544", - "organism": "Cladophialophora yegresii CBS 114405", - "species": "Cladophialophora yegresii", - "strain": "CBS 114405", - "supercontigs": 8, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000585535.1", - "ncbiTaxonomyId": "1182543", - "organism": "Cladophialophora psammophila CBS 110553", - "species": "Cladophialophora psammophila", - "strain": "CBS 110553", - "supercontigs": 123, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1156, - "genomeVersionAssemblyId": "GCA_000648675.3", - "ncbiTaxonomyId": "79782", - "organism": "Cimex lectularius Harlan", - "species": "Cimex lectularius", - "strain": "Harlan", - "supercontigs": 417, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000648675.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000671735.1", - "ncbiTaxonomyId": "201502", - "organism": "Glossina fuscipes IAEA", - "species": "Glossina fuscipes", - "strain": "IAEA", - "supercontigs": 2395, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671735.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/735/GCA_000671735.1/genes/GCA_000671735.1_Glossina_fuscipes-3.0.2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000671755.1", - "ncbiTaxonomyId": "37001", - "organism": "Glossina brevipalpis IAEA", - "species": "Glossina brevipalpis", - "strain": "IAEA", - "supercontigs": 1651, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/671/755/GCA_000671755.1/genes/GCA_000671755.1_Glossina_brevipalpis_1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000688715.1", - "ncbiTaxonomyId": "7398", - "organism": "Glossina pallidipes IAEA", - "species": "Glossina pallidipes", - "strain": "IAEA", - "supercontigs": 1726, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688715.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/715/GCA_000688715.1/genes/GCA_000688715.1_Glossina_pallidipes-1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000688735.1", - "ncbiTaxonomyId": "7395", - "organism": "Glossina austeni TTRI", - "species": "Glossina austeni", - "strain": "TTRI", - "supercontigs": 2205, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688735.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/688/735/GCA_000688735.1/genes/GCA_000688735.1_Glossina_austeni-1.0.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 2871, - "genomeVersionAssemblyId": "GCA_000691245.1", - "ncbiTaxonomyId": "71804", - "organism": "Trypanosoma grayi ANR4", - "species": "Trypanosoma grayi", - "strain": "ANR4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691245.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000691945.2", - "ncbiTaxonomyId": "1133968", - "organism": "Babesia microti strain RI", - "species": "Babesia microti", - "strain": "strain RI", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691945.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000697685.1", - "ncbiTaxonomyId": "1137138", - "organism": "Pleurotus ostreatus PC15", - "species": "Pleurotus ostreatus", - "strain": "PC15", - "supercontigs": 12, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000697685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/697/685/GCA_000697685.1/genes/GCA_000697685.1_PleosPC15_2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000709005.1", - "ncbiTaxonomyId": "54757", - "organism": "Plasmodium vinckei vinckei strain vinckei", - "species": "Plasmodium vinckei", - "strain": "vinckei strain vinckei", - "supercontigs": 49, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000709125.1", - "ncbiTaxonomyId": "1182545", - "organism": "Exophiala aquamarina CBS 119918", - "species": "Exophiala aquamarina", - "strain": "CBS 119918", - "supercontigs": 151, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000723445.1", - "ncbiTaxonomyId": "5866", - "organism": "Babesia bigemina strain BOND", - "species": "Babesia bigemina", - "strain": "strain BOND", - "supercontigs": 478, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723445.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/445/GCA_000723445.1/genes/GCA_000723445.1_BBBOND_0001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000723665.1", - "ncbiTaxonomyId": "1263082", - "organism": "Lichtheimia corymbifera JMRC:FSU:9682", - "species": "Lichtheimia corymbifera", - "strain": "JMRC:FSU:9682", - "supercontigs": 209, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/723/665/GCA_000723665.1/genes/GCA_000723665.1_454Minimus.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 356, - "genomeVersionAssemblyId": "GCA_000723685.1", - "ncbiTaxonomyId": "5854", - "organism": "Plasmodium reichenowi CDC", - "species": "Plasmodium reichenowi", - "strain": "CDC", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000723685.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 701, - "genomeVersionAssemblyId": "GCA_000727475.1", - "ncbiTaxonomyId": "42890", - "organism": "Sarcocystis neurona SN3", - "species": "Sarcocystis neurona", - "strain": "SN3", - "supercontigs": 171, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000727475.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/727/475/GCA_000727475.1/genes/GCA_000727475.1_ASM72747v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 176, - "genomeVersionAssemblyId": "GCA_000732125.1", - "ncbiTaxonomyId": "563466", - "organism": "Scedosporium apiospermum IHEM 14462", - "species": "Scedosporium apiospermum", - "strain": "IHEM 14462", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000732125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000732565.1", - "ncbiTaxonomyId": "1280524", - "organism": "Stachybotrys chartarum IBT 40293", - "species": "Stachybotrys chartarum", - "strain": "IBT 40293", - "supercontigs": 2342, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000732565.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/732/565/GCA_000732565.1/genes/GCA_000732565.1_S40293v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000738915.1", - "ncbiTaxonomyId": "1913371", - "organism": "Nematocida ausubeli ERTm6", - "species": "Nematocida ausubeli", - "strain": "ERTm6", - "supercontigs": 22, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000738915.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000740895.1", - "ncbiTaxonomyId": "869250", - "organism": "Theileria orientalis strain Shintoku", - "species": "Theileria orientalis", - "strain": "strain Shintoku", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000740895.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 35, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000755165.1", - "ncbiTaxonomyId": "5679", - "organism": "Leishmania panamensis strain MHOM/PA/94/PSC-1", - "species": "Leishmania panamensis", - "strain": "strain MHOM/PA/94/PSC-1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000755165.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000760515.2", - "ncbiTaxonomyId": "1485682", - "organism": "Mitosporidium daphniae UGP3", - "species": "Mitosporidium daphniae", - "strain": "UGP3", - "supercontigs": 610, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000760515.2", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 2297, - "genomeVersionAssemblyId": "GCA_000769155.2", - "ncbiTaxonomyId": "88456", - "organism": "Cyclospora cayetanensis strain CHN_HEN01", - "species": "Cyclospora cayetanensis", - "strain": "strain CHN_HEN01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000769155.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000769735.1", - "ncbiTaxonomyId": "27334", - "organism": "Penicillium expansum d1", - "species": "Penicillium expansum", - "strain": "d1", - "supercontigs": 270, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000769735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/769/735/GCA_000769735.1/genes/GCA_000769735.1_ASM76973v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 15, - "genomeVersionAssemblyId": "GCA_000803265.1", - "ncbiTaxonomyId": "1354746", - "organism": "Ordospora colligata OC4", - "species": "Ordospora colligata", - "strain": "OC4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000803265.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 78, - "genomeVersionAssemblyId": "GCA_000804495.1", - "ncbiTaxonomyId": "237895", - "organism": "Cryptosporidium hominis 37999", - "species": "Cryptosporidium hominis", - "strain": "37999", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000804495.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/804/495/GCA_000804495.1/genes/GCA_000804495.1_ASM80449v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000814975.1", - "ncbiTaxonomyId": "1276135", - "organism": "Metarhizium anisopliae ARSEF 549", - "species": "Metarhizium anisopliae", - "strain": "ARSEF 549", - "supercontigs": 74, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000814975.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/814/975/GCA_000814975.1/genes/GCA_000814975.1_MAN_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000818775.1", - "ncbiTaxonomyId": "67801", - "organism": "Glossina palpalis IAEA", - "species": "Glossina palpalis", - "strain": "IAEA", - "supercontigs": 3926, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000818775.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/818/775/GCA_000818775.1/genes/GCA_000818775.1_Glossina_palpalis_gambiensis-2.0.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 12, - "genomeVersionAssemblyId": "GCA_000820605.1", - "ncbiTaxonomyId": "1398154", - "organism": "Sporothrix brasiliensis 5110", - "species": "Sporothrix brasiliensis", - "strain": "5110", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000820605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826245.1", - "ncbiTaxonomyId": "65658", - "organism": "Acanthamoeba astronyxis Unknown", - "species": "Acanthamoeba astronyxis", - "strain": "Unknown", - "supercontigs": 98248, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826245.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/245/GCA_000826245.1/genes/GCA_000826245.1_Acanthamoeba_astronyxis.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826265.1", - "ncbiTaxonomyId": "43142", - "organism": "Acanthamoeba culbertsoni A1", - "species": "Acanthamoeba culbertsoni", - "strain": "A1", - "supercontigs": 72411, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826265.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/265/GCA_000826265.1/genes/GCA_000826265.1_Acanthamoeba_culbertsoni_genome_assembly.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826285.1", - "ncbiTaxonomyId": "29196", - "organism": "Acanthamoeba lenticulata PD2S", - "species": "Acanthamoeba lenticulata", - "strain": "PD2S", - "supercontigs": 79048, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826285.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/285/GCA_000826285.1/genes/GCA_000826285.1_Acanthamoeba_lenticulata.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826305.1", - "ncbiTaxonomyId": "65661", - "organism": "Acanthamoeba palestinensis Reich", - "species": "Acanthamoeba palestinensis", - "strain": "Reich", - "supercontigs": 26188, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826305.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/305/GCA_000826305.1/genes/GCA_000826305.1_Acanthamoeba_healyi.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826325.1", - "ncbiTaxonomyId": "28015", - "organism": "Acanthamoeba triangularis SH621", - "species": "Acanthamoeba triangularis", - "strain": "SH621", - "supercontigs": 56742, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826325.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/325/GCA_000826325.1/genes/GCA_000826325.1_Acanthamoeba_palestinensis.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826345.1", - "ncbiTaxonomyId": "5757", - "organism": "Acanthamoeba sp T4b-type", - "species": "Acanthamoeba sp.", - "strain": "T4B-type", - "supercontigs": 224482, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826345.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/345/GCA_000826345.1/genes/GCA_000826345.1_Acanthamoeba_polyphaga.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826365.1", - "ncbiTaxonomyId": "32600", - "organism": "Acanthamoeba sp Incertae sedis", - "species": "Acanthamoeba sp.", - "strain": "Incertae_sedis", - "supercontigs": 24098, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826365.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/365/GCA_000826365.1/genes/GCA_000826365.1_Acanthamoeba_royreba.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826385.1", - "ncbiTaxonomyId": "32599", - "organism": "Acanthamoeba rhysodes Singh", - "species": "Acanthamoeba rhysodes", - "strain": "Singh", - "supercontigs": 62836, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826385.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/385/GCA_000826385.1/genes/GCA_000826385.1_Acanthamoeba_rhysodes.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826425.1", - "ncbiTaxonomyId": "61605", - "organism": "Acanthamoeba lugdunensis L3a", - "species": "Acanthamoeba lugdunensis", - "strain": "L3a", - "supercontigs": 67459, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826425.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/425/GCA_000826425.1/genes/GCA_000826425.1_Acanthamoeba_lugdunensis.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826445.1", - "ncbiTaxonomyId": "211522", - "organism": "Acanthamoeba quina Vil3", - "species": "Acanthamoeba quina", - "strain": "Vil3", - "supercontigs": 60490, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826445.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/445/GCA_000826445.1/genes/GCA_000826445.1_Acanthamoeba_quina.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826465.1", - "ncbiTaxonomyId": "196912", - "organism": "Acanthamoeba mauritaniensis 1652", - "species": "Acanthamoeba mauritaniensis", - "strain": "1652", - "supercontigs": 67233, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826465.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/465/GCA_000826465.1/genes/GCA_000826465.1_Acanthamoeba_mauritaniensis.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826485.1", - "ncbiTaxonomyId": "5755", - "organism": "Acanthamoeba castellanii Ma", - "species": "Acanthamoeba castellanii", - "strain": "Ma", - "supercontigs": 221748, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826485.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/485/GCA_000826485.1/genes/GCA_000826485.1_Acanthamoeba_castellanii.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000826505.1", - "ncbiTaxonomyId": "65662", - "organism": "Acanthamoeba sp Galka", - "species": "Acanthamoeba sp.", - "strain": "Galka", - "supercontigs": 224137, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000826505.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/826/505/GCA_000826505.1/genes/GCA_000826505.1_Acanthamoeba_pearcei.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000828355.1", - "ncbiTaxonomyId": "52283", - "organism": "Sarcoptes scabiei Arlian", - "species": "Sarcoptes scabiei", - "strain": "Arlian", - "supercontigs": 18859, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000828355.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/828/355/GCA_000828355.1/genes/GCA_000828355.1_SarSca1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 853, - "genomeVersionAssemblyId": "GCA_000831705.1", - "ncbiTaxonomyId": "1603071", - "organism": "Cryptosporidium sp. chipmunk LX-2015", - "species": "Cryptosporidium sp.", - "strain": "chipmunk LX-2015", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000831705.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/831/705/GCA_000831705.1/genes/GCA_000831705.1_ASM83170v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835455.1", - "ncbiTaxonomyId": "1442368", - "organism": "Fonsecaea pedrosoi CBS 271.37", - "species": "Fonsecaea pedrosoi", - "strain": "CBS 271.37", - "supercontigs": 11, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835455.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835475.1", - "ncbiTaxonomyId": "1442370", - "organism": "Cladophialophora bantiana CBS 173.52", - "species": "Cladophialophora bantiana", - "strain": "CBS 173.52", - "supercontigs": 60, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835495.1", - "ncbiTaxonomyId": "569365", - "organism": "Cladophialophora immunda strain CBS 83496", - "species": "Cladophialophora immunda", - "strain": "strain CBS 83496", - "supercontigs": 277, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835515.1", - "ncbiTaxonomyId": "215243", - "organism": "Exophiala oligosperma strain CBS 72588", - "species": "Exophiala oligosperma", - "strain": "strain CBS 72588", - "supercontigs": 143, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835555.1", - "ncbiTaxonomyId": "1442369", - "organism": "Rhinocladiella mackenziei CBS 650.93", - "species": "Rhinocladiella mackenziei", - "strain": "CBS 650.93", - "supercontigs": 17, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000835745.1", - "ncbiTaxonomyId": "1296103", - "organism": "Cryptococcus gattii EJB2", - "species": "Cryptococcus gattii VGI", - "strain": "EJB2", - "supercontigs": 282, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000835745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/835/745/GCA_000835745.1/genes/GCA_000835745.1_Cryp_gatt_EJB2_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000836115.1", - "ncbiTaxonomyId": "91928", - "organism": "Exophiala spinifera CBS 89968", - "species": "Exophiala spinifera", - "strain": "CBS 89968", - "supercontigs": 28, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000836275.1", - "ncbiTaxonomyId": "212818", - "organism": "Exophiala mesophila strain CBS 40295", - "species": "Exophiala mesophila", - "strain": "strain CBS 40295", - "supercontigs": 9, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836275.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000836295.1", - "ncbiTaxonomyId": "253628", - "organism": "Verruconis gallopava strain CBS 43764", - "species": "Verruconis gallopava", - "strain": "strain CBS 43764", - "supercontigs": 367, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000836435.1", - "ncbiTaxonomyId": "1442371", - "organism": "Fonsecaea multimorphosa CBS 102226", - "species": "Fonsecaea multimorphosa", - "strain": "CBS 102226", - "supercontigs": 67, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836435.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000855695.1", - "ncbiTaxonomyId": "1296111", - "organism": "Cryptococcus gattii CA1873", - "species": "Cryptococcus gattii VGIII", - "strain": "CA1873", - "supercontigs": 33, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000855695.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/855/695/GCA_000855695.1/genes/GCA_000855695.1_Cryp_gatt_CA1873_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000875885.1", - "ncbiTaxonomyId": "42890", - "organism": "Sarcocystis neurona SO SN1", - "species": "Sarcocystis neurona", - "strain": "SO SN1", - "supercontigs": 3066, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000875885.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/875/885/GCA_000875885.1/genes/GCA_000875885.1_ASM87588v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000935105.1", - "ncbiTaxonomyId": "1296108", - "organism": "Cryptococcus gattii NT-10", - "species": "Cryptococcus gattii VGI", - "strain": "NT10", - "supercontigs": 226, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000935105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/935/105/GCA_000935105.1/genes/GCA_000935105.1_Cryp_gatt_NT-10_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000956335.1", - "ncbiTaxonomyId": "5857", - "organism": "Plasmodium fragile strain nilgiri", - "species": "Plasmodium fragile", - "strain": "strain nilgiri", - "supercontigs": 247, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000956335.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 15, - "genomeVersionAssemblyId": "GCA_000961545.1", - "ncbiTaxonomyId": "1397361", - "organism": "Sporothrix schenckii 1099-18", - "species": "Sporothrix schenckii", - "strain": "1099-18", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000961545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/961/545/GCA_000961545.1/genes/GCA_000961545.1_S_schenckii_v1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000966635.1", - "ncbiTaxonomyId": "5518", - "organism": "Fusarium graminearum DAOM 233423", - "species": "Fusarium graminearum", - "strain": "DAOM 233423", - "supercontigs": 869, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000966635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/966/635/GCA_000966635.1/genes/GCA_000966635.1_Fus_gra_233423_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_000973045.2", - "ncbiTaxonomyId": "34613", - "organism": "Ixodes ricinus Charles River", - "species": "Ixodes ricinus", - "strain": "Charles River", - "supercontigs": 204516, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000973045.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/000/973/045/GCA_000973045.2/genes/GCA_000973045.2_ASM97304v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 536, - "genomeVersionAssemblyId": "GCA_000988165.1", - "ncbiTaxonomyId": "40302", - "organism": "Nosema ceranae strain PA08_1199", - "species": "Nosema ceranae", - "strain": "strain PA08_1199", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000988165.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001008285.1", - "ncbiTaxonomyId": "1247875", - "organism": "Emmonsia crescens UAMH 3008", - "species": "Emmonsia crescens", - "strain": "UAMH 3008", - "supercontigs": 1734, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001008285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/008/285/GCA_001008285.1/genes/GCA_001008285.1_ASM100828v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001015335.1", - "ncbiTaxonomyId": "35570", - "organism": "Stomoxys calcitrans USDA", - "species": "Stomoxys calcitrans", - "strain": "USDA", - "supercontigs": 12042, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001015335.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/015/335/GCA_001015335.1/genes/GCA_001015335.1_Stomoxys_calcitrans-1.0.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001077435.1", - "ncbiTaxonomyId": "37546", - "organism": "Glossina morsitans Yale", - "species": "Glossina morsitans", - "strain": "Yale", - "supercontigs": 13807, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077435.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/435/GCA_001077435.1/genes/GCA_001077435.1_ASM107743v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001077455.2", - "ncbiTaxonomyId": "32595", - "organism": "Babesia divergens strain Rouen 1987", - "species": "Babesia divergens", - "strain": "strain Rouen 1987", - "supercontigs": 141, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077455.2", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/077/455/GCA_001077455.2/genes/GCA_001077455.2_ASM107745v2.augustus.gtf.gz" - }, - { - "chromosomes": 15, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001078035.1", - "ncbiTaxonomyId": "1355160", - "organism": "Encephalitozoon cuniculi EcunIII-L", - "species": "Encephalitozoon cuniculi", - "strain": "EcunIII-L", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001078035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/078/035/GCA_001078035.1/genes/GCA_001078035.1_ECIIIL.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001179505.1", - "ncbiTaxonomyId": "1169540", - "organism": "Vitrella brassicaformis CCMP3155", - "species": "Vitrella brassicaformis", - "strain": "CCMP3155", - "supercontigs": 1064, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001179505.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/179/505/GCA_001179505.1/genes/GCA_001179505.1_Vbrassicaformis.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001185145.1", - "ncbiTaxonomyId": "66527", - "organism": "Balamuthia mandrillaris CDC-V039", - "species": "Balamuthia mandrillaris", - "strain": "CDC-V039", - "supercontigs": 1604, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001185145.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/185/145/GCA_001185145.1/genes/GCA_001185145.1_ASM118514v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001189475.1", - "ncbiTaxonomyId": "498019", - "organism": "Candida auris strain 6684", - "species": "[Candida] auris", - "strain": "6684", - "supercontigs": 99, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001189475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/189/475/GCA_001189475.1/genes/GCA_001189475.1_ASM118947v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001262475.1", - "ncbiTaxonomyId": "66527", - "organism": "Balamuthia mandrillaris strain 2046", - "species": "Balamuthia mandrillaris", - "strain": "strain 2046", - "supercontigs": 14699, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001262475.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/262/475/GCA_001262475.1/genes/GCA_001262475.1_ASM126247v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001263375.1", - "ncbiTaxonomyId": "27349", - "organism": "Puccinia sorghi strain RO10H11247", - "species": "Puccinia sorghi", - "strain": "strain RO10H11247", - "supercontigs": 15715, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001263375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/263/375/GCA_001263375.1/genes/GCA_001263375.1_ASM126337v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001275765.2", - "ncbiTaxonomyId": "100816", - "organism": "Madurella mycetomatis mm55", - "species": "Madurella mycetomatis", - "strain": "mm55", - "supercontigs": 804, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001275765.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/275/765/GCA_001275765.2/genes/GCA_001275765.2_ASM127576v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001278385.1", - "ncbiTaxonomyId": "77020", - "organism": "Malassezia pachydermatis CBS 1879", - "species": "Malassezia pachydermatis", - "strain": "CBS 1879", - "supercontigs": 91, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001278385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 35, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001293395.1", - "ncbiTaxonomyId": "157538", - "organism": "Leptomonas pyrrhocoris H10", - "species": "Leptomonas pyrrhocoris", - "strain": "H10", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001293395.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1222, - "genomeVersionAssemblyId": "GCA_001299535.1", - "ncbiTaxonomyId": "5684", - "organism": "Leptomonas seymouri ATCC 30220", - "species": "Leptomonas seymouri", - "strain": "ATCC 30220", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001299535.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/299/535/GCA_001299535.1/genes/GCA_001299535.1_ASM129953v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 4851, - "genomeVersionAssemblyId": "GCA_001430925.1", - "ncbiTaxonomyId": "166112", - "organism": "Byssoonygena ceratinophila isolate UAMH 5669", - "species": "Byssoonygena ceratinophila", - "strain": "isolate UAMH 5669", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/925/GCA_001430925.1/genes/GCA_001430925.1_ASM143092v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 3075, - "genomeVersionAssemblyId": "GCA_001430935.1", - "ncbiTaxonomyId": "2074759", - "organism": "Amauroascus mutatus isolate UAMH 3576", - "species": "Amauroascus mutatus", - "strain": "isolate UAMH 3576", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430935.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/935/GCA_001430935.1/genes/GCA_001430935.1_ASM143093v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 3481, - "genomeVersionAssemblyId": "GCA_001430945.1", - "ncbiTaxonomyId": "89421", - "organism": "Amauroascus niger isolate UAMH 3544", - "species": "Amauroascus niger", - "strain": "isolate UAMH 3544", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/945/GCA_001430945.1/genes/GCA_001430945.1_ASM143094v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 2724, - "genomeVersionAssemblyId": "GCA_001430955.1", - "ncbiTaxonomyId": "264361", - "organism": "Chrysosporium queenslandicum isolate CBS 280.77", - "species": "Chrysosporium queenslandicum", - "strain": "isolate CBS 280.77", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/430/955/GCA_001430955.1/genes/GCA_001430955.1_ASM143095v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1603, - "genomeVersionAssemblyId": "GCA_001432165.1", - "ncbiTaxonomyId": "146866", - "organism": "Pseudoloma neurophilia strain MK1", - "species": "Pseudoloma neurophilia", - "strain": "strain MK1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001432165.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/432/165/GCA_001432165.1/genes/GCA_001432165.1_ASM143216v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 834, - "genomeVersionAssemblyId": "GCA_001444555.1", - "ncbiTaxonomyId": "100951", - "organism": "Naganishia albida NRRL Y-1402", - "species": "Naganishia albida", - "strain": "NRRL Y-1402", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001444555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/444/555/GCA_001444555.1/genes/GCA_001444555.1_ASM144455v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001445615.2", - "ncbiTaxonomyId": "293939", - "organism": "Aspergillus lentulus strain IFM 54703", - "species": "Aspergillus lentulus", - "strain": "strain IFM 54703", - "supercontigs": 12, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001445615.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/445/615/GCA_001445615.2/genes/GCA_001445615.2_Alt_assembly01.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001447935.2", - "ncbiTaxonomyId": "58627", - "organism": "Debaryomyces fabryi CBS 789", - "species": "Debaryomyces fabryi", - "strain": "CBS 789", - "supercontigs": 534, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001447935.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001457755.2", - "ncbiTaxonomyId": "5694", - "organism": "Trypanosoma equiperdum OVI", - "species": "Trypanosoma equiperdum", - "strain": "OVI", - "supercontigs": 2026, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001457755.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/457/755/GCA_001457755.2/genes/GCA_001457755.2_Trypanosoma_equiperdum_OVI_V2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001460835.1", - "ncbiTaxonomyId": "75058", - "organism": "Bodo saltans strain Lake Konstanz", - "species": "Bodo saltans", - "strain": "strain Lake Konstanz", - "supercontigs": 2256, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001460835.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/460/835/GCA_001460835.1/genes/GCA_001460835.1_BSAL.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001477535.1", - "ncbiTaxonomyId": "1408657", - "organism": "Pneumocystis jirovecii RU7", - "species": "Pneumocystis jirovecii", - "strain": "RU7", - "supercontigs": 70, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 53, - "genomeVersionAssemblyId": "GCA_001483515.1", - "ncbiTaxonomyId": "237895", - "organism": "Cryptosporidium hominis isolate 30976", - "species": "Cryptosporidium hominis", - "strain": "isolate 30976", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001483515.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/483/515/GCA_001483515.1/genes/GCA_001483515.1_ASM148351v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1139, - "genomeVersionAssemblyId": "GCA_001493575.1", - "ncbiTaxonomyId": "941442", - "organism": "Giardia assemblage A isolate AS175", - "species": "Giardia Assemblage A", - "strain": "AS175", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001493575.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/493/575/GCA_001493575.1/genes/GCA_001493575.1_GIAS175.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001543975.1", - "ncbiTaxonomyId": "1394984", - "organism": "Giardia Assemblage B isolate BAH15c1", - "species": "Giardia Assemblage B", - "strain": "isolate BAH15c1", - "supercontigs": 508, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001543975.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/543/975/GCA_001543975.1/genes/GCA_001543975.1_G_duodenalis_AssB_BAH15c1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 11196, - "genomeVersionAssemblyId": "GCA_001593125.1", - "ncbiTaxonomyId": "588596", - "organism": "Rhizophagus irregularis A1 (DAOM-664342)", - "species": "Rhizophagus irregularis", - "strain": "A1 (DAOM-664342)", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/125/GCA_001593125.1/genes/GCA_001593125.1_ASM159312v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 441, - "genomeVersionAssemblyId": "GCA_001593265.1", - "ncbiTaxonomyId": "383379", - "organism": "Toxoplasma gondii RH 2016", - "species": "Toxoplasma gondii", - "strain": "RH 2016", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593265.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/265/GCA_001593265.1/genes/GCA_001593265.1_ToxRH1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 57, - "genomeVersionAssemblyId": "GCA_001593445.1", - "ncbiTaxonomyId": "93969", - "organism": "Cryptosporidium meleagridis strain UKMEL1", - "species": "Cryptosporidium meleagridis", - "strain": "strain UKMEL1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593445.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/445/GCA_001593445.1/genes/GCA_001593445.1_CryMelUKMEL1-1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 153, - "genomeVersionAssemblyId": "GCA_001593455.1", - "ncbiTaxonomyId": "27987", - "organism": "Cryptosporidium baileyi TAMU-09Q1", - "species": "Cryptosporidium baileyi", - "strain": "TAMU-09Q1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593455.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/455/GCA_001593455.1/genes/GCA_001593455.1_CryBaiTAMU-09Q1-1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 119, - "genomeVersionAssemblyId": "GCA_001593465.1", - "ncbiTaxonomyId": "237895", - "organism": "Cryptosporidium hominis isolate TU502_2012", - "species": "Cryptosporidium hominis", - "strain": "isolate TU502_2012", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593465.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/465/GCA_001593465.1/genes/GCA_001593465.1_CryHomTU502-1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 156, - "genomeVersionAssemblyId": "GCA_001593475.1", - "ncbiTaxonomyId": "237895", - "organism": "Cryptosporidium hominis UKH1", - "species": "Cryptosporidium hominis", - "strain": "UKH1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593475.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/593/475/GCA_001593475.1/genes/GCA_001593475.1_CryHomUKH1-1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001598995.1", - "ncbiTaxonomyId": "82521", - "organism": "Apiotrichum montevideense JCM 9937", - "species": "Apiotrichum montevideense", - "strain": "JCM 9937", - "supercontigs": 61, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001598995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/598/995/GCA_001598995.1/genes/GCA_001598995.1_JCM_9937_assembly_v001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001599035.1", - "ncbiTaxonomyId": "63577", - "organism": "Trichoderma atroviride strain JCM 9410", - "species": "Trichoderma atroviride", - "strain": "strain JCM 9410", - "supercontigs": 23, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599035.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/035/GCA_001599035.1/genes/GCA_001599035.1_JCM_9410_assembly_v001.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 74, - "genomeVersionAssemblyId": "GCA_001599735.1", - "ncbiTaxonomyId": "100951", - "organism": "Naganishia albida JCM2334", - "species": "Naganishia albida", - "strain": "JCM2334", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/599/735/GCA_001599735.1/genes/GCA_001599735.1_JCM_2334_assembly_v001.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 818, - "genomeVersionAssemblyId": "GCA_001602025.1", - "ncbiTaxonomyId": "647221", - "organism": "Plasmodium gaboni strain SY75", - "species": "Plasmodium gaboni", - "strain": "strain SY75", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001602025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001625125.1", - "ncbiTaxonomyId": "707206", - "organism": "Haemoproteus tartakovskyi strain SISKIN1", - "species": "Haemoproteus tartakovskyi", - "strain": "strain SISKIN1", - "supercontigs": 2982, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001625125.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/625/125/GCA_001625125.1/genes/GCA_001625125.1_ASM162512v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001636715.1", - "ncbiTaxonomyId": "392613", - "organism": "Ascosphaera apis ARSEF 7405", - "species": "Ascosphaera apis", - "strain": "ARSEF 7405", - "supercontigs": 82, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001636715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/636/715/GCA_001636715.1/genes/GCA_001636715.1_AAP_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001638945.1", - "ncbiTaxonomyId": "747725", - "organism": "Mucor lusitanicus CBS 277.49", - "species": "Mucor lusitanicus", - "strain": "CBS 277.49", - "supercontigs": 21, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001638945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/638/945/GCA_001638945.1/genes/GCA_001638945.1_Mucci2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001638985.2", - "ncbiTaxonomyId": "763407", - "organism": "Phycomyces blakesleeanus NRRL 1555(-)", - "species": "Phycomyces blakesleeanus", - "strain": "NRRL 1555(-)", - "supercontigs": 80, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001638985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001642055.1", - "ncbiTaxonomyId": "5599", - "organism": "Alternaria alternata SRC1lrK2f", - "species": "Alternaria alternata", - "strain": "SRC1lrK2f", - "supercontigs": 79, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001642055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 40, - "genomeVersionAssemblyId": "GCA_001642395.1", - "ncbiTaxonomyId": "1805483", - "organism": "Nematocida displodere strain JUm2807", - "species": "Nematocida displodere", - "strain": "strain JUm2807", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642395.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/395/GCA_001642395.1/genes/GCA_001642395.1_ASM164239v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001642415.1", - "ncbiTaxonomyId": "1805481", - "organism": "Nematocida ironsii ERTm5", - "species": "Nematocida ironsii", - "strain": "ERTm5", - "supercontigs": 186, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642415.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/642/415/GCA_001642415.1/genes/GCA_001642415.1_ASM164241v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001643675.2", - "ncbiTaxonomyId": "2049356", - "organism": "Monocercomonoides exilis PA203", - "species": "Monocercomonoides exilis", - "strain": "PA203", - "supercontigs": 101, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001643675.2", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/643/675/GCA_001643675.2/genes/GCA_001643675.2_ASM164367v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 234, - "genomeVersionAssemblyId": "GCA_001650055.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti strain ATCC 30222", - "species": "Babesia microti", - "strain": "strain ATCC 30222", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650055.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/055/GCA_001650055.1/genes/GCA_001650055.1_ASM165005v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 82, - "genomeVersionAssemblyId": "GCA_001650065.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti strain ATCC PRA-99", - "species": "Babesia microti", - "strain": "strain ATCC PRA-99", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650065.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/065/GCA_001650065.1/genes/GCA_001650065.1_ASM165006v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 250, - "genomeVersionAssemblyId": "GCA_001650075.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti strain GreenwichYale_Lab_strain_1", - "species": "Babesia microti", - "strain": "strain GreenwichYale_Lab_strain_1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650075.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/075/GCA_001650075.1/genes/GCA_001650075.1_ASM165007v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 140, - "genomeVersionAssemblyId": "GCA_001650105.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti strain GI", - "species": "Babesia microti", - "strain": "strain GI", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650105.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/105/GCA_001650105.1/genes/GCA_001650105.1_ASM165010v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 131, - "genomeVersionAssemblyId": "GCA_001650135.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti strain Naushon", - "species": "Babesia microti", - "strain": "strain Naushon", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650135.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/135/GCA_001650135.1/genes/GCA_001650135.1_ASM165013v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 131, - "genomeVersionAssemblyId": "GCA_001650145.1", - "ncbiTaxonomyId": "5868", - "organism": "Babesia microti Nan_Hs_2011_N11-50", - "species": "Babesia microti", - "strain": "Nan_Hs_2011_N11-50", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001650145.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/650/145/GCA_001650145.1/genes/GCA_001650145.1_ASM165014v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001660665.1", - "ncbiTaxonomyId": "1955775", - "organism": "Emergomyces africanus CBS 136260", - "species": "Emergomyces africanus", - "strain": "CBS 136260", - "supercontigs": 4444, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001660665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/660/665/GCA_001660665.1/genes/GCA_001660665.1_Emmo_afri_EA111.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001672515.1", - "ncbiTaxonomyId": "759273", - "organism": "Colletotrichum higginsianum IMI 349063", - "species": "Colletotrichum higginsianum", - "strain": "IMI 349063", - "supercontigs": 14, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001672515.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001680005.1", - "ncbiTaxonomyId": "208452", - "organism": "Plasmodium coatneyi Hackeri", - "species": "Plasmodium coatneyi", - "strain": "Hackeri", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001680005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001692895.1", - "ncbiTaxonomyId": "794803", - "organism": "Cenococcum geophilum 1.58", - "species": "Cenococcum geophilum", - "strain": "1.58", - "supercontigs": 268, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001692895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/692/895/GCA_001692895.1/genes/GCA_001692895.1_Cenococcum_geophilum_1.58_v2.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 22, - "genomeVersionAssemblyId": "GCA_001700775.1", - "ncbiTaxonomyId": "86049", - "organism": "Cladophialophora carrionii KSF", - "species": "Cladophialophora carrionii", - "strain": "KSF", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001700775.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/700/775/GCA_001700775.1/genes/GCA_001700775.1_ASM170077v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001717485.1", - "ncbiTaxonomyId": "573508", - "organism": "Aspergillus cristatus GZAAS20.1005", - "species": "Aspergillus cristatus", - "strain": "GZAAS20.1005", - "supercontigs": 68, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001717485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/717/485/GCA_001717485.1/genes/GCA_001717485.1_ASM171748v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001747055.1", - "ncbiTaxonomyId": "29833", - "organism": "Hanseniaspora uvarum strain AWRI3580", - "species": "Hanseniaspora uvarum", - "strain": "strain AWRI3580", - "supercontigs": 18, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001747055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/747/055/GCA_001747055.1/genes/GCA_001747055.1_ASM174705v1.augustus.gtf.gz" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001761485.1", - "ncbiTaxonomyId": "4952", - "organism": "Yarrowia lipolytica CLIB89 (W29)", - "species": "Yarrowia lipolytica", - "strain": "CLIB89 (W29)", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001761485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/761/485/GCA_001761485.1/genes/GCA_001761485.1_ASM176148v1.augustus.gtf.gz" - }, - { - "chromosomes": 16, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001857865.1", - "ncbiTaxonomyId": "665079", - "organism": "Sclerotinia sclerotiorum 1980 UF-70", - "species": "Sclerotinia sclerotiorum", - "strain": "1980 UF-70", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001857865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/857/865/GCA_001857865.1/genes/GCA_001857865.1_ASM185786v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 39, - "genomeVersionAssemblyId": "GCA_001865345.1", - "ncbiTaxonomyId": "857276", - "organism": "Cryptosporidium ubiquitum isolate 39726", - "species": "Cryptosporidium ubiquitum", - "strain": "isolate 39726", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865345.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 135, - "genomeVersionAssemblyId": "GCA_001865355.1", - "ncbiTaxonomyId": "117008", - "organism": "Cryptosporidium andersoni isolate 30847", - "species": "Cryptosporidium andersoni", - "strain": "isolate 30847", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865355.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1727, - "genomeVersionAssemblyId": "GCA_001875675.1", - "ncbiTaxonomyId": "1866961", - "organism": "Amphiamblys sp. WSBS2006", - "species": "unclassified Amphiamblys", - "strain": "WSBS2006", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001875675.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/875/675/GCA_001875675.1/genes/GCA_001875675.1_ASM187567v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001883805.1", - "ncbiTaxonomyId": "1658174", - "organism": "Blastomyces percursus strain EI222", - "species": "Blastomyces percursus", - "strain": "strain EI222", - "supercontigs": 3868, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/805/GCA_001883805.1/genes/GCA_001883805.1_Blas_perc_EI222_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001883825.1", - "ncbiTaxonomyId": "1447872", - "organism": "Emergomyces pasteurianus Ep9510", - "species": "Emergomyces pasteurianus", - "strain": "Ep9510", - "supercontigs": 1643, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/883/825/GCA_001883825.1/genes/GCA_001883825.1_Emmo_past_UAMH9510_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001889945.1", - "ncbiTaxonomyId": "767769", - "organism": "Aspergillus brasiliensis CBS 101740", - "species": "Aspergillus brasiliensis", - "strain": "CBS 101740", - "supercontigs": 103, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001889945.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/889/945/GCA_001889945.1/genes/GCA_001889945.1_Aspbr1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890105.1", - "ncbiTaxonomyId": "1073090", - "organism": "Penicilliopsis zonata CBS 506.65", - "species": "Penicilliopsis zonata", - "strain": "CBS 506.65", - "supercontigs": 246, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890125.1", - "ncbiTaxonomyId": "1036611", - "organism": "Aspergillus versicolor CBS 583.65", - "species": "Aspergillus versicolor", - "strain": "CBS 583.65", - "supercontigs": 51, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890125.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890685.1", - "ncbiTaxonomyId": "1137211", - "organism": "Aspergillus luchuensis CBS 106.47", - "species": "Aspergillus luchuensis", - "strain": "CBS 106.47", - "supercontigs": 100, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/685/GCA_001890685.1/genes/GCA_001890685.1_Aspfo1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890705.1", - "ncbiTaxonomyId": "1036612", - "organism": "Aspergillus sydowii CBS 593.65", - "species": "Aspergillus sydowii", - "strain": "CBS 593.65", - "supercontigs": 97, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890705.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890725.1", - "ncbiTaxonomyId": "1073089", - "organism": "Aspergillus wentii DTO 134E9", - "species": "Aspergillus wentii", - "strain": "DTO 134E9", - "supercontigs": 27, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890745.1", - "ncbiTaxonomyId": "767770", - "organism": "Aspergillus tubingensis CBS 134.48", - "species": "Aspergillus tubingensis", - "strain": "CBS 134.48", - "supercontigs": 33, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/890/745/GCA_001890745.1/genes/GCA_001890745.1_Asptu1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890805.1", - "ncbiTaxonomyId": "1160497", - "organism": "Aspergillus glaucus CBS 516.65", - "species": "Aspergillus glaucus", - "strain": "CBS 516.65", - "supercontigs": 82, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001890905.1", - "ncbiTaxonomyId": "690307", - "organism": "Aspergillus aculeatus ATCC 16872", - "species": "Aspergillus aculeatus", - "strain": "ATCC 16872", - "supercontigs": 660, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890905.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001983305.1", - "ncbiTaxonomyId": "36022", - "organism": "Cyberlindnera fabianii 65", - "species": "Cyberlindnera fabianii", - "strain": "65", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001983305.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/983/305/GCA_001983305.1/genes/GCA_001983305.1_ASM198330v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_001990825.1", - "ncbiTaxonomyId": "602072", - "organism": "Aspergillus carbonarius ITEM 5010", - "species": "Aspergillus carbonarius", - "strain": "ITEM 5010", - "supercontigs": 829, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001990825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/001/990/825/GCA_001990825.1/genes/GCA_001990825.1_Aspca3.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002006585.1", - "ncbiTaxonomyId": "431241", - "organism": "Trichoderma reesei QM6a 2017", - "species": "Trichoderma reesei", - "strain": "QM6a 2017", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002006585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/006/585/GCA_002006585.1/genes/GCA_002006585.1_ASM200658v1.augustus.gtf.gz" - }, - { - "chromosomes": 16, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002079055.1", - "ncbiTaxonomyId": "27291", - "organism": "Saccharomyces paradoxus CBS432", - "species": "Saccharomyces paradoxus", - "strain": "CBS432", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002079055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 62, - "genomeVersionAssemblyId": "GCA_002081675.1", - "ncbiTaxonomyId": "646526", - "organism": "Enterocytozoon hepatopenaei strain TH1", - "species": "Enterocytozoon hepatopenaei", - "strain": "strain TH1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002081675.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/081/675/GCA_002081675.1/genes/GCA_002081675.1_ASM208167v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002083745.1", - "ncbiTaxonomyId": "86635", - "organism": "Rhizopus microsporus var. microsporus ATCC 52814", - "species": "Rhizopus microsporus", - "strain": "var. microsporus ATCC 52814", - "supercontigs": 560, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002083745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/083/745/GCA_002083745.1/genes/GCA_002083745.1_Rhimi_ATCC52814_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 253, - "genomeVersionAssemblyId": "GCA_002087225.1", - "ncbiTaxonomyId": "67003", - "organism": "Trypanosoma theileri isolate Edinburgh", - "species": "Trypanosoma theileri", - "strain": "isolate Edinburgh", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002087225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 2344, - "genomeVersionAssemblyId": "GCA_002087875.1", - "ncbiTaxonomyId": "1081669", - "organism": "Hepatospora eriocheir strain canceri", - "species": "Hepatospora eriocheir", - "strain": "strain canceri", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087875.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/875/GCA_002087875.1/genes/GCA_002087875.1_ASM208787v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1300, - "genomeVersionAssemblyId": "GCA_002087885.1", - "ncbiTaxonomyId": "1081669", - "organism": "Hepatospora eriocheir strain GB1", - "species": "Hepatospora eriocheir", - "strain": "strain GB1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087885.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/885/GCA_002087885.1/genes/GCA_002087885.1_ASM208788v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 537, - "genomeVersionAssemblyId": "GCA_002087915.1", - "ncbiTaxonomyId": "1081671", - "organism": "Enterospora canceri strain GB1", - "species": "Enterospora canceri", - "strain": "strain GB1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087915.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/087/915/GCA_002087915.1/genes/GCA_002087915.1_ASM208791v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002095265.1", - "ncbiTaxonomyId": "462227", - "organism": "Babesia sp. Xinjiang Xinjiang", - "species": "Babesia sp. Xinjiang", - "strain": "Xinjiang", - "supercontigs": 215, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002095265.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002110485.1", - "ncbiTaxonomyId": "1972497", - "organism": "Emergomyces orientalis 5z489", - "species": "Emergomyces orientalis", - "strain": "5z489", - "supercontigs": 108, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002110485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/110/485/GCA_002110485.1/genes/GCA_002110485.1_ASM211048v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002127715.1", - "ncbiTaxonomyId": "1157616", - "organism": "Hortaea werneckii EXF-2000", - "species": "Hortaea werneckii", - "strain": "EXF-2000", - "supercontigs": 628, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002127715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/127/715/GCA_002127715.1/genes/GCA_002127715.1_HwerPB1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002140095.1", - "ncbiTaxonomyId": "5850", - "organism": "Plasmodium knowlesi strain Malayan Strain Pk1 A", - "species": "Plasmodium knowlesi", - "strain": "strain Malayan Strain Pk1 A", - "supercontigs": 28, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002140095.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/140/095/GCA_002140095.1/genes/GCA_002140095.1_PKNOHv1.augustus.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002204515.1", - "ncbiTaxonomyId": "7159", - "organism": "Aedes aegypti LVP_AGWG", - "species": "Aedes aegypti", - "strain": "LVP_AGWG", - "supercontigs": 2306, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002204515.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/204/515/GCA_002204515.1/genes/GCA_002204515.1_AaegL5.0.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002216205.1", - "ncbiTaxonomyId": "1396488", - "organism": "Cryptococcus neoformans var. neoformans XL280", - "species": "Cryptococcus neoformans", - "strain": "var. neoformans XL280", - "supercontigs": 32, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216205.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/205/GCA_002216205.1/genes/GCA_002216205.1_ASM221620v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002216725.1", - "ncbiTaxonomyId": "178876", - "organism": "Cryptococcus neoformans var. grubii KN99", - "species": "Cryptococcus neoformans", - "strain": "var. grubii KN99", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/216/725/GCA_002216725.1/genes/GCA_002216725.1_ASM221672v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002219105.2", - "ncbiTaxonomyId": "85057", - "organism": "Trypanosoma cruzi Dm28c 2017", - "species": "Trypanosoma cruzi", - "strain": "Dm28c 2017", - "supercontigs": 1029, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219105.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/105/GCA_002219105.2/genes/GCA_002219105.2_TcruziDm28cPB1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002219185.1", - "ncbiTaxonomyId": "5478", - "organism": "Nakaseomyces glabratus DSY562", - "species": "Nakaseomyces glabratus", - "strain": "DSY562", - "supercontigs": 5, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/219/185/GCA_002219185.1/genes/GCA_002219185.1_ASM221918v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002223825.1", - "ncbiTaxonomyId": "237895", - "organism": "Cryptosporidium hominis UdeA01", - "species": "Cryptosporidium hominis", - "strain": "UdeA01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002223825.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/223/825/GCA_002223825.1/genes/GCA_002223825.1_C.hominis.v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002237265.2", - "ncbiTaxonomyId": "41047", - "organism": "Aspergillus thermomutatus strain HMR AF 39", - "species": "Aspergillus thermomutatus", - "strain": "strain HMR AF 39", - "supercontigs": 647, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002237265.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 1897, - "genomeVersionAssemblyId": "GCA_002247145.1", - "ncbiTaxonomyId": "639000", - "organism": "Phytophthora plurivora AV1007", - "species": "Phytophthora plurivora", - "strain": "AV1007", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002247145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/247/145/GCA_002247145.1/genes/GCA_002247145.1_Plurivora_assembly_v1.fn.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 751, - "genomeVersionAssemblyId": "GCA_002271815.1", - "ncbiTaxonomyId": "84963", - "organism": "Eimeria falciformis Bayer Haberkorn 1970", - "species": "Eimeria falciformis", - "strain": "Bayer Haberkorn 1970", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002271815.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/271/815/GCA_002271815.1/genes/GCA_002271815.1_ASM227181v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1624, - "genomeVersionAssemblyId": "GCA_002276285.1", - "ncbiTaxonomyId": "41688", - "organism": "Lomentospora prolificans JHH-5317", - "species": "Lomentospora prolificans", - "strain": "JHH-5317", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002276285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/276/285/GCA_002276285.1/genes/GCA_002276285.1_Lprolificans_pilon.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002287245.1", - "ncbiTaxonomyId": "5692", - "organism": "Trypanosoma congolense Tc1/148", - "species": "Trypanosoma congolense", - "strain": "Tc1/148", - "supercontigs": 536, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002287245.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/287/245/GCA_002287245.1/genes/GCA_002287245.1_ASM228724v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 172, - "genomeVersionAssemblyId": "GCA_002563875.1", - "ncbiTaxonomyId": "94643", - "organism": "Besnoitia besnoiti strain Bb-Ger1", - "species": "Besnoitia besnoiti", - "strain": "strain Bb-Ger1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002563875.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 14627, - "genomeVersionAssemblyId": "GCA_002600585.1", - "ncbiTaxonomyId": "483139", - "organism": "Cystoisospora suis strain Wien I", - "species": "Cystoisospora suis", - "strain": "strain Wien I", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002600585.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 929, - "genomeVersionAssemblyId": "GCA_002749415.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Bug2148", - "species": "Trypanosoma cruzi", - "strain": "Bug2148", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749415.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/415/GCA_002749415.1/genes/GCA_002749415.1_ASM274941v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 9821, - "genomeVersionAssemblyId": "GCA_002749425.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain Y", - "species": "Trypanosoma cruzi", - "strain": "strain Y", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/425/GCA_002749425.1/genes/GCA_002749425.1_ASM274942v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002749535.1", - "ncbiTaxonomyId": "760013", - "organism": "Apophysomyces variabilis NCCPF 102052", - "species": "Apophysomyces variabilis", - "strain": "NCCPF 102052", - "supercontigs": 411, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/749/535/GCA_002749535.1/genes/GCA_002749535.1_ASM274953v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002775015.1", - "ncbiTaxonomyId": "498019", - "organism": "Candida auris strain B11221", - "species": "[Candida] auris", - "strain": "B11221", - "supercontigs": 20, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002775015.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/775/015/GCA_002775015.1/genes/GCA_002775015.1_Cand_auris_B11221_V1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 34, - "genomeVersionAssemblyId": "GCA_002846915.2", - "ncbiTaxonomyId": "1392256", - "organism": "Aspergillus ochraceoroseus IBT 24754", - "species": "Aspergillus ochraceoroseus", - "strain": "IBT 24754", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002846915.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 62, - "genomeVersionAssemblyId": "GCA_002847465.1", - "ncbiTaxonomyId": "1392255", - "organism": "Aspergillus novofumigatus IBT 16806", - "species": "Aspergillus novofumigatus", - "strain": "IBT 16806", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847465.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 62, - "genomeVersionAssemblyId": "GCA_002847485.1", - "ncbiTaxonomyId": "1392248", - "organism": "Aspergillus campestris IBT 28561", - "species": "Aspergillus campestris", - "strain": "IBT 28561", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 37, - "genomeVersionAssemblyId": "GCA_002849105.1", - "ncbiTaxonomyId": "1392250", - "organism": "Aspergillus steynii IBT 23096", - "species": "Aspergillus steynii", - "strain": "IBT 23096", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002849105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002892825.2", - "ncbiTaxonomyId": "6945", - "organism": "Ixodes scapularis ISE6", - "species": "Ixodes scapularis", - "strain": "ISE6", - "supercontigs": 6476, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002892825.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 91, - "genomeVersionAssemblyId": "GCA_002897235.1", - "ncbiTaxonomyId": "189622", - "organism": "Babesia ovata strain Miyake", - "species": "Babesia ovata", - "strain": "strain Miyake", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002897235.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 24809, - "genomeVersionAssemblyId": "GCA_002911725.1", - "ncbiTaxonomyId": "4796", - "organism": "Phytophthora palmivora var. palmivora strain sbr112.9", - "species": "Phytophthora palmivora", - "strain": "var. palmivora strain sbr112.9", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002911725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/911/725/GCA_002911725.1/genes/GCA_002911725.1_ASM291172v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 3460, - "genomeVersionAssemblyId": "GCA_002914575.1", - "ncbiTaxonomyId": "41668", - "organism": "Entamoeba moshkovskii Laredo", - "species": "Entamoeba moshkovskii", - "strain": "Laredo", - "supercontigs": 1147, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002914575.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/914/575/GCA_002914575.1/genes/GCA_002914575.1_ASM291457v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002920065.1", - "ncbiTaxonomyId": "27350", - "organism": "Puccinia striiformis strain 93-210", - "species": "Puccinia striiformis", - "strain": "strain 93-210", - "supercontigs": 492, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920065.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/065/GCA_002920065.1/genes/GCA_002920065.1_ASM292006v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002920205.1", - "ncbiTaxonomyId": "27350", - "organism": "Puccinia striiformis 93TX-2", - "species": "Puccinia striiformis", - "strain": "93TX-2", - "supercontigs": 561, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920205.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/920/205/GCA_002920205.1/genes/GCA_002920205.1_ASM292020v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1922, - "genomeVersionAssemblyId": "GCA_002921335.1", - "ncbiTaxonomyId": "1470209", - "organism": "Paratrypanosoma confusum CUL13", - "species": "Paratrypanosoma confusum", - "strain": "CUL13", - "supercontigs": 266, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002921335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/002/921/335/GCA_002921335.1/genes/GCA_002921335.1_ASM292133v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 11, - "genomeVersionAssemblyId": "GCA_002926055.1", - "ncbiTaxonomyId": "45357", - "organism": "Candida haemulonis B11899", - "species": "[Candida] haemuloni", - "strain": "B11899", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926055.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 7, - "genomeVersionAssemblyId": "GCA_002926085.1", - "ncbiTaxonomyId": "1231522", - "organism": "Candida duobushaemulonis strain B09383", - "species": "[Candida] duobushaemulonis", - "strain": "B09383", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926085.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_002954075.1", - "ncbiTaxonomyId": "294750", - "organism": "Cryptococcus gattii VGII R265", - "species": "Cryptococcus gattii VGII", - "strain": "R265", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002954075.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003011985.1", - "ncbiTaxonomyId": "178876", - "organism": "Cryptococcus neoformans var. grubii H99 2018", - "species": "Cryptococcus neoformans", - "strain": "var. grubii H99 2018", - "supercontigs": 14, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003011985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/011/985/GCA_003011985.1/genes/GCA_003011985.1_ASM301198v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 364, - "genomeVersionAssemblyId": "GCA_003013265.1", - "ncbiTaxonomyId": "1068625", - "organism": "Trypanosoma congolense IL3000 2019", - "species": "Trypanosoma congolense", - "strain": "IL3000 2019", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003013265.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/013/265/GCA_003013265.1/genes/GCA_003013265.1_ASM301326v1.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003013715.2", - "ncbiTaxonomyId": "498019", - "organism": "Candida auris strain B11220", - "species": "[Candida] auris", - "strain": "B11220", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003013735.1", - "ncbiTaxonomyId": "418784", - "organism": "Candida pseudohaemulonii strain B12108", - "species": "[Candida] pseudohaemulonis", - "strain": "B12108", - "supercontigs": 36, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013735.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003014415.1", - "ncbiTaxonomyId": "498019", - "organism": "Candida auris strain B11243", - "species": "[Candida] auris", - "strain": "B11243", - "supercontigs": 238, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003014415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/014/415/GCA_003014415.1/genes/GCA_003014415.1_Cand_auris_B11243.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003054405.1", - "ncbiTaxonomyId": "4909", - "organism": "Pichia kudriavzevii strain CBS5147", - "species": "Pichia kudriavzevii", - "strain": "strain CBS5147", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003054405.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/054/405/GCA_003054405.1/genes/GCA_003054405.1_ASM305440v1.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003054445.1", - "ncbiTaxonomyId": "4909", - "organism": "Pichia kudriavzevii strain CBS573", - "species": "Pichia kudriavzevii", - "strain": "strain CBS573", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003054445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003118255.1", - "ncbiTaxonomyId": "523103", - "organism": "Trichophyton mentagrophytes TIMM 2789", - "species": "Trichophyton mentagrophytes", - "strain": "TIMM 2789", - "supercontigs": 16543, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003118255.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/118/255/GCA_003118255.1/genes/GCA_003118255.1_ABySS_70bp_45k_152cov_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 1236, - "genomeVersionAssemblyId": "GCA_003177095.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi TCC", - "species": "Trypanosoma cruzi", - "strain": "TCC", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177095.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/095/GCA_003177095.1/genes/GCA_003177095.1_TCC_diploid_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 636, - "genomeVersionAssemblyId": "GCA_003177105.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Dm28c 2018", - "species": "Trypanosoma cruzi", - "strain": "Dm28c 2018", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177105.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/177/105/GCA_003177105.1/genes/GCA_003177105.1_ASM317710v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184535.1", - "ncbiTaxonomyId": "1448314", - "organism": "Aspergillus eucalypticola CBS 122712", - "species": "Aspergillus eucalypticola", - "strain": "CBS 122712", - "supercontigs": 131, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184535.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184545.1", - "ncbiTaxonomyId": "1448321", - "organism": "Aspergillus heteromorphus CBS 117.55", - "species": "Aspergillus heteromorphus", - "strain": "CBS 117.55", - "supercontigs": 205, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184635.1", - "ncbiTaxonomyId": "1448318", - "organism": "Aspergillus sclerotiicarbonarius CBS 121057", - "species": "Aspergillus sclerotiicarbonarius", - "strain": "CBS 121057", - "supercontigs": 166, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184635.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/635/GCA_003184635.1/genes/GCA_003184635.1_Aspscle1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184645.1", - "ncbiTaxonomyId": "1448320", - "organism": "Aspergillus ellipticus CBS 707.79", - "species": "Aspergillus ellipticus", - "strain": "CBS 707.79", - "supercontigs": 518, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/184/645/GCA_003184645.1/genes/GCA_003184645.1_Aspell1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184745.1", - "ncbiTaxonomyId": "1448315", - "organism": "Aspergillus uvarum CBS 121591", - "species": "Aspergillus uvarum", - "strain": "CBS 121591", - "supercontigs": 172, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184825.1", - "ncbiTaxonomyId": "1448319", - "organism": "Aspergillus fijiensis CBS 313.89", - "species": "Aspergillus fijiensis", - "strain": "CBS 313.89", - "supercontigs": 149, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184845.1", - "ncbiTaxonomyId": "1448316", - "organism": "Aspergillus ibericus CBS 121593", - "species": "Aspergillus ibericus", - "strain": "CBS 121593", - "supercontigs": 116, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184845.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003184865.1", - "ncbiTaxonomyId": "1450537", - "organism": "Aspergillus homomorphus CBS 101889", - "species": "Aspergillus homomorphus", - "strain": "CBS 101889", - "supercontigs": 152, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003287315.1", - "ncbiTaxonomyId": "29920", - "organism": "Phytophthora cactorum 10300", - "species": "Phytophthora cactorum", - "strain": "10300", - "supercontigs": 4623, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003287315.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/287/315/GCA_003287315.1/genes/GCA_003287315.1_Pcac_10300_v1.augustus.gtf.gz" - }, - { - "chromosomes": 9, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003290485.1", - "ncbiTaxonomyId": "76775", - "organism": "Malassezia restricta KCTC 27527", - "species": "Malassezia restricta", - "strain": "KCTC 27527", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003290485.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003324165.2", - "ncbiTaxonomyId": "51637", - "organism": "Naegleria lovaniensis strain ATCC 30569", - "species": "Naegleria lovaniensis", - "strain": "strain ATCC 30569", - "supercontigs": 109, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003324165.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 22, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003339765.3", - "ncbiTaxonomyId": "9544", - "organism": "Macaca mulatta isolate AG07107", - "species": "Macaca mulatta", - "strain": "isolate AG07107", - "supercontigs": 2916, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003339765.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003344705.1", - "ncbiTaxonomyId": "1353008", - "organism": "Aspergillus niger ATCC 13496", - "species": "Aspergillus niger", - "strain": "ATCC 13496", - "supercontigs": 133, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003344705.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/344/705/GCA_003344705.1/genes/GCA_003344705.1_Aspni_bvT_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003402215.1", - "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax PvSY56", - "species": "Plasmodium vivax", - "strain": "PvSY56", - "supercontigs": 14, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003402215.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/402/215/GCA_003402215.1/genes/GCA_003402215.1_PvSY56_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594385.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S11", - "species": "Trypanosoma cruzi", - "strain": "strain S11", - "supercontigs": 7855, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594385.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/385/GCA_003594385.1/genes/GCA_003594385.1_ASM359438v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594405.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain Ycl4", - "species": "Trypanosoma cruzi", - "strain": "strain Ycl4", - "supercontigs": 6664, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594405.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/405/GCA_003594405.1/genes/GCA_003594405.1_ASM359440v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594425.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S23b", - "species": "Trypanosoma cruzi", - "strain": "strain S23b", - "supercontigs": 7145, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594425.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/425/GCA_003594425.1/genes/GCA_003594425.1_ASM359442v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594445.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S92a", - "species": "Trypanosoma cruzi", - "strain": "strain S92a", - "supercontigs": 7134, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594445.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/445/GCA_003594445.1/genes/GCA_003594445.1_ASM359444v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594465.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain Ycl6", - "species": "Trypanosoma cruzi", - "strain": "strain Ycl6", - "supercontigs": 6967, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594465.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/465/GCA_003594465.1/genes/GCA_003594465.1_ASM359446v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594485.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain Ycl2", - "species": "Trypanosoma cruzi", - "strain": "strain Ycl2", - "supercontigs": 6884, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594485.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/485/GCA_003594485.1/genes/GCA_003594485.1_ASM359448v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594585.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S15", - "species": "Trypanosoma cruzi", - "strain": "strain S15", - "supercontigs": 9197, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594585.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/585/GCA_003594585.1/genes/GCA_003594585.1_ASM359458v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594605.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S162a", - "species": "Trypanosoma cruzi", - "strain": "strain S162a", - "supercontigs": 8588, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594605.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/605/GCA_003594605.1/genes/GCA_003594605.1_ASM359460v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594705.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S44a", - "species": "Trypanosoma cruzi", - "strain": "strain S44a", - "supercontigs": 4971, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594705.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/705/GCA_003594705.1/genes/GCA_003594705.1_ASM359470v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003594715.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain S154a", - "species": "Trypanosoma cruzi", - "strain": "strain S154a", - "supercontigs": 6946, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594715.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/594/715/GCA_003594715.1/genes/GCA_003594715.1_ASM359471v1.augustus.gtf.gz" - }, - { - "chromosomes": 9, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003691605.1", - "ncbiTaxonomyId": "425264", - "organism": "Malassezia restricta CBS 7877", - "species": "Malassezia restricta", - "strain": "CBS 7877", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003691605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/691/605/GCA_003691605.1/genes/GCA_003691605.1_ASM369160v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003709115.1", - "ncbiTaxonomyId": "646526", - "organism": "Enterocytozoon hepatopenaei EHP-ID16", - "species": "Enterocytozoon hepatopenaei", - "strain": "EHP-ID16", - "supercontigs": 162, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709115.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/115/GCA_003709115.1/genes/GCA_003709115.1_ASM370911v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003709865.1", - "ncbiTaxonomyId": "2249419", - "organism": "Chaetothyriales sp. CBS 132003", - "species": "Chaetothyriales sp.", - "strain": "CBS 132003", - "supercontigs": 118, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709865.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/709/865/GCA_003709865.1/genes/GCA_003709865.1_ASM370986v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003719155.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain CL", - "species": "Trypanosoma cruzi", - "strain": "strain CL", - "supercontigs": 7764, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719155.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/155/GCA_003719155.1/genes/GCA_003719155.1_ASM371915v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003719455.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain G", - "species": "Trypanosoma cruzi", - "strain": "strain G", - "supercontigs": 1450, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719455.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/455/GCA_003719455.1/genes/GCA_003719455.1_ASM371945v1.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003719575.1", - "ncbiTaxonomyId": "5661", - "organism": "Leishmania donovani CL-SL", - "species": "Leishmania donovani", - "strain": "CL-SL", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719575.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/719/575/GCA_003719575.1/genes/GCA_003719575.1_ASM371957v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003813185.1", - "ncbiTaxonomyId": "1328758", - "organism": "Lentinus tigrinus ALCF2SS1-7", - "species": "Lentinus tigrinus", - "strain": "ALCF2SS1-7", - "supercontigs": 207, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003813185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/813/185/GCA_003813185.1/genes/GCA_003813185.1_Lenti7_1.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003814445.1", - "ncbiTaxonomyId": "877507", - "organism": "Epichloe festucae Fl1", - "species": "Epichloe festucae", - "strain": "Fl1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003814445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/814/445/GCA_003814445.1/genes/GCA_003814445.1_ASM381444v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003843895.1", - "ncbiTaxonomyId": "542832", - "organism": "Peronospora effusa R13", - "species": "Peronospora effusa", - "strain": "R13", - "supercontigs": 784, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003843895.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/843/895/GCA_003843895.1/genes/GCA_003843895.1_ASM384389v1.augustus.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003951495.1", - "ncbiTaxonomyId": "62324", - "organism": "Anopheles funestus FUMOZ", - "species": "Anopheles funestus", - "strain": "FUMOZ", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003951495.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/951/495/GCA_003951495.1/genes/GCA_003951495.1_AfunF3.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_003971505.1", - "ncbiTaxonomyId": "37727", - "organism": "Talaromyces marneffei TM4", - "species": "Talaromyces marneffei", - "strain": "TM4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003971505.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/003/971/505/GCA_003971505.1/genes/GCA_003971505.1_ASM397150v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004000055.1", - "ncbiTaxonomyId": "97331", - "organism": "Arthrobotrys flagrans CBS H-5679", - "species": "Arthrobotrys flagrans", - "strain": "CBS H-5679", - "supercontigs": 14, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000055.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/055/GCA_004000055.1/genes/GCA_004000055.1_DF_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004000155.1", - "ncbiTaxonomyId": "291195", - "organism": "Tubulinosema ratisbonensis Franzen", - "species": "Tubulinosema ratisbonensis", - "strain": "Franzen", - "supercontigs": 952, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000155.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/000/155/GCA_004000155.1/genes/GCA_004000155.1_ASM400015v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004115165.2", - "ncbiTaxonomyId": "5501", - "organism": "Coccidioides immitis WA_211", - "species": "Coccidioides immitis", - "strain": "WA_211", - "supercontigs": 62, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004115165.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/115/165/GCA_004115165.2/genes/GCA_004115165.2_Cimm211_ragoo.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004125335.1", - "ncbiTaxonomyId": "203904", - "organism": "Hemileia vastatrix Race XXXIII", - "species": "Hemileia vastatrix", - "strain": "Race XXXIII", - "supercontigs": 116756, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004125335.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/125/335/GCA_004125335.1/genes/GCA_004125335.1_ASM412533v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004136515.2", - "ncbiTaxonomyId": "1518534", - "organism": "Anopheles coluzzii Ngousso", - "species": "Anopheles coluzzii", - "strain": "Ngousso", - "supercontigs": 205, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004136515.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/136/515/GCA_004136515.2/genes/GCA_004136515.2_ASM413651v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004324935.1", - "ncbiTaxonomyId": "174685", - "organism": "Ordospora colligata GB-EP-1", - "species": "Ordospora colligata", - "strain": "GB-EP-1", - "supercontigs": 18, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324935.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/935/GCA_004324935.1/genes/GCA_004324935.1_Ordospora_GBEP_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004324945.1", - "ncbiTaxonomyId": "174685", - "organism": "Ordospora colligata NO-V-7", - "species": "Ordospora colligata", - "strain": "NO-V-7", - "supercontigs": 21, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004324945.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/324/945/GCA_004324945.1/genes/GCA_004324945.1_Ordospora_NOV7_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004325035.1", - "ncbiTaxonomyId": "148818", - "organism": "Hamiltosporidium magnivora IL-BN-2", - "species": "Hamiltosporidium magnivora", - "strain": "IL-BN-2", - "supercontigs": 3833, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325035.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/035/GCA_004325035.1/genes/GCA_004325035.1_ASM432503v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004325045.1", - "ncbiTaxonomyId": "1176355", - "organism": "Hamiltosporidium tvaerminnensis FI-OER-3-3", - "species": "Hamiltosporidium tvaerminnensis", - "strain": "FI-OER-3-3", - "supercontigs": 2915, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325045.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/045/GCA_004325045.1/genes/GCA_004325045.1_FIOER33_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004325055.1", - "ncbiTaxonomyId": "174685", - "organism": "Ordospora colligata FI-SK-17-1", - "species": "Ordospora colligata", - "strain": "FI-SK-17-1", - "supercontigs": 26, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325055.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/055/GCA_004325055.1/genes/GCA_004325055.1_Ordospora_FISK_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004325065.1", - "ncbiTaxonomyId": "148818", - "organism": "Hamiltosporidium magnivora BE-OM-2", - "species": "Hamiltosporidium magnivora", - "strain": "BE-OM-2", - "supercontigs": 3550, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325065.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/065/GCA_004325065.1/genes/GCA_004325065.1_BEOM2_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004325075.1", - "ncbiTaxonomyId": "1176355", - "organism": "Hamiltosporidium tvaerminnensis IL-G-3", - "species": "Hamiltosporidium tvaerminnensis", - "strain": "IL-G-3", - "supercontigs": 2738, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/325/075/GCA_004325075.1/genes/GCA_004325075.1_ILG3_v1.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004337985.1", - "ncbiTaxonomyId": "1578925", - "organism": "Pyricularia pennisetigena Br36", - "species": "Pyricularia pennisetigena", - "strain": "Br36", - "supercontigs": 103, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004337985.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/337/985/GCA_004337985.1/genes/GCA_004337985.1_PpBr36.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004355085.1", - "ncbiTaxonomyId": "50990", - "organism": "Rickenella mellea Ricmel1", - "species": "Rickenella mellea", - "strain": "Ricmel1", - "supercontigs": 848, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004355085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/355/085/GCA_004355085.1/genes/GCA_004355085.1_Ricmel1.augustus.gtf.gz" - }, - { - "chromosomes": 19, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004359215.2", - "ncbiTaxonomyId": "4779", - "organism": "Bremia lactucae strain SF5", - "species": "Bremia lactucae", - "strain": "strain SF5", - "supercontigs": 201, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004359215.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/359/215/GCA_004359215.2/genes/GCA_004359215.2_BlacSF5v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004798825.1", - "ncbiTaxonomyId": "1220188", - "organism": "Aspergillus tanneri NIH1004", - "species": "Aspergillus tanneri", - "strain": "NIH1004", - "supercontigs": 1715, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004798825.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/798/825/GCA_004798825.1/genes/GCA_004798825.1_ASM479882v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004919615.1", - "ncbiTaxonomyId": "40302", - "organism": "Nosema ceranae BRL", - "species": "Nosema ceranae", - "strain": "BRL", - "supercontigs": 110, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004919615.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/919/615/GCA_004919615.1/genes/GCA_004919615.1_Ncer_3.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_004936735.2", - "ncbiTaxonomyId": "1280935", - "organism": "Cryptosporidium sp. chipmunk genotype I strain 37763", - "species": "Cryptosporidium sp. chipmunk genotype I", - "strain": "strain 37763", - "supercontigs": 50, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004936735.2", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/004/936/735/GCA_004936735.2/genes/GCA_004936735.2_CCh_genotype_I.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 54, - "genomeVersionAssemblyId": "GCA_006247105.1", - "ncbiTaxonomyId": "5742", - "organism": "Giardia muris strain Roberts-Thomson", - "species": "Giardia muris", - "strain": "strain Roberts-Thomson", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006247105.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/247/105/GCA_006247105.1/genes/GCA_006247105.1_UU_GM_1.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_006496715.1", - "ncbiTaxonomyId": "7160", - "organism": "Aedes albopictus Foshan FPA", - "species": "Aedes albopictus", - "strain": "Foshan FPA", - "supercontigs": 2196, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_006496715.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/496/715/GCA_006496715.1/genes/GCA_006496715.1_Aalbo_primary.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_006535955.1", - "ncbiTaxonomyId": "286115", - "organism": "Synchytrium endobioticum MB42", - "species": "Synchytrium endobioticum", - "strain": "MB42", - "supercontigs": 786, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006535955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/006/535/955/GCA_006535955.1/genes/GCA_006535955.1_ASM653595v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 3, - "genomeVersionAssemblyId": "GCA_007210665.1", - "ncbiTaxonomyId": "756076", - "organism": "Cryptosporidium tyzzeri isolate UGA55", - "species": "Cryptosporidium tyzzeri", - "strain": "isolate UGA55", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007210665.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/210/665/GCA_007210665.1/genes/GCA_007210665.1_Ctyz_UGA_55.augustus.gtf.gz" - }, - { - "chromosomes": 17, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_007674295.1", - "ncbiTaxonomyId": "278021", - "organism": "Antonospora locustae CLX", - "species": "Antonospora locustae", - "strain": "CLX", - "supercontigs": 1, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007674295.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/007/674/295/GCA_007674295.1/genes/GCA_007674295.1_ASM767429v1.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008080495.1", - "ncbiTaxonomyId": "73501", - "organism": "Cordyceps militaris ATCC 34164", - "species": "Cordyceps militaris", - "strain": "ATCC 34164", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008080495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/080/495/GCA_008080495.1/genes/GCA_008080495.1_ASM808049v1.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008275145.1", - "ncbiTaxonomyId": "498019", - "organism": "Candida auris strain B11245", - "species": "[Candida] auris", - "strain": "B11245", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008275145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/275/145/GCA_008275145.1/genes/GCA_008275145.1_ASM827514v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008403515.1", - "ncbiTaxonomyId": "5763", - "organism": "Naegleria fowleri strain ATCC 30894", - "species": "Naegleria fowleri", - "strain": "strain ATCC 30894", - "supercontigs": 81, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008403515.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008704595.1", - "ncbiTaxonomyId": "5481", - "organism": "Diutina rugosa CBS 613", - "species": "Diutina rugosa", - "strain": "CBS 613", - "supercontigs": 169, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008704595.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008704605.1", - "ncbiTaxonomyId": "44093", - "organism": "Trichomonascus ciferrii CBS 4856", - "species": "Trichomonascus ciferrii", - "strain": "CBS 4856", - "supercontigs": 583, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008704605.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/704/605/GCA_008704605.1/genes/GCA_008704605.1_ASM870460v1.augustus.gtf.gz" - }, - { - "chromosomes": 10, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_008728235.1", - "ncbiTaxonomyId": "688394", - "organism": "Lichtheimia ramosa KPH11", - "species": "Lichtheimia ramosa", - "strain": "KPH11", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008728235.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/008/728/235/GCA_008728235.1/genes/GCA_008728235.1_ASM872823v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009017415.1", - "ncbiTaxonomyId": "5059", - "organism": "Aspergillus flavus NRRL3357 2020", - "species": "Aspergillus flavus", - "strain": "NRRL3357 2020", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009017415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/017/415/GCA_009017415.1/genes/GCA_009017415.1_ASM901741v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009176385.1", - "ncbiTaxonomyId": "5067", - "organism": "Aspergillus parasiticus CBS 117618", - "species": "Aspergillus parasiticus", - "strain": "CBS 117618", - "supercontigs": 270, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009176385.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/176/385/GCA_009176385.1/genes/GCA_009176385.1_Asppar1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009650685.1", - "ncbiTaxonomyId": "2268382", - "organism": "Cryptococcus cf. gattii MF34", - "species": "Cryptococcus cf. gattii", - "strain": "MF34", - "supercontigs": 2, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009650685.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/650/685/GCA_009650685.1/genes/GCA_009650685.1_Cryp_gatt_MF34.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009731335.1", - "ncbiTaxonomyId": "5689", - "organism": "Leishmania tarentolae Parrot Tar II 2019", - "species": "Leishmania tarentolae", - "strain": "Parrot Tar II 2019", - "supercontigs": 179, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009731335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/731/335/GCA_009731335.1/genes/GCA_009731335.1_Lta_assembly01.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009761425.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum NF135.C10", - "species": "Plasmodium falciparum", - "strain": "NF135.C10", - "supercontigs": 21, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761425.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/425/GCA_009761425.1/genes/GCA_009761425.1_NF135.C10_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009761475.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum NF54", - "species": "Plasmodium falciparum", - "strain": "NF54", - "supercontigs": 28, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761475.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/475/GCA_009761475.1/genes/GCA_009761475.1_NF54_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009761515.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum NF166", - "species": "Plasmodium falciparum", - "strain": "NF166", - "supercontigs": 30, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761515.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/515/GCA_009761515.1/genes/GCA_009761515.1_NF166_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009761555.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum 7G8 2019", - "species": "Plasmodium falciparum", - "strain": "7G8 2019", - "supercontigs": 20, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009761555.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/761/555/GCA_009761555.1/genes/GCA_009761555.1_7G8_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009768925.2", - "ncbiTaxonomyId": "310047", - "organism": "Cryptosporidium bovis isolate 45015", - "species": "Cryptosporidium bovis", - "strain": "isolate 45015", - "supercontigs": 55, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009768925.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009792415.2", - "ncbiTaxonomyId": "515981", - "organism": "Cryptosporidium ryanae 45019", - "species": "Cryptosporidium ryanae", - "strain": "45019", - "supercontigs": 93, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009792415.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_009812365.1", - "ncbiTaxonomyId": "5061", - "organism": "Aspergillus niger strain LDM3", - "species": "Aspergillus niger", - "strain": "strain LDM3", - "supercontigs": 14, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009812365.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/009/812/365/GCA_009812365.1/genes/GCA_009812365.1_ASM981236v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_010111755.1", - "ncbiTaxonomyId": "5478", - "organism": "Nakaseomyces glabratus CBS138 2020", - "species": "Nakaseomyces glabratus", - "strain": "CBS138 2020", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_010111755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_011037195.1", - "ncbiTaxonomyId": "30076", - "organism": "Triatoma infestans isolate FIOC_28", - "species": "Triatoma infestans", - "strain": "isolate FIOC_28", - "supercontigs": 14951, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011037195.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/037/195/GCA_011037195.1/genes/GCA_011037195.1_UVM_Tinf_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_011634545.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage A isolate WB Calgary", - "species": "Giardia Assemblage A", - "strain": "isolate WB Calgary", - "supercontigs": 37, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634545.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/545/GCA_011634545.1/genes/GCA_011634545.1_ASM1163454v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_011634555.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia intestinalis Beaver", - "species": "Giardia Assemblage A", - "strain": "Beaver", - "supercontigs": 8, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634555.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/555/GCA_011634555.1/genes/GCA_011634555.1_ASM1163455v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_011634595.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage B isolate GS Calgary", - "species": "Giardia Assemblage B", - "strain": "isolate GS Calgary", - "supercontigs": 19, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011634595.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/011/634/595/GCA_011634595.1/genes/GCA_011634595.1_ASM1163459v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013099955.1", - "ncbiTaxonomyId": "5811", - "organism": "Toxoplasma gondii RH-88", - "species": "Toxoplasma gondii", - "strain": "RH-88", - "supercontigs": 183, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013099955.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/099/955/GCA_013099955.1/genes/GCA_013099955.1_tgrh88.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013177555.1", - "ncbiTaxonomyId": "5482", - "organism": "Candida tropicalis MYA-3404 2020", - "species": "Candida tropicalis", - "strain": "MYA-3404 2020", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013177555.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/177/555/GCA_013177555.1/genes/GCA_013177555.1_ASM1317755v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013339685.2", - "ncbiTaxonomyId": "266040", - "organism": "Hyalomma asiaticum Hyas-2018", - "species": "Hyalomma asiaticum", - "strain": "Hyas-2018", - "supercontigs": 6308, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339685.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/685/GCA_013339685.2/genes/GCA_013339685.2_BIME_Hyas_1.3.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 7036, - "genomeVersionAssemblyId": "GCA_013339725.1", - "ncbiTaxonomyId": "6941", - "organism": "Rhipicephalus microplus Rmic-2018", - "species": "Rhipicephalus microplus", - "strain": "Rmic-2018", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339725.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/725/GCA_013339725.1/genes/GCA_013339725.1_BIME_Rmic_1.3.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013339745.2", - "ncbiTaxonomyId": "543639", - "organism": "Dermacentor silvarum Dsil-2018", - "species": "Dermacentor silvarum", - "strain": "Dsil-2018", - "supercontigs": 1653, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339745.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013339765.2", - "ncbiTaxonomyId": "44386", - "organism": "Haemaphysalis longicornis HaeL-2018", - "species": "Haemaphysalis longicornis", - "strain": "HaeL-2018", - "supercontigs": 3874, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013339765.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/339/765/GCA_013339765.2/genes/GCA_013339765.2_BIME_HaeL_1.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013358655.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Berenice", - "species": "Trypanosoma cruzi", - "strain": "Berenice", - "supercontigs": 923, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358655.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/655/GCA_013358655.1/genes/GCA_013358655.1_ASM1335865v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013358835.2", - "ncbiTaxonomyId": "34615", - "organism": "Ixodes persulcatus Iper-2018", - "species": "Ixodes persulcatus", - "strain": "Iper-2018", - "supercontigs": 11596, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358835.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/358/835/GCA_013358835.2/genes/GCA_013358835.2_BIME_Iper_1.3.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013396185.1", - "ncbiTaxonomyId": "48490", - "organism": "Fusarium circinatum NRRL 25331", - "species": "Fusarium circinatum", - "strain": "NRRL 25331", - "supercontigs": 1222, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013396185.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/396/185/GCA_013396185.1/genes/GCA_013396185.1_ASM1339618v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_013436015.1", - "ncbiTaxonomyId": "34611", - "organism": "Rhipicephalus annulatus KleinGrass", - "species": "Rhipicephalus annulatus", - "strain": "KleinGrass", - "supercontigs": 16339, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013436015.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/013/436/015/GCA_013436015.1/genes/GCA_013436015.1_TxGen_Rann.augustus.gtf.gz" - }, - { - "chromosomes": 15, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014154955.1", - "ncbiTaxonomyId": "100902", - "organism": "Fusarium oxysporum f. sp. conglutinans Fo5176", - "species": "Fusarium oxysporum", - "strain": "f. sp. conglutinans Fo5176", - "supercontigs": 4, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014154955.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/154/955/GCA_014154955.1/genes/GCA_014154955.1_SMRT_HiC_Fo5176.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014183025.1", - "ncbiTaxonomyId": "483707", - "organism": "Raffaelea lauricola RL4", - "species": "Raffaelea lauricola", - "strain": "RL4", - "supercontigs": 169, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014183025.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/183/025/GCA_014183025.1/genes/GCA_014183025.1_ASM1418302v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014217725.1", - "ncbiTaxonomyId": "5478", - "organism": "Nakaseomyces glabratus BG2", - "species": "Nakaseomyces glabratus", - "strain": "BG2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014217725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/217/725/GCA_014217725.1/genes/GCA_014217725.1_ASM1421772v1.augustus.gtf.gz" - }, - { - "chromosomes": 40, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014441545.1", - "ncbiTaxonomyId": "9615", - "organism": "Canis lupus familiaris isolate SID07034", - "species": "Canis lupus", - "strain": "familiaris isolate SID07034", - "supercontigs": 336, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014441545.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "" - }, - { - "chromosomes": 12, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014607475.1", - "ncbiTaxonomyId": "176275", - "organism": "Beauveria bassiana HN6", - "species": "Beauveria bassiana", - "strain": "HN6", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014607475.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/607/475/GCA_014607475.1/genes/GCA_014607475.1_ASM1460747v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014805555.1", - "ncbiTaxonomyId": "164912", - "organism": "Thelohania contejeani T1", - "species": "Thelohania contejeani", - "strain": "T1", - "supercontigs": 1391, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805555.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/555/GCA_014805555.1/genes/GCA_014805555.1_ASM1480555v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014805625.1", - "ncbiTaxonomyId": "7396", - "organism": "Glossina fuscipes IAEA 2018", - "species": "Glossina fuscipes", - "strain": "IAEA 2018", - "supercontigs": 7986, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014805625.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014805705.1", - "ncbiTaxonomyId": "658444", - "organism": "Cucumispora dikerogammari Dv6", - "species": "Cucumispora dikerogammari", - "strain": "Dv6", - "supercontigs": 7783, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805705.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/805/705/GCA_014805705.1/genes/GCA_014805705.1_ASM1480570v1.augustus.gtf.gz" - }, - { - "chromosomes": 37, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014843625.1", - "ncbiTaxonomyId": "5763", - "organism": "Naegleria fowleri strain Ty", - "species": "Naegleria fowleri", - "strain": "strain Ty", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014843625.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/843/625/GCA_014843625.1/genes/GCA_014843625.1_ASM1484362v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_014898695.1", - "ncbiTaxonomyId": "5811", - "organism": "Toxoplasma gondii strain ME49xCTG F1 S27", - "species": "Toxoplasma gondii", - "strain": "strain ME49xCTG F1 S27", - "supercontigs": 48, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014898695.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/014/898/695/GCA_014898695.1/genes/GCA_014898695.1_ASM1489869v1.augustus.gtf.gz" - }, - { - "chromosomes": 43, - "contigs": 359, - "genomeVersionAssemblyId": "GCA_015033625.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Brazil A4", - "species": "Trypanosoma cruzi", - "strain": "Brazil A4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033625.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/625/GCA_015033625.1/genes/GCA_015033625.1_ASM1503362v1.augustus.gtf.gz" - }, - { - "chromosomes": 40, - "contigs": 226, - "genomeVersionAssemblyId": "GCA_015033655.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi Y C6", - "species": "Trypanosoma cruzi", - "strain": "Y C6", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033655.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/033/655/GCA_015033655.1/genes/GCA_015033655.1_ASM1503365v1.augustus.gtf.gz" - }, - { - "chromosomes": 22, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_015227675.2", - "ncbiTaxonomyId": "10116", - "organism": "Rattus norvegicus BN/NHsdMcwi", - "species": "Rattus norvegicus", - "strain": "BN/NHsdMcwi", - "supercontigs": 153, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015227675.2", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/227/675/GCA_015227675.2/genes/GCA_015227675.2_mRatBN7.2.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_015245375.1", - "ncbiTaxonomyId": "5807", - "organism": "Cryptosporidium parvum IOWA-ATCC", - "species": "Cryptosporidium parvum", - "strain": "IOWA-ATCC", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015245375.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/245/375/GCA_015245375.1/genes/GCA_015245375.1_ASM1524537v1.augustus.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 53, - "genomeVersionAssemblyId": "GCA_015732765.1", - "ncbiTaxonomyId": "7176", - "organism": "Culex quinquefasciatus JHB 2020", - "species": "Culex quinquefasciatus", - "strain": "JHB 2020", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015732765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_015832245.1", - "ncbiTaxonomyId": "83296", - "organism": "Nosema granulosis Ou3-Ou53", - "species": "Nosema granulosis", - "strain": "Ou3-Ou53", - "supercontigs": 1754, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015832245.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/015/832/245/GCA_015832245.1/genes/GCA_015832245.1_ASM1583224v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 31, - "genomeVersionAssemblyId": "GCA_016097395.1", - "ncbiTaxonomyId": "29176", - "organism": "Neospora caninum Liverpool 2019", - "species": "Neospora caninum", - "strain": "Liverpool 2019", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016097395.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/097/395/GCA_016097395.1/genes/GCA_016097395.1_Ncaninum_LIV.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016255985.1", - "ncbiTaxonomyId": "288439", - "organism": "Dictyocoela roeselum Ou19", - "species": "Dictyocoela roeselum", - "strain": "Ou19", - "supercontigs": 1033, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016255985.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/255/985/GCA_016255985.1/genes/GCA_016255985.1_ASM1625598v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016256075.1", - "ncbiTaxonomyId": "279532", - "organism": "Dictyocoela muelleri Ou54", - "species": "Dictyocoela muelleri", - "strain": "Ou54", - "supercontigs": 11522, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016256075.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/256/075/GCA_016256075.1/genes/GCA_016256075.1_ASM1625607v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016618375.1", - "ncbiTaxonomyId": "4784", - "organism": "Phytophthora capsici LT1534", - "species": "Phytophthora capsici", - "strain": "LT1534", - "supercontigs": 782, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016618375.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/618/375/GCA_016618375.1/genes/GCA_016618375.1_Pcap_4.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016772295.1", - "ncbiTaxonomyId": "1132390", - "organism": "Coprinopsis cinerea #326", - "species": "Coprinopsis cinerea", - "strain": "#326", - "supercontigs": 31, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016772295.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/772/295/GCA_016772295.1/genes/GCA_016772295.1_ASM1677229v1.augustus.gtf.gz" - }, - { - "chromosomes": 23, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016801405.1", - "ncbiTaxonomyId": "321614", - "organism": "Parastagonospora nodorum SN15", - "species": "Parastagonospora nodorum", - "strain": "SN15", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016801405.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/801/405/GCA_016801405.1/genes/GCA_016801405.1_ASM1680140v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_016906325.1", - "ncbiTaxonomyId": "38448", - "organism": "Monilinia fructicola CPMC6", - "species": "Monilinia fructicola", - "strain": "CPMC6", - "supercontigs": 99, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016906325.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/016/906/325/GCA_016906325.1/genes/GCA_016906325.1_ASM1690632v1.augustus.gtf.gz" - }, - { - "chromosomes": 17, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017301755.1", - "ncbiTaxonomyId": "38082", - "organism": "Pneumocystis wakefieldiae 2A", - "species": "Pneumocystis wakefieldiae", - "strain": "2A", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017301755.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/301/755/GCA_017301755.1/genes/GCA_017301755.1_ASM1730175v1.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017310585.1", - "ncbiTaxonomyId": "5037", - "organism": "Histoplasma capsulatum WU24", - "species": "Histoplasma capsulatum", - "strain": "WU24", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310585.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/585/GCA_017310585.1/genes/GCA_017310585.1_ASM1731058v1.augustus.gtf.gz" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017310615.1", - "ncbiTaxonomyId": "544711", - "organism": "Histoplasma capsulatum H88", - "species": "Histoplasma capsulatum", - "strain": "H88", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310615.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/310/615/GCA_017310615.1/genes/GCA_017310615.1_ASM1731061v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017311285.1", - "ncbiTaxonomyId": "42067", - "organism": "Pneumocystis oryctolagi CS1", - "species": "Pneumocystis oryctolagi", - "strain": "CS1", - "supercontigs": 38, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017311285.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/311/285/GCA_017311285.1/genes/GCA_017311285.1_Pneumocystis_oryctolagi_MERGE_1.1.augustus.gtf.gz" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017355575.1", - "ncbiTaxonomyId": "447093", - "organism": "Histoplasma capsulatum G186AR", - "species": "Histoplasma capsulatum", - "strain": "G186AR", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017355575.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/355/575/GCA_017355575.1/genes/GCA_017355575.1_ASM1735557v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017607445.1", - "ncbiTaxonomyId": "2902605", - "organism": "Histoplasma capsulatum G217B", - "species": "Histoplasma capsulatum", - "strain": "G217B", - "supercontigs": 11, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607445.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/445/GCA_017607445.1/genes/GCA_017607445.1_ASM1760744v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017607465.1", - "ncbiTaxonomyId": "5037", - "organism": "Histoplasma capsulatum G184AR", - "species": "Histoplasma capsulatum", - "strain": "G184AR", - "supercontigs": 11, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607465.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/607/465/GCA_017607465.1/genes/GCA_017607465.1_ASM1760746v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017655625.1", - "ncbiTaxonomyId": "273372", - "organism": "Candida metapsilosis BP57", - "species": "Candida metapsilosis", - "strain": "BP57", - "supercontigs": 9, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017655625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/655/625/GCA_017655625.1/genes/GCA_017655625.1_BP57.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017788925.1", - "ncbiTaxonomyId": "2698477", - "organism": "Pneumocystis canis CanA", - "species": "Pneumocystis canis", - "strain": "CanA", - "supercontigs": 33, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017788925.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/788/925/GCA_017788925.1/genes/GCA_017788925.1_ASM1778892v1.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017916305.1", - "ncbiTaxonomyId": "5663", - "organism": "Leishmania enriettii MCAV/BR/2001/CUR178", - "species": "Leishmania enriettii", - "strain": "MCAV/BR/2001/CUR178", - "supercontigs": 18, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017916305.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/305/GCA_017916305.1/genes/GCA_017916305.1_LU_Lenr_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017916325.1", - "ncbiTaxonomyId": "1580590", - "organism": "Leishmania martiniquensis MHOM/TH/2012/LSCM1", - "species": "Leishmania martiniquensis", - "strain": "MHOM/TH/2012/LSCM1", - "supercontigs": 6, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916325.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/325/GCA_017916325.1/genes/GCA_017916325.1_LU_Lmar_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017916335.1", - "ncbiTaxonomyId": "2249476", - "organism": "Leishmania orientalis MHOM/TH/2014/LSCM4", - "species": "Leishmania orientalis", - "strain": "MHOM/TH/2014/LSCM4", - "supercontigs": 62, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916335.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/916/335/GCA_017916335.1/genes/GCA_017916335.1_LU_Lori_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017918215.1", - "ncbiTaxonomyId": "2803181", - "organism": "Leishmania sp. Ghana MHOM/GH/2012/GH5", - "species": "Leishmania sp. Ghana", - "strain": "MHOM/GH/2012/GH5", - "supercontigs": 80, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918215.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/215/GCA_017918215.1/genes/GCA_017918215.1_LU_Lgha_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017918225.1", - "ncbiTaxonomyId": "2802991", - "organism": "Leishmania sp. Namibia MPRO/NA/1975/252/LV425", - "species": "Leishmania sp. Namibia", - "strain": "MPRO/NA/1975/252/LV425", - "supercontigs": 31, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918225.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/225/GCA_017918225.1/genes/GCA_017918225.1_LU_LNam_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_017918235.1", - "ncbiTaxonomyId": "2761500", - "organism": "Porcisia hertigi MCOE/PA/1965/C119", - "species": "Porcisia hertigi", - "strain": "MCOE/PA/1965/C119", - "supercontigs": 38, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918235.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/017/918/235/GCA_017918235.1/genes/GCA_017918235.1_LU_Pher_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 16, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018127085.1", - "ncbiTaxonomyId": "2698480", - "organism": "Pneumocystis sp. macacae isolate P2C", - "species": "Pneumocystis sp. 'macacae'", - "strain": "P2C", - "supercontigs": 3, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018127085.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/127/085/GCA_018127085.1/genes/GCA_018127085.1_P2C.v1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018342045.1", - "ncbiTaxonomyId": "27973", - "organism": "Encephalitozoon hellem Swiss", - "species": "Encephalitozoon hellem", - "strain": "Swiss", - "supercontigs": 32, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018342045.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/342/045/GCA_018342045.1/genes/GCA_018342045.1_Swiss_hellem_version_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018398725.1", - "ncbiTaxonomyId": "32595", - "organism": "Babesia divergens strain 1802A", - "species": "Babesia divergens", - "strain": "strain 1802A", - "supercontigs": 79, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398725.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/725/GCA_018398725.1/genes/GCA_018398725.1_ASM1839872v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018398765.1", - "ncbiTaxonomyId": "1169474", - "organism": "Chromera velia CCMP2878", - "species": "Chromera velia", - "strain": "CCMP2878", - "supercontigs": 5963, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018398765.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/398/765/GCA_018398765.1/genes/GCA_018398765.1_ASM1839876v1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018416015.2", - "ncbiTaxonomyId": "443226", - "organism": "Coccidioides posadasii strain Silveira 2022", - "species": "Coccidioides posadasii", - "strain": "strain Silveira 2022", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/416/015/GCA_018416015.2/genes/GCA_018416015.2_ASM1841601v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018466815.1", - "ncbiTaxonomyId": "885310", - "organism": "Entamoeba histolytica DS4-868", - "species": "Entamoeba histolytica", - "strain": "DS4-868", - "supercontigs": 1177, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018466815.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/466/815/GCA_018466815.1/genes/GCA_018466815.1_ASM1846681v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_018691715.1", - "ncbiTaxonomyId": "4785", - "organism": "Phytophthora cinnamomi GKB4", - "species": "Phytophthora cinnamomi", - "strain": "GKB4", - "supercontigs": 133, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018691715.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/018/691/715/GCA_018691715.1/genes/GCA_018691715.1_ASM1869171v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_019059535.1", - "ncbiTaxonomyId": "885312", - "organism": "Entamoeba histolytica KU48", - "species": "Entamoeba histolytica", - "strain": "KU48", - "supercontigs": 1168, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019059535.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/059/535/GCA_019059535.1/genes/GCA_019059535.1_ASM1905953v1.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 685, - "genomeVersionAssemblyId": "GCA_019096175.1", - "ncbiTaxonomyId": "5691", - "organism": "Trypanosoma brucei EATRO1125", - "species": "Trypanosoma brucei", - "strain": "EATRO1125", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019096175.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/096/175/GCA_019096175.1/genes/GCA_019096175.1_IZB_EATRO1125_Draft_genome_1.0.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_019844115.2", - "ncbiTaxonomyId": "5807", - "organism": "Cryptosporidium parvum 2022", - "species": "Cryptosporidium parvum", - "strain": "2022", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019844115.2", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/019/844/115/GCA_019844115.2/genes/GCA_019844115.2_ASM1984411v2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_019968955.1", - "ncbiTaxonomyId": "2853593", - "organism": "Porospora cf. gigantea A", - "species": "Porospora gigantea", - "strain": "A", - "supercontigs": 787, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_019968955.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020184695.1", - "ncbiTaxonomyId": "135588", - "organism": "Histomonas meleagridis 2922-C6/04-290x", - "species": "Histomonas meleagridis", - "strain": "2922-C6/04-290x", - "supercontigs": 281, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020184695.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/184/695/GCA_020184695.1/genes/GCA_020184695.1_ASM2018469v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020186115.1", - "ncbiTaxonomyId": "135588", - "organism": "Histomonas meleagridis 2922-C6/04-10x", - "species": "Histomonas meleagridis", - "strain": "2922-C6/04-10x", - "supercontigs": 187, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020186115.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/186/115/GCA_020186115.1/genes/GCA_020186115.1_ASM2018611v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020283535.1", - "ncbiTaxonomyId": "885313", - "organism": "Entamoeba histolytica KU50", - "species": "Entamoeba histolytica", - "strain": "KU50", - "supercontigs": 1063, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283535.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/535/GCA_020283535.1/genes/GCA_020283535.1_ASM2028353v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020283715.1", - "ncbiTaxonomyId": "27996", - "organism": "Cytauxzoon felis strain Winnie", - "species": "Cytauxzoon felis", - "strain": "strain Winnie", - "supercontigs": 358, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020283715.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/283/715/GCA_020283715.1/genes/GCA_020283715.1_ASM2028371v1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020450195.1", - "ncbiTaxonomyId": "5478", - "organism": "Nakaseomyces glabratus BG3993", - "species": "Nakaseomyces glabratus", - "strain": "BG3993", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020450195.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/450/195/GCA_020450195.1/genes/GCA_020450195.1_ASM2045019v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020509355.1", - "ncbiTaxonomyId": "1463230", - "organism": "Blechomonas ayalai B08-376", - "species": "Blechomonas ayalai", - "strain": "B08-376", - "supercontigs": 545, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020509355.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/509/355/GCA_020509355.1/genes/GCA_020509355.1_ASM2050935v1.augustus.gtf.gz" - }, - { - "chromosomes": 33, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020716725.1", - "ncbiTaxonomyId": "588596", - "organism": "Rhizophagus irregularis DAOM 181602=DAOM 197198", - "species": "Rhizophagus irregularis", - "strain": "DAOM 181602=DAOM 197198", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716725.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/725/GCA_020716725.1/genes/GCA_020716725.1_ASM2071672v1.augustus.gtf.gz" - }, - { - "chromosomes": 33, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020716745.1", - "ncbiTaxonomyId": "588596", - "organism": "Rhizophagus irregularis C2", - "species": "Rhizophagus irregularis", - "strain": "C2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716745.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/716/745/GCA_020716745.1/genes/GCA_020716745.1_ASM2071674v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020800215.1", - "ncbiTaxonomyId": "164328", - "organism": "Phytophthora ramorum strain Pr102", - "species": "Phytophthora ramorum", - "strain": "strain Pr102", - "supercontigs": 28, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800215.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/215/GCA_020800215.1/genes/GCA_020800215.1_PR-102_v3_p.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020800235.1", - "ncbiTaxonomyId": "164328", - "organism": "Phytophthora ramorum 14567", - "species": "Phytophthora ramorum", - "strain": "14567", - "supercontigs": 27, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020800235.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/800/235/GCA_020800235.1/genes/GCA_020800235.1_ASM2080023v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_020844765.3", - "ncbiTaxonomyId": "73239", - "organism": "Plasmodium yoelii yoelii 17XNL 2023", - "species": "Plasmodium yoelii", - "strain": "yoelii 17XNL 2023", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020844765.3", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/020/844/765/GCA_020844765.3/genes/GCA_020844765.3_17XNL_PSU_2.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021020595.1", - "ncbiTaxonomyId": "5755", - "organism": "Acanthamoeba castellanii C3", - "species": "Acanthamoeba castellanii", - "strain": "C3", - "supercontigs": 174, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020595.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/595/GCA_021020595.1/genes/GCA_021020595.1_ASM2102059v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021020605.1", - "ncbiTaxonomyId": "5755", - "organism": "Acanthamoeba castellanii str. Neff 2021", - "species": "Acanthamoeba castellanii", - "strain": "str. Neff 2021", - "supercontigs": 111, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021020605.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/020/605/GCA_021020605.1/genes/GCA_021020605.1_ASM2102060v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021527665.1", - "ncbiTaxonomyId": "100861", - "organism": "Aphanomyces euteiches MF1", - "species": "Aphanomyces euteiches", - "strain": "MF1", - "supercontigs": 7789, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021527665.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/527/665/GCA_021527665.1/genes/GCA_021527665.1_ASM2152766v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021653875.1", - "ncbiTaxonomyId": "1912982", - "organism": "Nematocida major JUm2507", - "species": "Nematocida major", - "strain": "JUm2507", - "supercontigs": 111, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021653875.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021653915.1", - "ncbiTaxonomyId": "7159", - "organism": "Aedes aegypti Aag2", - "species": "Aedes aegypti", - "strain": "Aag2", - "supercontigs": 3752, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021653915.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/021/653/915/GCA_021653915.1/genes/GCA_021653915.1_ASM2165391v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_021821965.1", - "ncbiTaxonomyId": "3039483", - "organism": "Microsporidium sp. FI-F-10", - "species": "Microsporidium sp.", - "strain": "FI-F-10", - "supercontigs": 22, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021821965.1", - "vEuPathDbProject": "MicrosporidiaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022059095.1", - "ncbiTaxonomyId": "715481", - "organism": "Trypanosoma melophagium St. Kilda", - "species": "Trypanosoma melophagium", - "strain": "St. Kilda", - "supercontigs": 64, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_022059095.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/059/095/GCA_022059095.1/genes/GCA_022059095.1_T.mel.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022385695.1", - "ncbiTaxonomyId": "114810", - "organism": "Xylaria arbuscula CBS 124340", - "species": "Xylaria arbuscula", - "strain": "CBS 124340", - "supercontigs": 89, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022385695.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/385/695/GCA_022385695.1/genes/GCA_022385695.1_Xylarb124340_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022530875.1", - "ncbiTaxonomyId": "51637", - "organism": "Naegleria lovaniensis NL_76_15_250", - "species": "Naegleria lovaniensis", - "strain": "NL_76_15_250", - "supercontigs": 199, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022530875.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/530/875/GCA_022530875.1/genes/GCA_022530875.1_ASM2253087v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022627015.2", - "ncbiTaxonomyId": "79252", - "organism": "Podosphaera aphanis DRCT72020", - "species": "Podosphaera aphanis", - "strain": "DRCT72020", - "supercontigs": 12702, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022627015.2", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/627/015/GCA_022627015.2/genes/GCA_022627015.2_ASM2262701v2.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022832995.1", - "ncbiTaxonomyId": "5207", - "organism": "Cryptococcus neoformans strain:VNII", - "species": "Cryptococcus neoformans", - "strain": "strain:VNII", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022832995.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/832/995/GCA_022832995.1/genes/GCA_022832995.1_ASM2283299v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022985015.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage A isolate CIA", - "species": "Giardia Assemblage A", - "strain": "isolate CIA", - "supercontigs": 93, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985015.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/015/GCA_022985015.1/genes/GCA_022985015.1_USDA_CIA_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_022985025.1", - "ncbiTaxonomyId": "5741", - "organism": "Giardia Assemblage D isolate DID", - "species": "Giardia Assemblage D", - "strain": "isolate DID", - "supercontigs": 260, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022985025.1", - "vEuPathDbProject": "GiardiaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/022/985/025/GCA_022985025.1/genes/GCA_022985025.1_USDA_DID_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_023375915.1", - "ncbiTaxonomyId": "34620", - "organism": "Dermacentor andersoni qqDerAnde1.1", - "species": "Dermacentor andersoni", - "strain": "qqDerAnde1.1", - "supercontigs": 8198, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023375915.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/375/915/GCA_023375915.1/genes/GCA_023375915.1_qqDerAnde1.1_alternate_haplotype.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_023920165.1", - "ncbiTaxonomyId": "95742", - "organism": "Curvularia clavata yc1106", - "species": "Curvularia clavata", - "strain": "yc1106", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023920165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/920/165/GCA_023920165.1/genes/GCA_023920165.1_ASM2392016v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_023969395.1", - "ncbiTaxonomyId": "34609", - "organism": "Amblyomma maculatum SK-2019", - "species": "Amblyomma maculatum", - "strain": "SK-2019", - "supercontigs": 125877, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023969395.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/023/969/395/GCA_023969395.1/genes/GCA_023969395.1_ASM2396939v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_023973825.1", - "ncbiTaxonomyId": "5824", - "organism": "Plasmodium brasilianum strain Bolivian I", - "species": "Plasmodium brasilianum", - "strain": "strain Bolivian I", - "supercontigs": 29, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023973825.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_024516155.1", - "ncbiTaxonomyId": "337075", - "organism": "Pyronema omphalodes CBS 100304", - "species": "Pyronema omphalodes", - "strain": "CBS 100304", - "supercontigs": 260, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024516155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/516/155/GCA_024516155.1/genes/GCA_024516155.1_Pyrom1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_024586265.1", - "ncbiTaxonomyId": "323732", - "organism": "Babesia duncani strain WA1", - "species": "Babesia duncani", - "strain": "strain WA1", - "supercontigs": 7, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024586265.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/024/586/265/GCA_024586265.1/genes/GCA_024586265.1_ASM2458626v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_024862765.1", - "ncbiTaxonomyId": "5871", - "organism": "Babesia caballi USDA-D6B2", - "species": "Babesia caballi", - "strain": "USDA-D6B2", - "supercontigs": 7, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024862765.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 34, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_025688915.1", - "ncbiTaxonomyId": "5659", - "organism": "Leishmania amazonensis strain PH8", - "species": "Leishmania amazonensis", - "strain": "strain PH8", - "supercontigs": 42, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_025688915.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/025/688/915/GCA_025688915.1/genes/GCA_025688915.1_ASM2568891v1.augustus.gtf.gz" - }, - { - "chromosomes": 6, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_026262505.1", - "ncbiTaxonomyId": "412133", - "organism": "Trichomonas vaginalis G3 2022", - "species": "Trichomonas vaginalis", - "strain": "G3 2022", - "supercontigs": 212, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_026262505.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_027943245.1", - "ncbiTaxonomyId": "2919604", - "organism": "Acanthamoeba sp. SK_2022b", - "species": "Acanthamoeba sp.", - "strain": "SK_2022b", - "supercontigs": 1790, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943245.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/245/GCA_027943245.1/genes/GCA_027943245.1_ASM2794324v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_027943295.1", - "ncbiTaxonomyId": "2919605", - "organism": "Acanthamoeba sp. SK_2022a", - "species": "Acanthamoeba sp.", - "strain": "SK_2022a", - "supercontigs": 2108, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027943295.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/943/295/GCA_027943295.1/genes/GCA_027943295.1_ASM2794329v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_027944975.1", - "ncbiTaxonomyId": "2919603", - "organism": "Acanthamoeba sp. SK_2022c", - "species": "Acanthamoeba sp.", - "strain": "SK_2022c", - "supercontigs": 20778, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_027944975.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/027/944/975/GCA_027944975.1/genes/GCA_027944975.1_ASM2794497v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_028554745.1", - "ncbiTaxonomyId": "2592485", - "organism": "Blastocrithidia nonstop P57", - "species": "Blastocrithidia nonstop", - "strain": "P57", - "supercontigs": 77, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_028554745.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/028/554/745/GCA_028554745.1/genes/GCA_028554745.1_ASM2855474v1.augustus.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_028658345.1", - "ncbiTaxonomyId": "323732", - "organism": "Babesia duncani strain WA1 2023", - "species": "Babesia duncani", - "strain": "strain WA1 2023", - "supercontigs": 160, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_028658345.1", - "vEuPathDbProject": "PiroplasmaDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900002335.2", - "ncbiTaxonomyId": "31271", - "organism": "Plasmodium chabaudi chabaudi", - "species": "Plasmodium chabaudi", - "strain": "chabaudi", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002335.3", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 5, - "genomeVersionAssemblyId": "GCA_900002375.2", - "ncbiTaxonomyId": "5823", - "organism": "Plasmodium berghei ANKA", - "species": "Plasmodium berghei", - "strain": "ANKA", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002375.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900002385.2", - "ncbiTaxonomyId": "5861", - "organism": "Plasmodium yoelii yoelii 17X", - "species": "Plasmodium yoelii", - "strain": "yoelii 17X", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900002395.1", - "ncbiTaxonomyId": "5861", - "organism": "Plasmodium yoelii yoelii YM", - "species": "Plasmodium yoelii", - "strain": "yoelii YM", - "supercontigs": 181, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900002395.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/002/395/GCA_900002395.1/genes/GCA_900002395.1_PYYM01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 460, - "genomeVersionAssemblyId": "GCA_900005765.1", - "ncbiTaxonomyId": "85471", - "organism": "Plasmodium relictum SGS1-like", - "species": "Plasmodium relictum", - "strain": "SGS1-like", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005765.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 152, - "genomeVersionAssemblyId": "GCA_900005855.1", - "ncbiTaxonomyId": "5849", - "organism": "Plasmodium gallinaceum 8A", - "species": "Plasmodium gallinaceum", - "strain": "8A", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005855.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 155, - "genomeVersionAssemblyId": "GCA_900029915.1", - "ncbiTaxonomyId": "948311", - "organism": "Fusarium proliferatum strain NRRL62905", - "species": "Fusarium proliferatum", - "strain": "strain NRRL62905", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900029915.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/029/915/GCA_900029915.1/genes/GCA_900029915.1_F._proliferatum_NRRL62905_version_1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900044065.1", - "ncbiTaxonomyId": "192010", - "organism": "Fusarium mangiferae MRC7560", - "species": "Fusarium mangiferae", - "strain": "MRC7560", - "supercontigs": 254, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900044065.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900044135.1", - "ncbiTaxonomyId": "5518", - "organism": "Fusarium graminearum PH-1", - "species": "Fusarium graminearum", - "strain": "PH-1", - "supercontigs": 1, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900044135.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/044/135/GCA_900044135.1/genes/GCA_900044135.1_GZPH1RResV1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 32, - "genomeVersionAssemblyId": "GCA_900067095.1", - "ncbiTaxonomyId": "1227346", - "organism": "Fusarium proliferatum ET1", - "species": "Fusarium proliferatum", - "strain": "ET1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900067095.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 12, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900079805.1", - "ncbiTaxonomyId": "1279085", - "organism": "Fusarium fujikuroi IMI 58289", - "species": "Fusarium fujikuroi", - "strain": "IMI 58289", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900079805.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900090025.2", - "ncbiTaxonomyId": "36330", - "organism": "Plasmodium ovale wallikeri PowCR01", - "species": "Plasmodium ovale", - "strain": "wallikeri PowCR01", - "supercontigs": 763, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090025.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/025/GCA_900090025.2/genes/GCA_900090025.2_PowCR01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 638, - "genomeVersionAssemblyId": "GCA_900090035.2", - "ncbiTaxonomyId": "36330", - "organism": "Plasmodium ovale curtisi GH01", - "species": "Plasmodium ovale", - "strain": "curtisi GH01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900090035.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/090/035/GCA_900090035.2/genes/GCA_900090035.2_PocGH01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 47, - "genomeVersionAssemblyId": "GCA_900090045.1", - "ncbiTaxonomyId": "5858", - "organism": "Plasmodium malariae UG01", - "species": "Plasmodium malariae", - "strain": "UG01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900090045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 226, - "genomeVersionAssemblyId": "GCA_900093555.2", - "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax P01", - "species": "Plasmodium vivax", - "strain": "P01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900093555.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/093/555/GCA_900093555.2/genes/GCA_900093555.2_GCA_900093555.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900095595.1", - "ncbiTaxonomyId": "880534", - "organism": "Plasmodium praefalciparum strain G01", - "species": "Plasmodium praefalciparum", - "strain": "strain G01", - "supercontigs": 39, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900095595.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/095/595/GCA_900095595.1/genes/GCA_900095595.1_PPRFG01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 68, - "genomeVersionAssemblyId": "GCA_900097015.1", - "ncbiTaxonomyId": "880535", - "organism": "Plasmodium adleri G01", - "species": "Plasmodium adleri", - "strain": "G01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900097015.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 14, - "contigs": 34, - "genomeVersionAssemblyId": "GCA_900097025.1", - "ncbiTaxonomyId": "5854", - "organism": "Plasmodium reichenowi G01", - "species": "Plasmodium reichenowi", - "strain": "G01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/025/GCA_900097025.1/genes/GCA_900097025.1_PRG01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 83, - "genomeVersionAssemblyId": "GCA_900097035.1", - "ncbiTaxonomyId": "880536", - "organism": "Plasmodium blacklocki G01", - "species": "Plasmodium blacklocki", - "strain": "G01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097035.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/035/GCA_900097035.1/genes/GCA_900097035.1_PBLACG01.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 82, - "genomeVersionAssemblyId": "GCA_900097045.1", - "ncbiTaxonomyId": "647221", - "organism": "Plasmodium gaboni strain G01", - "species": "Plasmodium gaboni", - "strain": "strain G01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900097045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/097/045/GCA_900097045.1/genes/GCA_900097045.1_PGABG01.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900119595.1", - "ncbiTaxonomyId": "56406", - "organism": "Hanseniaspora guilliermondii strain UTAD222", - "species": "Hanseniaspora guilliermondii", - "strain": "strain UTAD222", - "supercontigs": 208, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900119595.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/119/595/GCA_900119595.1/genes/GCA_900119595.1_version_1.augustus.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900149145.1", - "ncbiTaxonomyId": "1230383", - "organism": "Malassezia sympodialis ATCC 42132", - "species": "Malassezia sympodialis", - "strain": "ATCC 42132", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900149145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/149/145/GCA_900149145.1/genes/GCA_900149145.1_Msy_ATCC_42132_Feb2016.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900162085.1", - "ncbiTaxonomyId": "5850", - "organism": "Plasmodium knowlesi strain A1H1", - "species": "Plasmodium knowlesi", - "strain": "strain A1H1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900162085.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/162/085/GCA_900162085.1/genes/GCA_900162085.1_PkA1H1_v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 40, - "genomeVersionAssemblyId": "GCA_900180395.1", - "ncbiTaxonomyId": "5827", - "organism": "Plasmodium cynomolgi strain M", - "species": "Plasmodium cynomolgi", - "strain": "strain M", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900180395.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/180/395/GCA_900180395.1/genes/GCA_900180395.1_PcyM.augustus.gtf.gz" - }, - { - "chromosomes": 21, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900184105.1", - "ncbiTaxonomyId": "1276537", - "organism": "Zymoseptoria tritici ST99CH_3D1", - "species": "Zymoseptoria tritici", - "strain": "ST99CH_3D1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900184105.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/184/105/GCA_900184105.1/genes/GCA_900184105.1_ST99CH_3D1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900231805.1", - "ncbiTaxonomyId": "43075", - "organism": "Trichomonas tenax strain NIH4 ATCC 30207", - "species": "Trichomonas tenax", - "strain": "strain NIH4 ATCC 30207", - "supercontigs": 4161, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900231805.1", - "vEuPathDbProject": "TrichDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/231/805/GCA_900231805.1/genes/GCA_900231805.1_PRJEB22701.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900237765.1", - "ncbiTaxonomyId": "2867405", - "organism": "Blumeria hordei strain RACE1", - "species": "Blumeria hordei", - "strain": "strain RACE1", - "supercontigs": 99, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900237765.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/237/765/GCA_900237765.1/genes/GCA_900237765.1_BghRACE1_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 19, - "genomeVersionAssemblyId": "GCA_900248155.1", - "ncbiTaxonomyId": "5061", - "organism": "Aspergillus niger strain N402 (ATCC64974)", - "species": "Aspergillus niger", - "strain": "strain N402 (ATCC64974)", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900248155.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/248/155/GCA_900248155.1/genes/GCA_900248155.1_Aniger_ATCC_64974_N402.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 8469, - "genomeVersionAssemblyId": "GCA_900252365.1", - "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi strain 231", - "species": "Trypanosoma cruzi", - "strain": "strain 231", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900252365.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/252/365/GCA_900252365.1/genes/GCA_900252365.1_TcIII_231rod.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900257145.2", - "ncbiTaxonomyId": "720590", - "organism": "Plasmodium billcollinsi G01", - "species": "Plasmodium billcollinsi", - "strain": "G01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900257145.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/257/145/GCA_900257145.2/genes/GCA_900257145.2_Plasmodium_billcollinsi.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900290415.1", - "ncbiTaxonomyId": "48703", - "organism": "Podospora comata strain T mat+", - "species": "Podospora comata", - "strain": "strain T mat+", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900290415.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/290/415/GCA_900290415.1/genes/GCA_900290415.1_version1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900491785.1", - "ncbiTaxonomyId": "36035", - "organism": "Saccharomycodes ludwigii UTAD17", - "species": "Saccharomycodes ludwigii", - "strain": "UTAD17", - "supercontigs": 1360, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900491785.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/491/785/GCA_900491785.1/genes/GCA_900491785.1_S_ludwigii_v1.augustus.gtf.gz" - }, - { - "chromosomes": 44, - "contigs": 272, - "genomeVersionAssemblyId": "GCA_900497135.1", - "ncbiTaxonomyId": "5702", - "organism": "Trypanosoma brucei Lister strain 427 2018", - "species": "Trypanosoma brucei", - "strain": "Lister strain 427 2018", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900497135.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/497/135/GCA_900497135.1/genes/GCA_900497135.1_HGAP3_Tb427v9.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900500625.2", - "ncbiTaxonomyId": "5671", - "organism": "Leishmania infantum JPCM5", - "species": "Leishmania infantum", - "strain": "JPCM5", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900500625.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/500/625/GCA_900500625.2/genes/GCA_900500625.2_LINF.augustus.gtf.gz" - }, - { - "chromosomes": 12, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900519115.1", - "ncbiTaxonomyId": "62690", - "organism": "Blumeria graminis f. sp. tritici 96224", - "species": "Blumeria graminis", - "strain": "f. sp. tritici 96224", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900519115.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/519/115/GCA_900519115.1/genes/GCA_900519115.1_Bgt_genome_v3.16.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 5, - "genomeVersionAssemblyId": "GCA_900617135.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum CD01", - "species": "Plasmodium falciparum", - "strain": "CD01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900617135.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/617/135/GCA_900617135.1/genes/GCA_900617135.1_PfCD01-2.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 5, - "genomeVersionAssemblyId": "GCA_900631975.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum KE01", - "species": "Plasmodium falciparum", - "strain": "KE01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631975.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/975/GCA_900631975.1/genes/GCA_900631975.1_PfKE01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 12, - "genomeVersionAssemblyId": "GCA_900631985.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum HB3", - "species": "Plasmodium falciparum", - "strain": "HB3", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631985.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/985/GCA_900631985.1/genes/GCA_900631985.1_PfHB3-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 3, - "genomeVersionAssemblyId": "GCA_900631995.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum GN01", - "species": "Plasmodium falciparum", - "strain": "GN01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900631995.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/631/995/GCA_900631995.1/genes/GCA_900631995.1_PfGN01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 4, - "genomeVersionAssemblyId": "GCA_900632005.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum GA01", - "species": "Plasmodium falciparum", - "strain": "GA01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632005.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/005/GCA_900632005.1/genes/GCA_900632005.1_PfGA01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 5, - "genomeVersionAssemblyId": "GCA_900632015.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum KH02", - "species": "Plasmodium falciparum", - "strain": "KH02", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632015.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/015/GCA_900632015.1/genes/GCA_900632015.1_PfKH02-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 6, - "genomeVersionAssemblyId": "GCA_900632025.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum KH01", - "species": "Plasmodium falciparum", - "strain": "KH01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632025.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/025/GCA_900632025.1/genes/GCA_900632025.1_PfKH01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 10, - "genomeVersionAssemblyId": "GCA_900632035.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum GB4", - "species": "Plasmodium falciparum", - "strain": "GB4", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632035.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/035/GCA_900632035.1/genes/GCA_900632035.1_PfGB4-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900632045.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum Dd2", - "species": "Plasmodium falciparum", - "strain": "Dd2", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632045.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/045/GCA_900632045.1/genes/GCA_900632045.1_PfDd2-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 11, - "genomeVersionAssemblyId": "GCA_900632055.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum IT", - "species": "Plasmodium falciparum", - "strain": "IT", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632055.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/055/GCA_900632055.1/genes/GCA_900632055.1_PfIT-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 63, - "genomeVersionAssemblyId": "GCA_900632065.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum TG01", - "species": "Plasmodium falciparum", - "strain": "TG01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632065.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/065/GCA_900632065.1/genes/GCA_900632065.1_PfTG01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 20, - "genomeVersionAssemblyId": "GCA_900632075.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum SN01", - "species": "Plasmodium falciparum", - "strain": "SN01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632075.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/075/GCA_900632075.1/genes/GCA_900632075.1_PfSN01-3.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 101, - "genomeVersionAssemblyId": "GCA_900632085.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum ML01", - "species": "Plasmodium falciparum", - "strain": "ML01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632085.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/085/GCA_900632085.1/genes/GCA_900632085.1_PfML01-3.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 4, - "genomeVersionAssemblyId": "GCA_900632095.1", - "ncbiTaxonomyId": "5833", - "organism": "Plasmodium falciparum SD01", - "species": "Plasmodium falciparum", - "strain": "SD01", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900632095.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/632/095/GCA_900632095.1/genes/GCA_900632095.1_PfSD01-3.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900635355.2", - "ncbiTaxonomyId": "5661", - "organism": "Leishmania donovani HU3", - "species": "Leishmania donovani", - "strain": "HU3", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900635355.2", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/900/635/355/GCA_900635355.2/genes/GCA_900635355.2_LDHU3_new.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_900681995.1", - "ncbiTaxonomyId": "54757", - "organism": "Plasmodium vinckei vinckei CY", - "species": "Plasmodium vinckei", - "strain": "vinckei CY", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_902459845.2", - "ncbiTaxonomyId": "2600580", - "organism": "Hepatocystis sp. ex Piliocolobus tephrosceles 2019", - "species": "Hepatocystis sp. ex Piliocolobus tephrosceles", - "strain": "2019", - "supercontigs": 2439, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902459845.2", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/459/845/GCA_902459845.2/genes/GCA_902459845.2_HEP1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_902651635.1", - "ncbiTaxonomyId": "108607", - "organism": "Mastigamoeba balamuthi ATCC 30984", - "species": "Mastigamoeba balamuthi", - "strain": "ATCC 30984", - "supercontigs": 1925, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_902651635.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/902/651/635/GCA_902651635.1/genes/GCA_902651635.1_mastiga_genome_v5.1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_903994205.1", - "ncbiTaxonomyId": "119398", - "organism": "Plasmodium vinckei brucechwatti DA", - "species": "Plasmodium vinckei", - "strain": "brucechwatti DA", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994205.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/205/GCA_903994205.1/genes/GCA_903994205.1_PVBDA_v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_903994225.1", - "ncbiTaxonomyId": "138297", - "organism": "Plasmodium vinckei lentum DE", - "species": "Plasmodium vinckei", - "strain": "lentum DE", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994225.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/225/GCA_903994225.1/genes/GCA_903994225.1_PVLDE_v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_903994235.1", - "ncbiTaxonomyId": "138298", - "organism": "Plasmodium vinckei petteri CR 2020", - "species": "Plasmodium vinckei", - "strain": "petteri CR 2020", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994235.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/235/GCA_903994235.1/genes/GCA_903994235.1_PVPCR_v1.augustus.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_903994265.1", - "ncbiTaxonomyId": "5860", - "organism": "Plasmodium vinckei Cameroon EL", - "species": "Plasmodium vinckei", - "strain": "Cameroon EL", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903994265.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/994/265/GCA_903994265.1/genes/GCA_903994265.1_PVSEL_v1.augustus.gtf.gz" - }, - { - "chromosomes": 29, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_903995115.1", - "ncbiTaxonomyId": "59799", - "organism": "Angomonas deanei strain Cavalho ATCC PRA-265", - "species": "Angomonas deanei", - "strain": "strain Cavalho ATCC PRA-265", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903995115.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/903/995/115/GCA_903995115.1/genes/GCA_903995115.1_Adeanei_nanopore_chromosomes.augustus.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_905067625.1", - "ncbiTaxonomyId": "1689686", - "organism": "Blumeria graminis f. sp. triticale THUN-12", - "species": "Blumeria graminis", - "strain": "f. sp. triticale THUN-12", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905067625.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/067/625/GCA_905067625.1/genes/GCA_905067625.1_Bgtriticale_THUN12_genome_v1_2.augustus.gtf.gz" - }, - { - "chromosomes": 15, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_905310635.1", - "ncbiTaxonomyId": "5802", - "organism": "Eimeria tenella Houghton 2021", - "species": "Eimeria tenella", - "strain": "Houghton 2021", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905310635.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/905/310/635/GCA_905310635.1/genes/GCA_905310635.1_pEimTen1.1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_914969965.1", - "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax PvW1", - "species": "Plasmodium vivax", - "strain": "PvW1", - "supercontigs": 19, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_914969965.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/914/969/965/GCA_914969965.1/genes/GCA_914969965.1_5987STDY8548200.augustus.gtf.gz" - }, - { - "chromosomes": 36, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_916722125.1", - "ncbiTaxonomyId": "347515", - "organism": "Leishmania major Friedlin 2021", - "species": "Leishmania major", - "strain": "Friedlin 2021", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_916722125.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/916/722/125/GCA_916722125.1/genes/GCA_916722125.1_LMJFC_annotationDEFINITIVO.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_917563895.1", - "ncbiTaxonomyId": "294381", - "organism": "Entamoeba histolytica Rahman", - "species": "Entamoeba histolytica", - "strain": "Rahman", - "supercontigs": 18523, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563895.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/895/GCA_917563895.1/genes/GCA_917563895.1_Assembly_1.augustus.gtf.gz" - }, - { - "chromosomes": 13, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_917563935.1", - "ncbiTaxonomyId": "5697", - "organism": "Trypanosoma evansi strain STIB 805", - "species": "Trypanosoma evansi", - "strain": "strain STIB 805", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563935.1", - "vEuPathDbProject": "TriTrypDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/917/563/935/GCA_917563935.1/genes/GCA_917563935.1_Assembly1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCA_949152365.1", - "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax PAM", - "species": "Plasmodium vivax", - "strain": "PAM", - "supercontigs": 28, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_949152365.1", - "vEuPathDbProject": "PlasmoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCA/949/152/365/GCA_949152365.1/genes/GCA_949152365.1_PVPAM.augustus.gtf.gz" - }, - { - "chromosomes": 7, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000004695.1", - "ncbiTaxonomyId": "352472", - "organism": "Dictyostelium discoideum AX4", - "species": "Dictyostelium discoideum", - "strain": "AX4", - "supercontigs": 33, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000004695.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/004/695/GCF_000004695.1/genes/GCF_000004695.1_dicty_2.7.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000006515.1", - "ncbiTaxonomyId": "441375", - "organism": "Cryptosporidium muris RN66", - "species": "Cryptosporidium muris", - "strain": "RN66", - "supercontigs": 84, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006515.1", - "vEuPathDbProject": "CryptoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/515/GCF_000006515.1/genes/GCF_000006515.1_JCVI_cmg_v1.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 14, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000006565.2", - "ncbiTaxonomyId": "508771", - "organism": "Toxoplasma gondii ME49", - "species": "Toxoplasma gondii", - "strain": "ME49", - "supercontigs": 2248, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000182805.3", - "ncbiTaxonomyId": "771870", - "organism": "Sordaria macrospora k-hell", - "species": "Sordaria macrospora", - "strain": "k-hell", - "supercontigs": 1212, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182805.3", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/805/GCF_000182805.3/genes/GCF_000182805.3_ASM18280v2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000190715.1", - "ncbiTaxonomyId": "5786", - "organism": "Dictyostelium purpureum QSDP1", - "species": "Dictyostelium purpureum", - "strain": "QSDP1", - "supercontigs": 799, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190715.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/190/715/GCF_000190715.1/genes/GCF_000190715.1_v1.0.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000257125.1", - "ncbiTaxonomyId": "1076696", - "organism": "Entamoeba nuttalli P19", - "species": "Entamoeba nuttalli", - "strain": "P19", - "supercontigs": 5233, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000257125.1", - "vEuPathDbProject": "AmoebaDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/257/125/GCF_000257125.1/genes/GCF_000257125.1_ENU1_v1.augustus.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000315645.1", - "ncbiTaxonomyId": "1170230", - "organism": "Penicillium digitatum Pd1", - "species": "Penicillium digitatum", - "strain": "Pd1", - "supercontigs": 53, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000315645.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/315/645/GCF_000315645.1/genes/GCF_000315645.1_PdigPd1_v1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 21, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_000364345.1", - "ncbiTaxonomyId": "9541", - "organism": "Macaca fascicularis REF", - "species": "Macaca fascicularis", - "strain": "REF", - "supercontigs": 7579, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000364345.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/364/345/GCF_000364345.1/genes/GCF_000364345.1_Macaca_fascicularis_5.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_001299255.1", - "ncbiTaxonomyId": "1664694", - "organism": "Phialophora attinorum CBS 131958", - "species": "Phialophora attinorum", - "strain": "CBS 131958", - "supercontigs": 131, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001299255.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/299/255/GCF_001299255.1/genes/GCF_001299255.1_ASM129925v1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 8, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_001417885.1", - "ncbiTaxonomyId": "1003335", - "organism": "Kluyveromyces marxianus DMKU3-1042", - "species": "Kluyveromyces marxianus", - "strain": "DMKU3-1042", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001417885.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/417/885/GCF_001417885.1/genes/GCF_001417885.1_Kmar_1.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_001477545.1", - "ncbiTaxonomyId": "1408658", - "organism": "Pneumocystis carinii B80", - "species": "Pneumocystis carinii", - "strain": "B80", - "supercontigs": 62, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477545.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/477/545/GCF_001477545.1/genes/GCF_001477545.1_Pneu_cari_B80_V3.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_001876365.2", - "ncbiTaxonomyId": "7160", - "organism": "Aedes albopictus C6/36 cell line", - "species": "Aedes albopictus", - "strain": "C6/36 cell line", - "supercontigs": 2434, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001876365.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/001/876/365/GCF_001876365.2/genes/GCF_001876365.2_canu_80X_arrow2.2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 738, - "genomeVersionAssemblyId": "GCF_002999335.1", - "ncbiTaxonomyId": "88456", - "organism": "Cyclospora cayetanensis isolate NF1_C8", - "species": "Cyclospora cayetanensis", - "strain": "isolate NF1_C8", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002999335.1", - "vEuPathDbProject": "ToxoDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/002/999/335/GCF_002999335.1/genes/GCF_002999335.1_CcayRef3.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_004022145.1", - "ncbiTaxonomyId": "264951", - "organism": "Paecilomyces variotii CBS 101075", - "species": "Paecilomyces variotii", - "strain": "CBS 101075", - "supercontigs": 86, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004022145.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/004/022/145/GCF_004022145.1/genes/GCF_004022145.1_Paevar1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_013141755.1", - "ncbiTaxonomyId": "30069", - "organism": "Anopheles stephensi UCISS2018", - "species": "Anopheles stephensi", - "strain": "UCISS2018", - "supercontigs": 491, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013141755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/141/755/GCF_013141755.1/genes/GCF_013141755.1_UCI_ANSTEP_V1.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 11, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_013339695.2", - "ncbiTaxonomyId": "34632", - "organism": "Rhipicephalus sanguineus Rsan-2018", - "species": "Rhipicephalus sanguineus", - "strain": "Rsan-2018", - "supercontigs": 2316, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339695.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/339/695/GCF_013339695.2/genes/GCF_013339695.2_BIME_Rsan_1.4.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_013758885.1", - "ncbiTaxonomyId": "7167", - "organism": "Anopheles albimanus STECLA 2020", - "species": "Anopheles albimanus", - "strain": "STECLA 2020", - "supercontigs": 4, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013758885.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/013/758/885/GCF_013758885.1/genes/GCF_013758885.1_VT_AalbS3_pri_1.0.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_014108235.1", - "ncbiTaxonomyId": "51298", - "organism": "Myotis myotis mMyoMyo1", - "species": "Myotis myotis", - "strain": "mMyoMyo1", - "supercontigs": 92, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014108235.1", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/108/235/GCF_014108235.1/genes/GCF_014108235.1_mMyoMyo1.p.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_014466165.1", - "ncbiTaxonomyId": "5322", - "organism": "Pleurotus ostreatus PC9", - "species": "Pleurotus ostreatus", - "strain": "PC9", - "supercontigs": 16, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014466165.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/014/466/165/GCF_014466165.1/genes/GCF_014466165.1_ASM1446616v1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 41, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_016699485.2", - "ncbiTaxonomyId": "9031", - "organism": "Gallus gallus isolate bGalGal1", - "species": "Gallus gallus", - "strain": "isolate bGalGal1", - "supercontigs": 172, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016699485.2", - "vEuPathDbProject": "HostDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/699/485/GCF_016699485.2/genes/GCF_016699485.2_bGalGal1.mat.broiler.GRCg7b.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_016920705.1", - "ncbiTaxonomyId": "1518534", - "organism": "Anopheles coluzzii MOPTI", - "species": "Anopheles coluzzii", - "strain": "MOPTI", - "supercontigs": 196, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920705.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/705/GCF_016920705.1/genes/GCF_016920705.1_AcolMOP1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_016920715.1", - "ncbiTaxonomyId": "7173", - "organism": "Anopheles arabiensis DONGOLA 2021", - "species": "Anopheles arabiensis", - "strain": "DONGOLA 2021", - "supercontigs": 98, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920715.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/715/GCF_016920715.1/genes/GCF_016920715.1_AaraD3.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_016920785.2", - "ncbiTaxonomyId": "6945", - "organism": "Ixodes scapularis PalLabHiFi", - "species": "Ixodes scapularis", - "strain": "PalLabHiFi", - "supercontigs": 648, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920785.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/920/785/GCF_016920785.2/genes/GCF_016920785.2_ASM1692078v2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_017562075.2", - "ncbiTaxonomyId": "30066", - "organism": "Anopheles merus MAF 2021", - "species": "Anopheles merus", - "strain": "MAF 2021", - "supercontigs": 1322, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017562075.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/017/562/075/GCF_017562075.2/genes/GCF_017562075.2_AmerM5.1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_020744495.1", - "ncbiTaxonomyId": "169388", - "organism": "Fusarium solani FSSC 5 MPI-SDFR-AT-0091", - "species": "Fusarium solani", - "strain": "FSSC 5 MPI-SDFR-AT-0091", - "supercontigs": 74, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_020744495.1", - "vEuPathDbProject": "FungiDB", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/020/744/495/GCF_020744495.1/genes/GCF_020744495.1_Fusso1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_023375885.1", - "ncbiTaxonomyId": "34620", - "organism": "Dermacentor andersoni qqDerAnde1.2", - "species": "Dermacentor andersoni", - "strain": "qqDerAnde1.2", - "supercontigs": 3118, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023375885.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/023/375/885/GCF_023375885.1/genes/GCF_023375885.1_qqDerAnde1.2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_024334085.1", - "ncbiTaxonomyId": "7200", - "organism": "Lutzomyia longipalpis M1", - "species": "Lutzomyia longipalpis", - "strain": "M1", - "supercontigs": 0, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024334085.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/334/085/GCF_024334085.1/genes/GCF_024334085.1_ASM2433408v1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 5, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_024763615.1", - "ncbiTaxonomyId": "29031", - "organism": "Phlebotomus papatasi M1", - "species": "Phlebotomus papatasi", - "strain": "M1", - "supercontigs": 640, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024763615.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/024/763/615/GCF_024763615.1/genes/GCF_024763615.1_Ppap_2.1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_030504385.1", - "ncbiTaxonomyId": "7370", - "organism": "Musca domestica aabys 2023", - "species": "Musca domestica", - "strain": "aabys 2023", - "supercontigs": 339, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_030504385.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/030/504/385/GCF_030504385.1/genes/GCF_030504385.1_Musca_domestica.polishedcontigs.V.1.1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734635.1", - "ncbiTaxonomyId": "68878", - "organism": "Anopheles cruzii AcruBR1", - "species": "Anopheles cruzii", - "strain": "AcruBR1", - "supercontigs": 5085, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734635.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/635/GCF_943734635.1/genes/GCF_943734635.1_idAnoCruzAS_RS32_06.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734655.1", - "ncbiTaxonomyId": "53552", - "organism": "Sabethes cyaneus ScyaPA1", - "species": "Sabethes cyaneus", - "strain": "ScyaPA1", - "supercontigs": 5, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734655.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/655/GCF_943734655.1/genes/GCF_943734655.1_idSabCyanKW18_F2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 4, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734665.1", - "ncbiTaxonomyId": "42839", - "organism": "Anopheles aquasalis AaquGF1", - "species": "Anopheles aquasalis", - "strain": "AaquGF1", - "supercontigs": 86, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734665.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/665/GCF_943734665.1/genes/GCF_943734665.1_idAnoAquaMG_Q_19.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734685.1", - "ncbiTaxonomyId": "1518534", - "organism": "Anopheles coluzzii AcolN3", - "species": "Anopheles coluzzii", - "strain": "AcolN3", - "supercontigs": 125, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734685.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/685/GCF_943734685.1/genes/GCF_943734685.1_AcolN3.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734695.1", - "ncbiTaxonomyId": "1496333", - "organism": "Anopheles maculipalpis AmacGA1", - "species": "Anopheles maculipalpis", - "strain": "AmacGA1", - "supercontigs": 167, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734695.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/695/GCF_943734695.1/genes/GCF_943734695.1_idAnoMacuDA_375_x.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734705.1", - "ncbiTaxonomyId": "139045", - "organism": "Anopheles coustani AcouGA1", - "species": "Anopheles coustani", - "strain": "AcouGA1", - "supercontigs": 416, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734705.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/705/GCF_943734705.1/genes/GCF_943734705.1_idAnoCousDA_361_x.2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734725.1", - "ncbiTaxonomyId": "1521116", - "organism": "Anopheles marshallii AmarGA1", - "species": "Anopheles marshallii", - "strain": "AmarGA1", - "supercontigs": 285, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734725.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/725/GCF_943734725.1/genes/GCF_943734725.1_idAnoMarsDA_429_01.ncbiRefSeq.gtf.gz" + "coverage": "155.0x", + "gcPercent": 23, + "isRef": true, + "length": 18338688, + "level": "Complete Genome", + "ncbiTaxonomyId": "54757", + "organism": "Plasmodium vinckei vinckei", + "scaffoldCount": 14, + "scaffoldL50": 5, + "scaffoldN50": 1692345, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1" }, { + "accession": "GCF_943734735.2", + "annotationStatus": "Full annotation", "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734735.2", + "coverage": "54.0x", + "gcPercent": 44.5, + "isRef": true, + "length": 264451381, + "level": "Chromosome", "ncbiTaxonomyId": "7165", - "organism": "Anopheles gambiae Ifakara", - "species": "Anopheles gambiae", - "strain": "Ifakara", - "supercontigs": 187, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734745.1", - "ncbiTaxonomyId": "43151", - "organism": "Anopheles darlingi AdarGF1", - "species": "Anopheles darlingi", - "strain": "AdarGF1", - "supercontigs": 62, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734745.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/745/GCF_943734745.1/genes/GCF_943734745.1_idAnoDarlMG_H_01.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734755.1", - "ncbiTaxonomyId": "186751", - "organism": "Anopheles moucheti AmouCM1", - "species": "Anopheles moucheti", - "strain": "AmouCM1", - "supercontigs": 342, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734755.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/755/GCF_943734755.1/genes/GCF_943734755.1_idAnoMoucSN_F20_07.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734765.1", - "ncbiTaxonomyId": "345580", - "organism": "Anopheles ziemanni AzieGA1", - "species": "Anopheles ziemanni", - "strain": "AzieGA1", - "supercontigs": 416, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734765.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/765/GCF_943734765.1/genes/GCF_943734765.1_idAnoZiCoDA_A2_x.2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943734845.2", - "ncbiTaxonomyId": "62324", - "organism": "Anopheles funestus AfunGA1", - "species": "Anopheles funestus", - "strain": "AfunGA1", - "supercontigs": 326, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734845.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/845/GCF_943734845.2/genes/GCF_943734845.2_idAnoFuneDA-416_04.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943735745.2", - "ncbiTaxonomyId": "139047", - "organism": "Anopheles bellator AbelBR1", - "species": "Anopheles bellator", - "strain": "AbelBR1", - "supercontigs": 2982, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943735745.2", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/735/745/GCF_943735745.2/genes/GCF_943735745.2_idAnoBellAS_SP24_06.2.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 3, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_943737925.1", - "ncbiTaxonomyId": "185578", - "organism": "Anopheles nili AnilCM1", - "species": "Anopheles nili", - "strain": "AnilCM1", - "supercontigs": 153, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943737925.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/737/925/GCF_943737925.1/genes/GCF_943737925.1_idAnoNiliSN_F5_01.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 0, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_947086385.1", - "ncbiTaxonomyId": "94469", - "organism": "Phlebotomus argentipes India", - "species": "Phlebotomus argentipes", - "strain": "India", - "supercontigs": 64, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947086385.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/086/385/GCF_947086385.1/genes/GCF_947086385.1_Phlebotomus_argentipes_genome_assembly.ncbiRefSeq.gtf.gz" - }, - { - "chromosomes": 18, - "contigs": 0, - "genomeVersionAssemblyId": "GCF_947242115.1", - "ncbiTaxonomyId": "6526", - "organism": "Biomphalaria glabrata XG47", - "species": "Biomphalaria glabrata", - "strain": "XG47", - "supercontigs": 25, - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947242115.1", - "vEuPathDbProject": "VectorBase", - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/947/242/115/GCF_947242115.1/genes/GCF_947242115.1_xgBioGlab47.1.ncbiRefSeq.gtf.gz" + "organism": "Anopheles gambiae", + "scaffoldCount": 190, + "scaffoldL50": 2, + "scaffoldN50": 99149756, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2" + }, + { + "accession": "GCF_963525475.1", + "annotationStatus": null, + "chromosomes": 1, + "coverage": "100.0x", + "gcPercent": 65.5, + "isRef": false, + "length": 4469156, + "level": "Complete Genome", + "ncbiTaxonomyId": "1773", + "organism": "Mycobacterium tuberculosis", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 4469156, + "ucscBrowserUrl": null } ] diff --git a/site-config/brc-analytics/category.ts b/site-config/brc-analytics/category.ts index 825f5d8..7a4519f 100644 --- a/site-config/brc-analytics/category.ts +++ b/site-config/brc-analytics/category.ts @@ -1,23 +1,35 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { + ACCESSION: "accession", ANALYZE_GENOME: "analyzeGenome", + ANNOTATION_STATUS: "annotationStatus", CHROMOSOMES: "chromosomes", - CONTIGS: "contigs", - GENOME_VERSION_ASSEMBLY_ID: "genomeVersionAssemblyId", - SPECIES: "species", - STRAIN: "strain", - SUPERCONTIGS: "supercontigs", + COVERAGE: "coverage", + GC_PERCENT: "gcPercent", + IS_REF: "isRef", + LENGTH: "length", + LEVEL: "level", + ORGANISM: "organism", + SCAFFOLD_COUNT: "scaffoldCount", + SCAFFOLD_L50: "scaffoldL50", + SCAFFOLD_N50: "scaffoldN50", + TAXONOMY_ID: "ncbiTaxonomyId", UCSC_BROWSER_URL: "ucscBrowserUrl", - VEUPATHDB_PROJECT: "vEuPathDbProject", }; export const BRC_DATA_CATALOG_CATEGORY_LABEL = { + ACCESSION: "Accession", ANALYZE_GENOME: "Action", + ANNOTATION_STATUS: "Annotation Status", CHROMOSOMES: "Chromosomes", - CONTIGS: "Contigs", - GENOME_VERSION_ASSEMBLY_ID: "Assembly Version ID", - SPECIES: "Species", - STRAIN: "Strain", - SUPERCONTIGS: "Supercontigs", + COVERAGE: "Coverage", + GC_PERCENT: "GC%", + IS_REF: "Is Reference", + LENGTH: "Length", + LEVEL: "Level", + ORGANISM: "Organism", + SCAFFOLD_COUNT: "Scaffolds", + SCAFFOLD_L50: "Scaffold L50", + SCAFFOLD_N50: "Scaffold N50", + TAXONOMY_ID: "Taxonomy ID", UCSC_BROWSER_URL: "UCSC Browser", - VEUPATHDB_PROJECT: "VEuPathDB Project", }; diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index 63f37fa..cc61338 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -30,20 +30,36 @@ export const genomeEntityConfig: BRCEntityConfig = { { categoryConfigs: [ { - key: BRC_DATA_CATALOG_CATEGORY_KEY.SPECIES, - label: BRC_DATA_CATALOG_CATEGORY_LABEL.SPECIES, + key: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.ORGANISM, }, { - key: BRC_DATA_CATALOG_CATEGORY_KEY.STRAIN, - label: BRC_DATA_CATALOG_CATEGORY_LABEL.STRAIN, + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXONOMY_ID, }, { - key: BRC_DATA_CATALOG_CATEGORY_KEY.GENOME_VERSION_ASSEMBLY_ID, - label: BRC_DATA_CATALOG_CATEGORY_LABEL.GENOME_VERSION_ASSEMBLY_ID, + key: BRC_DATA_CATALOG_CATEGORY_KEY.ACCESSION, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.ACCESSION, }, { - key: BRC_DATA_CATALOG_CATEGORY_KEY.VEUPATHDB_PROJECT, - label: BRC_DATA_CATALOG_CATEGORY_LABEL.VEUPATHDB_PROJECT, + key: BRC_DATA_CATALOG_CATEGORY_KEY.IS_REF, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.IS_REF, + mapSelectCategoryValue: (value) => ({ + ...value, + label: value.label ? "Yes" : "No", + }), + }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.LEVEL, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.LEVEL, + }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.COVERAGE, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.COVERAGE, + }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.ANNOTATION_STATUS, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.ANNOTATION_STATUS, }, ], }, @@ -83,71 +99,125 @@ export const genomeEntityConfig: BRCEntityConfig = { { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildSpecies, + viewBuilder: V.buildOrganism, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.SPECIES, - id: BRC_DATA_CATALOG_CATEGORY_KEY.SPECIES, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.ORGANISM, + id: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, width: { max: "1fr", min: "284px" }, }, { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildStrain, + viewBuilder: V.buildTaxonomyId, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.STRAIN, - id: BRC_DATA_CATALOG_CATEGORY_KEY.STRAIN, - width: { max: "1fr", min: "124px" }, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXONOMY_ID, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, + width: { max: "0.5fr", min: "100px" }, }, { columnPinned: true, componentConfig: { component: C.BasicCell, - viewBuilder: V.buildGenomeVersionAssemblyId, + viewBuilder: V.buildAccession, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.GENOME_VERSION_ASSEMBLY_ID, - id: BRC_DATA_CATALOG_CATEGORY_KEY.GENOME_VERSION_ASSEMBLY_ID, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.ACCESSION, + id: BRC_DATA_CATALOG_CATEGORY_KEY.ACCESSION, width: { max: "1fr", min: "164px" }, }, { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildVEuPathDbProject, + viewBuilder: V.buildIsRef, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.VEUPATHDB_PROJECT, - id: BRC_DATA_CATALOG_CATEGORY_KEY.VEUPATHDB_PROJECT, - width: { max: "1fr", min: "140px" }, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.IS_REF, + id: BRC_DATA_CATALOG_CATEGORY_KEY.IS_REF, + width: { max: "0.5fr", min: "100px" }, }, { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildContigs, + viewBuilder: V.buildLevel, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.CONTIGS, - id: BRC_DATA_CATALOG_CATEGORY_KEY.CONTIGS, - width: { max: "0.5fr", min: "100px" }, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.LEVEL, + id: BRC_DATA_CATALOG_CATEGORY_KEY.LEVEL, + width: { max: "0.5fr", min: "142px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildChromosomes, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.CHROMOSOMES, + id: BRC_DATA_CATALOG_CATEGORY_KEY.CHROMOSOMES, + width: { max: "0.5fr", min: "142px" }, }, { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildSupercontigs, + viewBuilder: V.buildLength, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.SUPERCONTIGS, - id: BRC_DATA_CATALOG_CATEGORY_KEY.SUPERCONTIGS, - width: { max: "0.5fr", min: "140px" }, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.LENGTH, + id: BRC_DATA_CATALOG_CATEGORY_KEY.LENGTH, + width: { max: "0.5fr", min: "120px" }, }, { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildChromosomes, + viewBuilder: V.buildScaffoldCount, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.CHROMOSOMES, - id: BRC_DATA_CATALOG_CATEGORY_KEY.CHROMOSOMES, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.SCAFFOLD_COUNT, + id: BRC_DATA_CATALOG_CATEGORY_KEY.SCAFFOLD_COUNT, + width: { max: "0.5fr", min: "80px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildScaffoldN50, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.SCAFFOLD_N50, + id: BRC_DATA_CATALOG_CATEGORY_KEY.SCAFFOLD_N50, + width: { max: "0.5fr", min: "142px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildScaffoldL50, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.SCAFFOLD_L50, + id: BRC_DATA_CATALOG_CATEGORY_KEY.SCAFFOLD_L50, + width: { max: "0.5fr", min: "80px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildCoverage, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.COVERAGE, + id: BRC_DATA_CATALOG_CATEGORY_KEY.COVERAGE, + width: { max: "0.5fr", min: "80px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildGcPercent, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.GC_PERCENT, + id: BRC_DATA_CATALOG_CATEGORY_KEY.GC_PERCENT, + width: { max: "0.5fr", min: "80px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildAnnotationStatus, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.ANNOTATION_STATUS, + id: BRC_DATA_CATALOG_CATEGORY_KEY.ANNOTATION_STATUS, width: { max: "0.5fr", min: "142px" }, }, ], defaultSort: { desc: SORT_DIRECTION.ASCENDING, - id: BRC_DATA_CATALOG_CATEGORY_KEY.SPECIES, + id: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, }, } as ListConfig, listView: { From fab3f77539727b4e9a3765e1d593f2cfe10ed50f Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sat, 16 Nov 2024 16:39:54 -0800 Subject: [PATCH 02/19] feat: restore gene model url (#177) --- .../brc-analytics-catalog/common/entities.ts | 1 + .../Entity/components/AnalysisMethod/types.ts | 2 +- app/utils/galaxy-api.ts | 4 +- .../common/viewModelBuilders.ts | 2 +- files/build-catalog.ts | 1 + files/build-files-from-ncbi.py | 39 +++++++++++++++-- files/entities.ts | 1 + files/out/genomes.json | 20 +++++++++ files/source/genomes-from-ncbi.tsv | 42 +++++++++---------- files/source/organisms-from-ncbi.tsv | 4 +- 10 files changed, 86 insertions(+), 30 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 8e69429..3087c32 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -15,6 +15,7 @@ export interface BRCDataCatalogGenome { chromosomes: number | null; coverage: string | null; gcPercent: number; + geneModelUrl: string | null; isRef: boolean; length: number; level: string; diff --git a/app/components/Entity/components/AnalysisMethod/types.ts b/app/components/Entity/components/AnalysisMethod/types.ts index 3c8fb1a..852c04a 100644 --- a/app/components/Entity/components/AnalysisMethod/types.ts +++ b/app/components/Entity/components/AnalysisMethod/types.ts @@ -4,6 +4,6 @@ import { ANALYSIS_METHOD } from "../../../../apis/catalog/brc-analytics-catalog/ export interface Props { analysisMethod: ANALYSIS_METHOD; content: ReactNode; - geneModelUrl: string; + geneModelUrl: string | null; genomeVersionAssemblyId: string; } diff --git a/app/utils/galaxy-api.ts b/app/utils/galaxy-api.ts index 4063b9d..be3705f 100644 --- a/app/utils/galaxy-api.ts +++ b/app/utils/galaxy-api.ts @@ -32,7 +32,7 @@ const WORKFLOW_LANDING_URL_PREFIX = export async function getWorkflowLandingUrl( workflowId: WORKFLOW_ID, referenceGenome: string, - geneModelUrl: string + geneModelUrl: string | null ): Promise { const body: WorkflowLandingsBody = { public: true, @@ -74,7 +74,7 @@ function buildFastaUrl(identifier: string): string { function getWorkflowLandingsRequestState( workflowId: WORKFLOW_ID, referenceGenome: string, - geneModelUrl: string + geneModelUrl: string | null ): WorkflowLandingsBodyRequestState { if (workflowId === WORKFLOW_ID.VARIANT_CALLING && geneModelUrl) { return { diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 022a1a2..d45adc9 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -231,7 +231,7 @@ export const buildGenomeAnalysisMethod = ( ): ComponentProps => { return { ...analysisMethodProps, - geneModelUrl: "", + geneModelUrl: genome.geneModelUrl, genomeVersionAssemblyId: genome.accession, }; }; diff --git a/files/build-catalog.ts b/files/build-catalog.ts index 49229d0..3576b9b 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -25,6 +25,7 @@ async function buildGenomes(): Promise { chromosomes: parseNumberOrNull(row.chromosomeCount), coverage: parseStringOrNull(row.coverage), gcPercent: parseNumber(row.gcPercent), + geneModelUrl: parseStringOrNull(row.geneModelUrl), isRef: parseBoolean(row.isRef), length: parseNumber(row.length), level: row.level, diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 8a0717b..0690d18 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -1,6 +1,7 @@ -from urllib.parse import quote as url_quote import pandas as pd import requests +import urllib.parse +import re TAXA_URL = "https://docs.google.com/spreadsheets/d/1Gg9sw2Qw765tOx2To53XkTAn-RAMiBtqYrfItlLXXrc/gviz/tq?tqx=out:csv&sheet=Sheet1.csv" @@ -28,7 +29,7 @@ def get_tax_ids(organisms_df): return list(organisms_df["taxonomyId"]) def build_genomes_url(tax_ids): - return f"https://api.ncbi.nlm.nih.gov/datasets/v2/genome/taxon/{url_quote(",".join([str(id) for id in tax_ids]))}/dataset_report?filters.assembly_source=refseq&filters.has_annotation=true&filters.exclude_paired_reports=true&filters.exclude_atypical=true&filters.assembly_level=scaffold&filters.assembly_level=chromosome&filters.assembly_level=complete_genome" + return f"https://api.ncbi.nlm.nih.gov/datasets/v2/genome/taxon/{urllib.parse.quote(",".join([str(id) for id in tax_ids]))}/dataset_report?filters.assembly_source=refseq&filters.has_annotation=true&filters.exclude_paired_reports=true&filters.exclude_atypical=true&filters.assembly_level=scaffold&filters.assembly_level=chromosome&filters.assembly_level=complete_genome" def get_genome_row(genome_info): refseq_category = genome_info["assembly_info"].get("refseq_category") @@ -52,6 +53,38 @@ def get_genome_row(genome_info): def get_genomes_df(tax_ids): return pd.DataFrame(data=[get_genome_row(genome_info) for genome_info in requests.get(build_genomes_url(tax_ids)).json()["reports"]]) +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(genomes_df: pd.DataFrame): + return pd.concat([genomes_df, genomes_df["accession"].apply(_id_to_gene_model_url).rename("geneModelUrl")], axis="columns") + def build_files(): print("Building files") @@ -71,7 +104,7 @@ def build_files(): gen_bank_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="pairedAccession", right_on="genBank") ref_seq_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="accession", right_on="refSeq") - genomes_df = gen_bank_merge_df.combine_first(ref_seq_merge_df) + genomes_df = add_gene_model_url(gen_bank_merge_df.combine_first(ref_seq_merge_df)) genomes_df.to_csv(GENOMES_OUTPUT_PATH, index=False, sep="\t") diff --git a/files/entities.ts b/files/entities.ts index 6f5b6f6..3aa6edd 100644 --- a/files/entities.ts +++ b/files/entities.ts @@ -4,6 +4,7 @@ export interface SourceGenome { chromosomeCount: string; coverage: string; gcPercent: string; + geneModelUrl: string; isRef: string; length: string; level: string; diff --git a/files/out/genomes.json b/files/out/genomes.json index abbeba6..203502b 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -5,6 +5,7 @@ "chromosomes": 14, "coverage": null, "gcPercent": 42.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 27007701, "level": "Chromosome", @@ -21,6 +22,7 @@ "chromosomes": 11, "coverage": null, "gcPercent": 46.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz", "isRef": true, "length": 26075494, "level": "Chromosome", @@ -37,6 +39,7 @@ "chromosomes": 36, "coverage": null, "gcPercent": 59.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 32855089, "level": "Complete Genome", @@ -53,6 +56,7 @@ "chromosomes": 14, "coverage": "100.0x", "gcPercent": 19.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz", "isRef": true, "length": 23292622, "level": "Complete Genome", @@ -69,6 +73,7 @@ "chromosomes": 35, "coverage": null, "gcPercent": 58, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 32068771, "level": "Chromosome", @@ -85,6 +90,7 @@ "chromosomes": 14, "coverage": "26.5x", "gcPercent": 52.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz", "isRef": true, "length": 65633124, "level": "Chromosome", @@ -101,6 +107,7 @@ "chromosomes": null, "coverage": null, "gcPercent": 46, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 28947925, "level": "Scaffold", @@ -117,6 +124,7 @@ "chromosomes": 1, "coverage": null, "gcPercent": 65.5, + "geneModelUrl": null, "isRef": true, "length": 4411532, "level": "Complete Genome", @@ -133,6 +141,7 @@ "chromosomes": null, "coverage": null, "gcPercent": 51.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz", "isRef": true, "length": 89937456, "level": "Scaffold", @@ -149,6 +158,7 @@ "chromosomes": 36, "coverage": null, "gcPercent": 59.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 32444968, "level": "Chromosome", @@ -165,6 +175,7 @@ "chromosomes": 1, "coverage": null, "gcPercent": 65.5, + "geneModelUrl": null, "isRef": false, "length": 4411709, "level": "Complete Genome", @@ -181,6 +192,7 @@ "chromosomes": 1, "coverage": null, "gcPercent": 33, + "geneModelUrl": null, "isRef": false, "length": 196858, "level": "Complete Genome", @@ -197,6 +209,7 @@ "chromosomes": 1, "coverage": null, "gcPercent": 38, + "geneModelUrl": null, "isRef": false, "length": 29903, "level": "Complete Genome", @@ -213,6 +226,7 @@ "chromosomes": 3, "coverage": "250.0x", "gcPercent": 37, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 566339288, "level": "Chromosome", @@ -229,6 +243,7 @@ "chromosomes": 9, "coverage": "475.0x", "gcPercent": 46.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz", "isRef": true, "length": 28193268, "level": "Complete Genome", @@ -245,6 +260,7 @@ "chromosomes": 1, "coverage": "20.0x", "gcPercent": 65.5, + "geneModelUrl": null, "isRef": false, "length": 4516435, "level": "Complete Genome", @@ -261,6 +277,7 @@ "chromosomes": 14, "coverage": "100.0x", "gcPercent": 21.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz", "isRef": true, "length": 23043114, "level": "Complete Genome", @@ -277,6 +294,7 @@ "chromosomes": 14, "coverage": "155.0x", "gcPercent": 23, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz", "isRef": true, "length": 18338688, "level": "Complete Genome", @@ -293,6 +311,7 @@ "chromosomes": 3, "coverage": "54.0x", "gcPercent": 44.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz", "isRef": true, "length": 264451381, "level": "Chromosome", @@ -309,6 +328,7 @@ "chromosomes": 1, "coverage": "100.0x", "gcPercent": 65.5, + "geneModelUrl": null, "isRef": false, "length": 4469156, "level": "Complete Genome", diff --git a/files/source/genomes-from-ncbi.tsv b/files/source/genomes-from-ncbi.tsv index 8876bf3..79d5b1b 100644 --- a/files/source/genomes-from-ncbi.tsv +++ b/files/source/genomes-from-ncbi.tsv @@ -1,21 +1,21 @@ -taxon taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq -Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 -Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.5 GCA_000002765.3 GCF_000002765.5 -Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 -Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 -Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCA_018416015.2 GCA_018416015.2 GCF_018416015.1 -Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Complete Genome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 -Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 -Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 -Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 -Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 GCF_943734735.2 -Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 -Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 -Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 -Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 -Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 -Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 -Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 -Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 -Mycobacterium tuberculosis 1773 GCF_030566675.1 False Complete Genome 1.0 4516435 1 4516435 1 20.0x 65.5 GCA_030566675.1 -Mycobacterium tuberculosis 1773 GCF_963525475.1 False Complete Genome 1.0 4469156 1 4469156 1 100.0x 65.5 GCA_963525475.1 +taxon taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq geneModelUrl +Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 +Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.5 GCA_000002765.3 GCF_000002765.5 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz +Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz +Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz +Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCA_018416015.2 GCA_018416015.2 GCF_018416015.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz +Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Complete Genome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz +Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz +Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz +Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz +Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 +Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz +Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz +Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz +Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz +Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz +Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 +Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 +Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 +Mycobacterium tuberculosis 1773 GCF_030566675.1 False Complete Genome 1.0 4516435 1 4516435 1 20.0x 65.5 GCA_030566675.1 +Mycobacterium tuberculosis 1773 GCF_963525475.1 False Complete Genome 1.0 4469156 1 4469156 1 100.0x 65.5 GCA_963525475.1 diff --git a/files/source/organisms-from-ncbi.tsv b/files/source/organisms-from-ncbi.tsv index 83237cd..6686f92 100644 --- a/files/source/organisms-from-ncbi.tsv +++ b/files/source/organisms-from-ncbi.tsv @@ -1,7 +1,7 @@ taxon taxonomyId assemblyCount CustomTags Anopheles gambiae 7165 7 VEuPathDb Coccidioides immitis 5501 5 -Coccidioides posadasii 199306 13 +Coccidioides posadasii 199306 13 VEuPathDb Culex pipiens 7175 5 VEuPathDb Leishmania braziliensis 5660 11 VEuPathDb Leishmania donovani 5661 12 VEuPathDb @@ -15,4 +15,4 @@ Plasmodium yoelii 5861 15 VEuPathDb Severe acute respiratory syndrome coronavirus 2 2697049 92 Virus Toxoplasma gondii 5811 29 VEuPathDb Trypanosoma brucei 5691 5 VEuPathDb -Trypanosoma cruzi 5693 45 VEuPathDb +Trypanosoma cruzi 5693 44 VEuPathDb From cfe45ce3c2519069bb7dd85ce6e9033db9fa8f8b Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sat, 16 Nov 2024 17:24:58 -0800 Subject: [PATCH 03/19] feat: relabel "organisms" to "genomes" (#177) --- .../Section/components/SectionHero/sectionHero.tsx | 2 +- app/components/Home/content/sectionSubHero.mdx | 2 +- .../brc-analytics-catalog/common/viewModelBuilders.ts | 4 ++-- pages/_app.tsx | 2 +- routes/constants.ts | 2 +- site-config/brc-analytics/local/config.ts | 2 +- site-config/brc-analytics/local/index/genomeEntityConfig.ts | 6 +++--- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/components/Home/components/Section/components/SectionHero/sectionHero.tsx b/app/components/Home/components/Section/components/SectionHero/sectionHero.tsx index 0069043..21faa17 100644 --- a/app/components/Home/components/Section/components/SectionHero/sectionHero.tsx +++ b/app/components/Home/components/Section/components/SectionHero/sectionHero.tsx @@ -32,7 +32,7 @@ export const SectionHero = (): JSX.Element => { annotations and functional insights into disease-causing organisms and their carriers - diff --git a/app/components/Home/content/sectionSubHero.mdx b/app/components/Home/content/sectionSubHero.mdx index da94f3a..0512771 100644 --- a/app/components/Home/content/sectionSubHero.mdx +++ b/app/components/Home/content/sectionSubHero.mdx @@ -1,5 +1,5 @@ BRC Analytics is your new destination for analysis of biological data related to pathogens. Building on the foundation of VEuPathDb the platform will provide access and analysis capabilities for -[785 eukaryotic pathogens](/data/organisms), hosts, and vectors. The functionality will +[785 eukaryotic pathogens](/data/genomes), hosts, and vectors. The functionality will be developed and made available incrementally over the [following months](/roadmap). diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index d45adc9..c364d2c 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -38,7 +38,7 @@ export const buildAnalyzeGenome = ( return { analyze: { label: "Analyze", - url: rowId ? `${ROUTES.ORGANISMS}/${rowId}` : "", + url: rowId ? `${ROUTES.GENOMES}/${rowId}` : "", }, views: [ ...(ucscBrowserUrl @@ -320,7 +320,7 @@ function getGenomeEntityChooseAnalysisMethodBreadcrumbs( genome: BRCDataCatalogGenome ): Breadcrumb[] { return [ - { path: ROUTES.ORGANISMS, text: "Organisms" }, + { path: ROUTES.GENOMES, text: "Genomes" }, { path: "", text: `${genome.organism}` }, { path: "", text: "Choose Analysis Methods" }, ]; diff --git a/pages/_app.tsx b/pages/_app.tsx index 3e99414..3844bc2 100644 --- a/pages/_app.tsx +++ b/pages/_app.tsx @@ -20,7 +20,7 @@ import { StyledFooter } from "../app/components/Layout/components/Footer/footer. import { config } from "../app/config/config"; import { mergeAppTheme } from "../app/theme/theme"; -const DEFAULT_ENTITY_LIST_TYPE = "organisms"; +const DEFAULT_ENTITY_LIST_TYPE = "genomes"; export interface PageProps extends AzulEntitiesStaticResponse { pageTitle?: string; diff --git a/routes/constants.ts b/routes/constants.ts index c44740a..05eb80a 100644 --- a/routes/constants.ts +++ b/routes/constants.ts @@ -1,5 +1,5 @@ export const ROUTES = { ABOUT: "/about", - ORGANISMS: "/data/organisms", + GENOMES: "/data/genomes", ROADMAP: "/roadmap", }; diff --git a/site-config/brc-analytics/local/config.ts b/site-config/brc-analytics/local/config.ts index 5d6e907..781a54a 100644 --- a/site-config/brc-analytics/local/config.ts +++ b/site-config/brc-analytics/local/config.ts @@ -68,7 +68,7 @@ export function makeConfig(browserUrl: string, gitHubUrl: string): SiteConfig { undefined, [ { label: "About", url: ROUTES.ABOUT }, - { label: "Datasets", url: ROUTES.ORGANISMS }, + { label: "Datasets", url: ROUTES.GENOMES }, { label: "Roadmap", url: ROUTES.ROADMAP }, ], undefined, diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index cc61338..42d2bf5 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -80,10 +80,10 @@ export const genomeEntityConfig: BRCEntityConfig = { ], }, exploreMode: EXPLORE_MODE.CS_FETCH_CS_FILTERING, - explorerTitle: "Organisms", + explorerTitle: "Genomes", getId: getGenomeId, getTitle: getGenomeTitle, - label: "Organisms", + label: "Genomes", list: { columns: [ { @@ -226,6 +226,6 @@ export const genomeEntityConfig: BRCEntityConfig = { enableTab: false, listHero, }, - route: "organisms", + route: "genomes", staticLoadFile: "files/out/genomes.json", }; From 8e7ccc3a16f572c34a71673d62e683040c274d49 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sat, 16 Nov 2024 17:35:55 -0800 Subject: [PATCH 04/19] feat: rename "organism" to "taxon" (#177) --- .../brc-analytics-catalog/common/entities.ts | 2 +- .../brc-analytics-catalog/common/utils.ts | 2 +- .../common/viewModelBuilders.ts | 10 ++--- files/build-catalog.ts | 2 +- files/out/genomes.json | 40 +++++++++---------- site-config/brc-analytics/category.ts | 4 +- .../local/index/genomeEntityConfig.ts | 12 +++--- 7 files changed, 36 insertions(+), 36 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 3087c32..28d0b20 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -20,10 +20,10 @@ export interface BRCDataCatalogGenome { length: number; level: string; ncbiTaxonomyId: string; - organism: string; scaffoldCount: number; scaffoldL50: number; scaffoldN50: number; + taxon: string; ucscBrowserUrl: string | null; } diff --git a/app/apis/catalog/brc-analytics-catalog/common/utils.ts b/app/apis/catalog/brc-analytics-catalog/common/utils.ts index 935fde0..0baded0 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/utils.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/utils.ts @@ -6,7 +6,7 @@ export function getGenomeId(genome: BRCDataCatalogGenome): string { export function getGenomeTitle(genome?: BRCDataCatalogGenome): string { if (!genome) return ""; - return `${genome.organism}`; + return `${genome.taxon}`; } export function sanitizeEntityId(entityId?: string): string { diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index c364d2c..d960147 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -150,15 +150,15 @@ export const buildLevel = ( }; /** - * Build props for the organism cell. + * Build props for the taxon cell. * @param genome - Genome entity. * @returns Props to be used for the cell. */ -export const buildOrganism = ( +export const buildTaxon = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.organism, + value: genome.taxon, }; }; @@ -289,7 +289,7 @@ export const buildGenomeDetails = ( keyValuePairs.set( "Taxon", C.Link({ - label: genome.organism, + label: genome.taxon, url: `https://www.ncbi.nlm.nih.gov/datasets/taxonomy/${encodeURIComponent( genome.ncbiTaxonomyId )}/`, @@ -321,7 +321,7 @@ function getGenomeEntityChooseAnalysisMethodBreadcrumbs( ): Breadcrumb[] { return [ { path: ROUTES.GENOMES, text: "Genomes" }, - { path: "", text: `${genome.organism}` }, + { path: "", text: `${genome.taxon}` }, { path: "", text: "Choose Analysis Methods" }, ]; } diff --git a/files/build-catalog.ts b/files/build-catalog.ts index 3576b9b..ff24ba7 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -30,10 +30,10 @@ async function buildGenomes(): Promise { length: parseNumber(row.length), level: row.level, ncbiTaxonomyId: row.taxonomyId, - organism: row.taxon, scaffoldCount: parseNumber(row.scaffoldCount), scaffoldL50: parseNumber(row.scaffoldL50), scaffoldN50: parseNumber(row.scaffoldN50), + taxon: row.taxon, ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), }) ); diff --git a/files/out/genomes.json b/files/out/genomes.json index 203502b..771cac1 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -10,10 +10,10 @@ "length": 27007701, "level": "Chromosome", "ncbiTaxonomyId": "5855", - "organism": "Plasmodium vivax", "scaffoldCount": 2747, "scaffoldL50": 6, "scaffoldN50": 1678596, + "taxon": "Plasmodium vivax", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2" }, { @@ -27,10 +27,10 @@ "length": 26075494, "level": "Chromosome", "ncbiTaxonomyId": "185431", - "organism": "Trypanosoma brucei brucei TREU927", "scaffoldCount": 12, "scaffoldL50": 4, "scaffoldN50": 2481190, + "taxon": "Trypanosoma brucei brucei TREU927", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2" }, { @@ -44,10 +44,10 @@ "length": 32855089, "level": "Complete Genome", "ncbiTaxonomyId": "347515", - "organism": "Leishmania major strain Friedlin", "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1091540, + "taxon": "Leishmania major strain Friedlin", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2" }, { @@ -61,10 +61,10 @@ "length": 23292622, "level": "Complete Genome", "ncbiTaxonomyId": "36329", - "organism": "Plasmodium falciparum 3D7", "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1687656, + "taxon": "Plasmodium falciparum 3D7", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5" }, { @@ -78,10 +78,10 @@ "length": 32068771, "level": "Chromosome", "ncbiTaxonomyId": "420245", - "organism": "Leishmania braziliensis MHOM/BR/75/M2904", "scaffoldCount": 138, "scaffoldL50": 11, "scaffoldN50": 992961, + "taxon": "Leishmania braziliensis MHOM/BR/75/M2904", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2" }, { @@ -95,10 +95,10 @@ "length": 65633124, "level": "Chromosome", "ncbiTaxonomyId": "508771", - "organism": "Toxoplasma gondii ME49", "scaffoldCount": 2276, "scaffoldL50": 6, "scaffoldN50": 4973582, + "taxon": "Toxoplasma gondii ME49", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2" }, { @@ -112,10 +112,10 @@ "length": 28947925, "level": "Scaffold", "ncbiTaxonomyId": "246410", - "organism": "Coccidioides immitis RS", "scaffoldCount": 6, "scaffoldL50": 3, "scaffoldN50": 4323945, + "taxon": "Coccidioides immitis RS", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2" }, { @@ -129,10 +129,10 @@ "length": 4411532, "level": "Complete Genome", "ncbiTaxonomyId": "83332", - "organism": "Mycobacterium tuberculosis H37Rv", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4411532, + "taxon": "Mycobacterium tuberculosis H37Rv", "ucscBrowserUrl": null }, { @@ -146,10 +146,10 @@ "length": 89937456, "level": "Scaffold", "ncbiTaxonomyId": "5693", - "organism": "Trypanosoma cruzi", "scaffoldCount": 29495, "scaffoldL50": 212, "scaffoldN50": 88624, + "taxon": "Trypanosoma cruzi", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1" }, { @@ -163,10 +163,10 @@ "length": 32444968, "level": "Chromosome", "ncbiTaxonomyId": "5661", - "organism": "Leishmania donovani", "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1024085, + "taxon": "Leishmania donovani", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1" }, { @@ -180,10 +180,10 @@ "length": 4411709, "level": "Complete Genome", "ncbiTaxonomyId": "83332", - "organism": "Mycobacterium tuberculosis H37Rv", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4411709, + "taxon": "Mycobacterium tuberculosis H37Rv", "ucscBrowserUrl": null }, { @@ -197,10 +197,10 @@ "length": 196858, "level": "Complete Genome", "ncbiTaxonomyId": "10244", - "organism": "Monkeypox virus", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 196858, + "taxon": "Monkeypox virus", "ucscBrowserUrl": null }, { @@ -214,10 +214,10 @@ "length": 29903, "level": "Complete Genome", "ncbiTaxonomyId": "2697049", - "organism": "Severe acute respiratory syndrome coronavirus 2", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 29903, + "taxon": "Severe acute respiratory syndrome coronavirus 2", "ucscBrowserUrl": null }, { @@ -231,10 +231,10 @@ "length": 566339288, "level": "Chromosome", "ncbiTaxonomyId": "42434", - "organism": "Culex pipiens pallens", "scaffoldCount": 289, "scaffoldL50": 2, "scaffoldN50": 186194774, + "taxon": "Culex pipiens pallens", "ucscBrowserUrl": null }, { @@ -248,10 +248,10 @@ "length": 28193268, "level": "Complete Genome", "ncbiTaxonomyId": "443226", - "organism": "Coccidioides posadasii str. Silveira", "scaffoldCount": 9, "scaffoldL50": 2, "scaffoldN50": 8079863, + "taxon": "Coccidioides posadasii str. Silveira", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2" }, { @@ -265,10 +265,10 @@ "length": 4516435, "level": "Complete Genome", "ncbiTaxonomyId": "1773", - "organism": "Mycobacterium tuberculosis", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4516435, + "taxon": "Mycobacterium tuberculosis", "ucscBrowserUrl": null }, { @@ -282,10 +282,10 @@ "length": 23043114, "level": "Complete Genome", "ncbiTaxonomyId": "5861", - "organism": "Plasmodium yoelii", "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 2046250, + "taxon": "Plasmodium yoelii", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2" }, { @@ -299,10 +299,10 @@ "length": 18338688, "level": "Complete Genome", "ncbiTaxonomyId": "54757", - "organism": "Plasmodium vinckei vinckei", "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1692345, + "taxon": "Plasmodium vinckei vinckei", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1" }, { @@ -316,10 +316,10 @@ "length": 264451381, "level": "Chromosome", "ncbiTaxonomyId": "7165", - "organism": "Anopheles gambiae", "scaffoldCount": 190, "scaffoldL50": 2, "scaffoldN50": 99149756, + "taxon": "Anopheles gambiae", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2" }, { @@ -333,10 +333,10 @@ "length": 4469156, "level": "Complete Genome", "ncbiTaxonomyId": "1773", - "organism": "Mycobacterium tuberculosis", "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4469156, + "taxon": "Mycobacterium tuberculosis", "ucscBrowserUrl": null } ] diff --git a/site-config/brc-analytics/category.ts b/site-config/brc-analytics/category.ts index 7a4519f..92fc0f1 100644 --- a/site-config/brc-analytics/category.ts +++ b/site-config/brc-analytics/category.ts @@ -8,10 +8,10 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { IS_REF: "isRef", LENGTH: "length", LEVEL: "level", - ORGANISM: "organism", SCAFFOLD_COUNT: "scaffoldCount", SCAFFOLD_L50: "scaffoldL50", SCAFFOLD_N50: "scaffoldN50", + TAXON: "taxon", TAXONOMY_ID: "ncbiTaxonomyId", UCSC_BROWSER_URL: "ucscBrowserUrl", }; @@ -26,10 +26,10 @@ export const BRC_DATA_CATALOG_CATEGORY_LABEL = { IS_REF: "Is Reference", LENGTH: "Length", LEVEL: "Level", - ORGANISM: "Organism", SCAFFOLD_COUNT: "Scaffolds", SCAFFOLD_L50: "Scaffold L50", SCAFFOLD_N50: "Scaffold N50", + TAXON: "Taxon", TAXONOMY_ID: "Taxonomy ID", UCSC_BROWSER_URL: "UCSC Browser", }; diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index 42d2bf5..208d2a9 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -30,8 +30,8 @@ export const genomeEntityConfig: BRCEntityConfig = { { categoryConfigs: [ { - key: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, - label: BRC_DATA_CATALOG_CATEGORY_LABEL.ORGANISM, + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, }, { key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, @@ -99,10 +99,10 @@ export const genomeEntityConfig: BRCEntityConfig = { { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildOrganism, + viewBuilder: V.buildTaxon, } as ComponentConfig, - header: BRC_DATA_CATALOG_CATEGORY_LABEL.ORGANISM, - id: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, width: { max: "1fr", min: "284px" }, }, { @@ -217,7 +217,7 @@ export const genomeEntityConfig: BRCEntityConfig = { ], defaultSort: { desc: SORT_DIRECTION.ASCENDING, - id: BRC_DATA_CATALOG_CATEGORY_KEY.ORGANISM, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, }, } as ListConfig, listView: { From 325a209e94d8a584aa104bcd4d1b4d9834c7b9c3 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Sun, 17 Nov 2024 18:33:14 -0800 Subject: [PATCH 05/19] feat: add tags to genome list (#177) --- .../brc-analytics-catalog/common/entities.ts | 1 + app/components/index.ts | 1 + .../common/viewModelBuilders.ts | 14 +++++++ files/build-catalog.ts | 19 +++++++--- files/entities.ts | 7 ++++ files/out/genomes.json | 38 +++++++++++++++++++ site-config/brc-analytics/category.ts | 2 + .../local/index/genomeEntityConfig.ts | 13 +++++++ 8 files changed, 90 insertions(+), 5 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 28d0b20..e61b319 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -23,6 +23,7 @@ export interface BRCDataCatalogGenome { scaffoldCount: number; scaffoldL50: number; scaffoldN50: number; + tags: string[]; taxon: string; ucscBrowserUrl: string | null; } diff --git a/app/components/index.ts b/app/components/index.ts index 53ec783..4a868b3 100644 --- a/app/components/index.ts +++ b/app/components/index.ts @@ -22,6 +22,7 @@ export { export { Logo } from "@databiosphere/findable-ui/lib/components/Layout/components/Header/components/Content/components/Logo/logo"; export { Link } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link"; export { BasicCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/BasicCell/basicCell"; +export { NTagCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/NTagCell/nTagCell"; export { CopyText } from "./common/CopyText/copyText"; export { AnalysisMethod } from "./Entity/components/AnalysisMethod/analysisMethod"; export { AnalysisMethods } from "./Entity/components/AnalysisMethods/analysisMethods"; diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index d960147..72b346f 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -201,6 +201,20 @@ export const buildScaffoldN50 = ( }; }; +/** + * Build props for the tags cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildTags = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + label: "Tags", + values: genome.tags, + }; +}; + /** * Build props for the taxonomy ID cell. * @param genome - Genome entity. diff --git a/files/build-catalog.ts b/files/build-catalog.ts index ff24ba7..4c8a323 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -1,8 +1,9 @@ import { parse as parseCsv } from "csv-parse/sync"; import fsp from "fs/promises"; import { BRCDataCatalogGenome } from "../app/apis/catalog/brc-analytics-catalog/common/entities"; -import { SourceGenome } from "./entities"; +import { SourceGenome, SourceOrganism } from "./entities"; +const SOURCE_PATH_ORGANISMS = "files/source/organisms-from-ncbi.tsv"; const SOURCE_PATH_GENOMES = "files/source/genomes-from-ncbi.tsv"; buildCatalog(); @@ -17,9 +18,16 @@ async function buildCatalog(): Promise { } async function buildGenomes(): Promise { + const sourceOrganismRows = await readValuesFile( + SOURCE_PATH_ORGANISMS + ); + const sourceOrganismsByTaxon = new Map( + sourceOrganismRows.map((row) => [row.taxon, row]) + ); const sourceRows = await readValuesFile(SOURCE_PATH_GENOMES); - const mappedRows = sourceRows.map( - (row): BRCDataCatalogGenome => ({ + const mappedRows = sourceRows.map((row): BRCDataCatalogGenome => { + const tagsString = sourceOrganismsByTaxon.get(row.taxon)?.CustomTags; + return { accession: row.accession, annotationStatus: parseStringOrNull(row.annotationStatus), chromosomes: parseNumberOrNull(row.chromosomeCount), @@ -33,10 +41,11 @@ async function buildGenomes(): Promise { scaffoldCount: parseNumber(row.scaffoldCount), scaffoldL50: parseNumber(row.scaffoldL50), scaffoldN50: parseNumber(row.scaffoldN50), + tags: tagsString ? [tagsString] : [], taxon: row.taxon, ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), - }) - ); + }; + }); return mappedRows.sort((a, b) => a.accession.localeCompare(b.accession)); } diff --git a/files/entities.ts b/files/entities.ts index 3aa6edd..40c1774 100644 --- a/files/entities.ts +++ b/files/entities.ts @@ -15,3 +15,10 @@ export interface SourceGenome { taxonomyId: string; ucscBrowser: string; } + +export interface SourceOrganism { + assemblyCount: string; + CustomTags: string; + taxon: string; + taxonomyId: string; +} diff --git a/files/out/genomes.json b/files/out/genomes.json index 771cac1..b8c9c76 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -13,6 +13,9 @@ "scaffoldCount": 2747, "scaffoldL50": 6, "scaffoldN50": 1678596, + "tags": [ + "VEuPathDb" + ], "taxon": "Plasmodium vivax", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2" }, @@ -30,6 +33,7 @@ "scaffoldCount": 12, "scaffoldL50": 4, "scaffoldN50": 2481190, + "tags": [], "taxon": "Trypanosoma brucei brucei TREU927", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2" }, @@ -47,6 +51,7 @@ "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1091540, + "tags": [], "taxon": "Leishmania major strain Friedlin", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2" }, @@ -64,6 +69,7 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1687656, + "tags": [], "taxon": "Plasmodium falciparum 3D7", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5" }, @@ -81,6 +87,7 @@ "scaffoldCount": 138, "scaffoldL50": 11, "scaffoldN50": 992961, + "tags": [], "taxon": "Leishmania braziliensis MHOM/BR/75/M2904", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2" }, @@ -98,6 +105,7 @@ "scaffoldCount": 2276, "scaffoldL50": 6, "scaffoldN50": 4973582, + "tags": [], "taxon": "Toxoplasma gondii ME49", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2" }, @@ -115,6 +123,7 @@ "scaffoldCount": 6, "scaffoldL50": 3, "scaffoldN50": 4323945, + "tags": [], "taxon": "Coccidioides immitis RS", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2" }, @@ -132,6 +141,7 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4411532, + "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", "ucscBrowserUrl": null }, @@ -149,6 +159,9 @@ "scaffoldCount": 29495, "scaffoldL50": 212, "scaffoldN50": 88624, + "tags": [ + "VEuPathDb" + ], "taxon": "Trypanosoma cruzi", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1" }, @@ -166,6 +179,9 @@ "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1024085, + "tags": [ + "VEuPathDb" + ], "taxon": "Leishmania donovani", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1" }, @@ -183,6 +199,7 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4411709, + "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", "ucscBrowserUrl": null }, @@ -200,6 +217,9 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 196858, + "tags": [ + "Virus" + ], "taxon": "Monkeypox virus", "ucscBrowserUrl": null }, @@ -217,6 +237,9 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 29903, + "tags": [ + "Virus" + ], "taxon": "Severe acute respiratory syndrome coronavirus 2", "ucscBrowserUrl": null }, @@ -234,6 +257,7 @@ "scaffoldCount": 289, "scaffoldL50": 2, "scaffoldN50": 186194774, + "tags": [], "taxon": "Culex pipiens pallens", "ucscBrowserUrl": null }, @@ -251,6 +275,7 @@ "scaffoldCount": 9, "scaffoldL50": 2, "scaffoldN50": 8079863, + "tags": [], "taxon": "Coccidioides posadasii str. Silveira", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2" }, @@ -268,6 +293,9 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4516435, + "tags": [ + "Bact" + ], "taxon": "Mycobacterium tuberculosis", "ucscBrowserUrl": null }, @@ -285,6 +313,9 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 2046250, + "tags": [ + "VEuPathDb" + ], "taxon": "Plasmodium yoelii", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2" }, @@ -302,6 +333,7 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1692345, + "tags": [], "taxon": "Plasmodium vinckei vinckei", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1" }, @@ -319,6 +351,9 @@ "scaffoldCount": 190, "scaffoldL50": 2, "scaffoldN50": 99149756, + "tags": [ + "VEuPathDb" + ], "taxon": "Anopheles gambiae", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2" }, @@ -336,6 +371,9 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4469156, + "tags": [ + "Bact" + ], "taxon": "Mycobacterium tuberculosis", "ucscBrowserUrl": null } diff --git a/site-config/brc-analytics/category.ts b/site-config/brc-analytics/category.ts index 92fc0f1..edca097 100644 --- a/site-config/brc-analytics/category.ts +++ b/site-config/brc-analytics/category.ts @@ -11,6 +11,7 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { SCAFFOLD_COUNT: "scaffoldCount", SCAFFOLD_L50: "scaffoldL50", SCAFFOLD_N50: "scaffoldN50", + TAGS: "tags", TAXON: "taxon", TAXONOMY_ID: "ncbiTaxonomyId", UCSC_BROWSER_URL: "ucscBrowserUrl", @@ -29,6 +30,7 @@ export const BRC_DATA_CATALOG_CATEGORY_LABEL = { SCAFFOLD_COUNT: "Scaffolds", SCAFFOLD_L50: "Scaffold L50", SCAFFOLD_N50: "Scaffold N50", + TAGS: "Tags", TAXON: "Taxon", TAXONOMY_ID: "Taxonomy ID", UCSC_BROWSER_URL: "UCSC Browser", diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index 208d2a9..612e3be 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -61,6 +61,10 @@ export const genomeEntityConfig: BRCEntityConfig = { key: BRC_DATA_CATALOG_CATEGORY_KEY.ANNOTATION_STATUS, label: BRC_DATA_CATALOG_CATEGORY_LABEL.ANNOTATION_STATUS, }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAGS, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAGS, + }, ], }, ], @@ -214,6 +218,15 @@ export const genomeEntityConfig: BRCEntityConfig = { id: BRC_DATA_CATALOG_CATEGORY_KEY.ANNOTATION_STATUS, width: { max: "0.5fr", min: "142px" }, }, + { + componentConfig: { + component: C.NTagCell, + viewBuilder: V.buildTags, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAGS, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAGS, + width: { max: "0.5fr", min: "142px" }, + }, ], defaultSort: { desc: SORT_DIRECTION.ASCENDING, From df266dea3394893e921209c436a383ea77e47a89 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Mon, 18 Nov 2024 18:15:31 -0800 Subject: [PATCH 06/19] feat: add organism list (#177) --- .../brc-analytics-catalog/common/entities.ts | 7 + .../brc-analytics-catalog/common/utils.ts | 6 +- .../common/viewModelBuilders.ts | 24 +++- files/build-catalog.ts | 40 ++++-- files/out/organisms.json | 136 ++++++++++++++++++ routes/constants.ts | 1 + site-config/brc-analytics/category.ts | 2 + site-config/brc-analytics/local/config.ts | 14 +- .../local/index/organismEntityConfig.ts | 102 +++++++++++++ 9 files changed, 316 insertions(+), 16 deletions(-) create mode 100644 files/out/organisms.json create mode 100644 site-config/brc-analytics/local/index/organismEntityConfig.ts diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index e61b319..7e713f5 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -28,6 +28,13 @@ export interface BRCDataCatalogGenome { ucscBrowserUrl: string | null; } +export interface BRCDataCatalogOrganism { + assemblyCount: number; + ncbiTaxonomyId: string; + tags: string[]; + taxon: string; +} + export interface EntitiesResponse { hits: R[]; pagination: EntitiesResponsePagination; diff --git a/app/apis/catalog/brc-analytics-catalog/common/utils.ts b/app/apis/catalog/brc-analytics-catalog/common/utils.ts index 0baded0..45fc474 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/utils.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/utils.ts @@ -1,4 +1,4 @@ -import { BRCDataCatalogGenome } from "./entities"; +import { BRCDataCatalogGenome, BRCDataCatalogOrganism } from "./entities"; export function getGenomeId(genome: BRCDataCatalogGenome): string { return sanitizeEntityId(genome.accession); @@ -9,6 +9,10 @@ export function getGenomeTitle(genome?: BRCDataCatalogGenome): string { return `${genome.taxon}`; } +export function getOrganismId(organism: BRCDataCatalogOrganism): string { + return sanitizeEntityId(organism.ncbiTaxonomyId); +} + export function sanitizeEntityId(entityId?: string): string { if (!entityId) return ""; return entityId.replace(/\./g, "_"); diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 72b346f..b7f6e85 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -6,7 +6,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 { + BRCDataCatalogGenome, + BRCDataCatalogOrganism, +} from "../../../../apis/catalog/brc-analytics-catalog/common/entities"; import * as C from "../../../../components"; import { GENOME_BROWSER, NCBI_DATASETS_URL } from "./constants"; @@ -71,6 +74,19 @@ export const buildAnnotationStatus = ( }; }; +/** + * Build props for the assemblies cell. + * @param organism - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildAssemblyCount = ( + organism: BRCDataCatalogOrganism +): ComponentProps => { + return { + value: organism.assemblyCount, + }; +}; + /** * Build props for the chromosomes cell. * @param genome - Genome entity. @@ -155,7 +171,7 @@ export const buildLevel = ( * @returns Props to be used for the cell. */ export const buildTaxon = ( - genome: BRCDataCatalogGenome + genome: BRCDataCatalogOrganism | BRCDataCatalogGenome ): ComponentProps => { return { value: genome.taxon, @@ -207,7 +223,7 @@ export const buildScaffoldN50 = ( * @returns Props to be used for the cell. */ export const buildTags = ( - genome: BRCDataCatalogGenome + genome: BRCDataCatalogOrganism | BRCDataCatalogGenome ): ComponentProps => { return { label: "Tags", @@ -221,7 +237,7 @@ export const buildTags = ( * @returns Props to be used for the cell. */ export const buildTaxonomyId = ( - genome: BRCDataCatalogGenome + genome: BRCDataCatalogOrganism | BRCDataCatalogGenome ): ComponentProps => { return { value: genome.ncbiTaxonomyId, diff --git a/files/build-catalog.ts b/files/build-catalog.ts index 4c8a323..6c881f2 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -1,6 +1,9 @@ import { parse as parseCsv } from "csv-parse/sync"; import fsp from "fs/promises"; -import { BRCDataCatalogGenome } from "../app/apis/catalog/brc-analytics-catalog/common/entities"; +import { + BRCDataCatalogGenome, + BRCDataCatalogOrganism, +} from "../app/apis/catalog/brc-analytics-catalog/common/entities"; import { SourceGenome, SourceOrganism } from "./entities"; const SOURCE_PATH_ORGANISMS = "files/source/organisms-from-ncbi.tsv"; @@ -9,7 +12,16 @@ const SOURCE_PATH_GENOMES = "files/source/genomes-from-ncbi.tsv"; buildCatalog(); async function buildCatalog(): Promise { - const genomes = await buildGenomes(); + const organisms = await buildOrganisms(); + + const organismsByTaxon = new Map( + organisms.map((organism) => [organism.taxon, organism]) + ); + + const genomes = await buildGenomes(organismsByTaxon); + + console.log("Organisms:", genomes.length); + await saveJson("files/out/organisms.json", organisms); console.log("Genomes:", genomes.length); await saveJson("files/out/genomes.json", genomes); @@ -17,16 +29,28 @@ async function buildCatalog(): Promise { console.log("Done"); } -async function buildGenomes(): Promise { - const sourceOrganismRows = await readValuesFile( +async function buildOrganisms(): Promise { + const sourceRows = await readValuesFile( SOURCE_PATH_ORGANISMS ); - const sourceOrganismsByTaxon = new Map( - sourceOrganismRows.map((row) => [row.taxon, row]) + const mappedRows = sourceRows.map((row): BRCDataCatalogOrganism => { + return { + assemblyCount: parseNumber(row.assemblyCount), + ncbiTaxonomyId: row.taxonomyId, + tags: row.CustomTags ? [row.CustomTags] : [], + taxon: row.taxon, + }; + }); + return mappedRows.sort((a, b) => + a.ncbiTaxonomyId.localeCompare(b.ncbiTaxonomyId) ); +} + +async function buildGenomes( + organismsByTaxon: Map +): Promise { const sourceRows = await readValuesFile(SOURCE_PATH_GENOMES); const mappedRows = sourceRows.map((row): BRCDataCatalogGenome => { - const tagsString = sourceOrganismsByTaxon.get(row.taxon)?.CustomTags; return { accession: row.accession, annotationStatus: parseStringOrNull(row.annotationStatus), @@ -41,7 +65,7 @@ async function buildGenomes(): Promise { scaffoldCount: parseNumber(row.scaffoldCount), scaffoldL50: parseNumber(row.scaffoldL50), scaffoldN50: parseNumber(row.scaffoldN50), - tags: tagsString ? [tagsString] : [], + tags: organismsByTaxon.get(row.taxon)?.tags ?? [], taxon: row.taxon, ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), }; diff --git a/files/out/organisms.json b/files/out/organisms.json new file mode 100644 index 0000000..4ceb6ba --- /dev/null +++ b/files/out/organisms.json @@ -0,0 +1,136 @@ +[ + { + "assemblyCount": 6911, + "ncbiTaxonomyId": "10244", + "tags": [ + "Virus" + ], + "taxon": "Monkeypox virus" + }, + { + "assemblyCount": 7823, + "ncbiTaxonomyId": "1773", + "tags": [ + "Bact" + ], + "taxon": "Mycobacterium tuberculosis" + }, + { + "assemblyCount": 13, + "ncbiTaxonomyId": "199306", + "tags": [ + "VEuPathDb" + ], + "taxon": "Coccidioides posadasii" + }, + { + "assemblyCount": 92, + "ncbiTaxonomyId": "2697049", + "tags": [ + "Virus" + ], + "taxon": "Severe acute respiratory syndrome coronavirus 2" + }, + { + "assemblyCount": 5, + "ncbiTaxonomyId": "5501", + "tags": [], + "taxon": "Coccidioides immitis" + }, + { + "assemblyCount": 11, + "ncbiTaxonomyId": "5660", + "tags": [ + "VEuPathDb" + ], + "taxon": "Leishmania braziliensis" + }, + { + "assemblyCount": 12, + "ncbiTaxonomyId": "5661", + "tags": [ + "VEuPathDb" + ], + "taxon": "Leishmania donovani" + }, + { + "assemblyCount": 7, + "ncbiTaxonomyId": "5664", + "tags": [ + "VEuPathDb" + ], + "taxon": "Leishmania major" + }, + { + "assemblyCount": 5, + "ncbiTaxonomyId": "5691", + "tags": [ + "VEuPathDb" + ], + "taxon": "Trypanosoma brucei" + }, + { + "assemblyCount": 44, + "ncbiTaxonomyId": "5693", + "tags": [ + "VEuPathDb" + ], + "taxon": "Trypanosoma cruzi" + }, + { + "assemblyCount": 29, + "ncbiTaxonomyId": "5811", + "tags": [ + "VEuPathDb" + ], + "taxon": "Toxoplasma gondii" + }, + { + "assemblyCount": 67, + "ncbiTaxonomyId": "5833", + "tags": [ + "VEuPathDb" + ], + "taxon": "Plasmodium falciparum" + }, + { + "assemblyCount": 19, + "ncbiTaxonomyId": "5855", + "tags": [ + "VEuPathDb" + ], + "taxon": "Plasmodium vivax" + }, + { + "assemblyCount": 10, + "ncbiTaxonomyId": "5860", + "tags": [ + "VEuPathDb" + ], + "taxon": "Plasmodium vinckei" + }, + { + "assemblyCount": 15, + "ncbiTaxonomyId": "5861", + "tags": [ + "VEuPathDb" + ], + "taxon": "Plasmodium yoelii" + }, + { + "assemblyCount": 7, + "ncbiTaxonomyId": "7165", + "tags": [ + "VEuPathDb" + ], + "taxon": "Anopheles gambiae" + }, + { + "assemblyCount": 5, + "ncbiTaxonomyId": "7175", + "tags": [ + "VEuPathDb" + ], + "taxon": "Culex pipiens" + } +] diff --git a/routes/constants.ts b/routes/constants.ts index 05eb80a..b1f6088 100644 --- a/routes/constants.ts +++ b/routes/constants.ts @@ -1,5 +1,6 @@ export const ROUTES = { ABOUT: "/about", GENOMES: "/data/genomes", + ORGANISMS: "/data/organisms", ROADMAP: "/roadmap", }; diff --git a/site-config/brc-analytics/category.ts b/site-config/brc-analytics/category.ts index edca097..122bf19 100644 --- a/site-config/brc-analytics/category.ts +++ b/site-config/brc-analytics/category.ts @@ -2,6 +2,7 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { ACCESSION: "accession", ANALYZE_GENOME: "analyzeGenome", ANNOTATION_STATUS: "annotationStatus", + ASSEMBLY_COUNT: "assemblyCount", CHROMOSOMES: "chromosomes", COVERAGE: "coverage", GC_PERCENT: "gcPercent", @@ -21,6 +22,7 @@ export const BRC_DATA_CATALOG_CATEGORY_LABEL = { ACCESSION: "Accession", ANALYZE_GENOME: "Action", ANNOTATION_STATUS: "Annotation Status", + ASSEMBLY_COUNT: "Assemblies", CHROMOSOMES: "Chromosomes", COVERAGE: "Coverage", GC_PERCENT: "GC%", diff --git a/site-config/brc-analytics/local/config.ts b/site-config/brc-analytics/local/config.ts index 781a54a..627af71 100644 --- a/site-config/brc-analytics/local/config.ts +++ b/site-config/brc-analytics/local/config.ts @@ -1,11 +1,15 @@ import { ANCHOR_TARGET } from "@databiosphere/findable-ui/lib/components/Links/common/entities"; import { SiteConfig } from "@databiosphere/findable-ui/lib/config/entities"; import { EntityConfig } from "@databiosphere/findable-ui/src/config/entities"; -import { BRCDataCatalogGenome } from "../../../app/apis/catalog/brc-analytics-catalog/common/entities"; +import { + BRCDataCatalogGenome, + BRCDataCatalogOrganism, +} from "../../../app/apis/catalog/brc-analytics-catalog/common/entities"; import * as C from "../../../app/components"; import { ROUTES } from "../../../routes/constants"; import { floating } from "./floating/floating"; import { genomeEntityConfig } from "./index/genomeEntityConfig"; +import { organismEntityConfig } from "./index/organismEntityConfig"; import { socialMedia } from "./socialMedia"; const LOCALHOST = "http://localhost:3000"; @@ -35,7 +39,10 @@ export function makeConfig(browserUrl: string, gitHubUrl: string): SiteConfig { dataSource: { url: "", }, - entities: [genomeEntityConfig as EntityConfig], + entities: [ + organismEntityConfig as EntityConfig, + genomeEntityConfig as EntityConfig, + ], explorerTitle: APP_TITLE, gitHubUrl, layout: { @@ -68,7 +75,8 @@ export function makeConfig(browserUrl: string, gitHubUrl: string): SiteConfig { undefined, [ { label: "About", url: ROUTES.ABOUT }, - { label: "Datasets", url: ROUTES.GENOMES }, + { label: "Organisms", url: ROUTES.ORGANISMS }, + { label: "Genomes", url: ROUTES.GENOMES }, { label: "Roadmap", url: ROUTES.ROADMAP }, ], undefined, diff --git a/site-config/brc-analytics/local/index/organismEntityConfig.ts b/site-config/brc-analytics/local/index/organismEntityConfig.ts new file mode 100644 index 0000000..1a39944 --- /dev/null +++ b/site-config/brc-analytics/local/index/organismEntityConfig.ts @@ -0,0 +1,102 @@ +import { + ComponentConfig, + ListConfig, + SORT_DIRECTION, +} from "@databiosphere/findable-ui/lib/config/entities"; +import { EXPLORE_MODE } from "@databiosphere/findable-ui/lib/hooks/useExploreMode"; +import { BRCDataCatalogOrganism } from "../../../../app/apis/catalog/brc-analytics-catalog/common/entities"; +import { getOrganismId } from "../../../../app/apis/catalog/brc-analytics-catalog/common/utils"; +import * as C from "../../../../app/components"; +import * as V from "../../../../app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders"; +import { BRCEntityConfig } from "../../../common/entities"; +import { + BRC_DATA_CATALOG_CATEGORY_KEY, + BRC_DATA_CATALOG_CATEGORY_LABEL, +} from "../../category"; + +/** + * Entity config object responsible to config anything related to the /genomes route. + */ +export const organismEntityConfig: BRCEntityConfig = { + categoryGroupConfig: { + categoryGroups: [ + { + categoryConfigs: [ + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, + }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXONOMY_ID, + }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.TAGS, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAGS, + }, + ], + }, + ], + key: "organisms", + }, + detail: { + detailOverviews: [], + staticLoad: true, + tabs: [], + }, + exploreMode: EXPLORE_MODE.CS_FETCH_CS_FILTERING, + explorerTitle: "Organisms", + getId: getOrganismId, + label: "Organisms", + list: { + columns: [ + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildTaxon, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, + width: "auto", + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildTaxonomyId, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXONOMY_ID, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, + width: { max: "0.5fr", min: "164px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildAssemblyCount, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.ASSEMBLY_COUNT, + id: BRC_DATA_CATALOG_CATEGORY_KEY.ASSEMBLY_COUNT, + width: { max: "0.5fr", min: "164px" }, + }, + { + componentConfig: { + component: C.NTagCell, + viewBuilder: V.buildTags, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAGS, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAGS, + width: { max: "0.5fr", min: "142px" }, + }, + ], + defaultSort: { + desc: SORT_DIRECTION.ASCENDING, + id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, + }, + } as ListConfig, + listView: { + disablePagination: true, + enableDownload: true, + enableTab: false, + }, + route: "organisms", + staticLoadFile: "files/out/organisms.json", +}; From 4541d15a4c57e101d707112364fe55e3544ec6ec Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Thu, 5 Dec 2024 00:36:40 -0800 Subject: [PATCH 07/19] fix: make `isRef` a string to avoid error when searching filters (#177) --- .../brc-analytics-catalog/common/entities.ts | 2 +- .../common/viewModelBuilders.ts | 2 +- files/build-catalog.ts | 4 +- files/out/genomes.json | 40 +++++++++---------- 4 files changed, 24 insertions(+), 24 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 7e713f5..1998a66 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -16,7 +16,7 @@ export interface BRCDataCatalogGenome { coverage: string | null; gcPercent: number; geneModelUrl: string | null; - isRef: boolean; + isRef: string; length: number; level: string; ncbiTaxonomyId: string; diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index b7f6e85..6968b98 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -135,7 +135,7 @@ export const buildIsRef = ( genome: BRCDataCatalogGenome ): ComponentProps => { return { - value: genome.isRef ? "Yes" : "No", + value: genome.isRef, }; }; diff --git a/files/build-catalog.ts b/files/build-catalog.ts index 6c881f2..ee6029e 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -106,6 +106,6 @@ function parseNumber(value: string): number { return n; } -function parseBoolean(value: string): boolean { - return value[0].toLowerCase() === "t"; +function parseBoolean(value: string): string { + return value[0].toLowerCase() === "t" ? "Yes" : "No"; } diff --git a/files/out/genomes.json b/files/out/genomes.json index b8c9c76..474a330 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -6,7 +6,7 @@ "coverage": null, "gcPercent": 42.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 27007701, "level": "Chromosome", "ncbiTaxonomyId": "5855", @@ -26,7 +26,7 @@ "coverage": null, "gcPercent": 46.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 26075494, "level": "Chromosome", "ncbiTaxonomyId": "185431", @@ -44,7 +44,7 @@ "coverage": null, "gcPercent": 59.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 32855089, "level": "Complete Genome", "ncbiTaxonomyId": "347515", @@ -62,7 +62,7 @@ "coverage": "100.0x", "gcPercent": 19.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 23292622, "level": "Complete Genome", "ncbiTaxonomyId": "36329", @@ -80,7 +80,7 @@ "coverage": null, "gcPercent": 58, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 32068771, "level": "Chromosome", "ncbiTaxonomyId": "420245", @@ -98,7 +98,7 @@ "coverage": "26.5x", "gcPercent": 52.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 65633124, "level": "Chromosome", "ncbiTaxonomyId": "508771", @@ -116,7 +116,7 @@ "coverage": null, "gcPercent": 46, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 28947925, "level": "Scaffold", "ncbiTaxonomyId": "246410", @@ -134,7 +134,7 @@ "coverage": null, "gcPercent": 65.5, "geneModelUrl": null, - "isRef": true, + "isRef": "Yes", "length": 4411532, "level": "Complete Genome", "ncbiTaxonomyId": "83332", @@ -152,7 +152,7 @@ "coverage": null, "gcPercent": 51.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 89937456, "level": "Scaffold", "ncbiTaxonomyId": "5693", @@ -172,7 +172,7 @@ "coverage": null, "gcPercent": 59.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 32444968, "level": "Chromosome", "ncbiTaxonomyId": "5661", @@ -192,7 +192,7 @@ "coverage": null, "gcPercent": 65.5, "geneModelUrl": null, - "isRef": false, + "isRef": "No", "length": 4411709, "level": "Complete Genome", "ncbiTaxonomyId": "83332", @@ -210,7 +210,7 @@ "coverage": null, "gcPercent": 33, "geneModelUrl": null, - "isRef": false, + "isRef": "No", "length": 196858, "level": "Complete Genome", "ncbiTaxonomyId": "10244", @@ -230,7 +230,7 @@ "coverage": null, "gcPercent": 38, "geneModelUrl": null, - "isRef": false, + "isRef": "No", "length": 29903, "level": "Complete Genome", "ncbiTaxonomyId": "2697049", @@ -250,7 +250,7 @@ "coverage": "250.0x", "gcPercent": 37, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 566339288, "level": "Chromosome", "ncbiTaxonomyId": "42434", @@ -268,7 +268,7 @@ "coverage": "475.0x", "gcPercent": 46.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 28193268, "level": "Complete Genome", "ncbiTaxonomyId": "443226", @@ -286,7 +286,7 @@ "coverage": "20.0x", "gcPercent": 65.5, "geneModelUrl": null, - "isRef": false, + "isRef": "No", "length": 4516435, "level": "Complete Genome", "ncbiTaxonomyId": "1773", @@ -306,7 +306,7 @@ "coverage": "100.0x", "gcPercent": 21.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 23043114, "level": "Complete Genome", "ncbiTaxonomyId": "5861", @@ -326,7 +326,7 @@ "coverage": "155.0x", "gcPercent": 23, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 18338688, "level": "Complete Genome", "ncbiTaxonomyId": "54757", @@ -344,7 +344,7 @@ "coverage": "54.0x", "gcPercent": 44.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/943/734/735/GCF_943734735.2/genes/GCF_943734735.2_idAnoGambNW_F1_1.ncbiRefSeq.gtf.gz", - "isRef": true, + "isRef": "Yes", "length": 264451381, "level": "Chromosome", "ncbiTaxonomyId": "7165", @@ -364,7 +364,7 @@ "coverage": "100.0x", "gcPercent": 65.5, "geneModelUrl": null, - "isRef": false, + "isRef": "No", "length": 4469156, "level": "Complete Genome", "ncbiTaxonomyId": "1773", From 841c25588a794f4799bc845a349e17192be76d3d Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:32:53 -0800 Subject: [PATCH 08/19] feat: fix build from ncbi and report on accession matches (#177) --- files/build-files-from-ncbi.py | 33 +++++++++++++++++++++++----- files/source/genomes-from-ncbi.tsv | 24 ++++++++++---------- files/source/organisms-from-ncbi.tsv | 6 ++--- 3 files changed, 44 insertions(+), 19 deletions(-) diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 0690d18..0c2c112 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -15,15 +15,21 @@ def build_taxonomy_request_body(taxa): return {"taxons": taxa, "children": False, "ranks": ["genus"]} -def get_organism_row(organism_taxonomy): +def get_organism_row(organism_info): + if len(organism_info.get("errors", [])) > 0: + raise Exception(organism_info) + + organism_taxonomy = organism_info["taxonomy"] + return { "taxon": organism_taxonomy["current_scientific_name"]["name"], - "taxonomyId": organism_taxonomy["tax_id"], + "taxonomyId": str(organism_taxonomy["tax_id"]), "assemblyCount": next(count["count"] for count in organism_taxonomy["counts"] if count["type"] == "COUNT_TYPE_ASSEMBLY"), } def get_organisms_df(taxa): - return pd.DataFrame([get_organism_row(organism_info["taxonomy"]) for organism_info in requests.post(TAXONOMY_URL, json=build_taxonomy_request_body(taxa)).json()["reports"]]) + organisms_info = requests.post(TAXONOMY_URL, json=build_taxonomy_request_body(taxa)).json()["reports"] + return pd.DataFrame([get_organism_row(organism_info) for organism_info in organisms_info]) def get_tax_ids(organisms_df): return list(organisms_df["taxonomyId"]) @@ -53,6 +59,22 @@ def get_genome_row(genome_info): def get_genomes_df(tax_ids): return pd.DataFrame(data=[get_genome_row(genome_info) for genome_info in requests.get(build_genomes_url(tax_ids)).json()["reports"]]) +def print_column_match_summary(from_df, in_df, from_column, in_column, important=True): + unmatched_values = from_df[from_column][~(from_df[from_column].isin(in_df[in_column]))] + message = ( + f"No values from {from_column} absent in {in_column}" if len(unmatched_values) == 0 + else f"{len(unmatched_values)} values from {from_column} absent in {in_column}: {", ".join(unmatched_values)}" + ) + if not important: + message = "(" + message + ")" + print(message) + +def print_accession_match_summaries(genomes_source_df, assemblies_df): + print_column_match_summary(genomes_source_df, assemblies_df, "pairedAccession", "genBank") + print_column_match_summary(genomes_source_df, assemblies_df, "pairedAccession", "refSeq", False) + print_column_match_summary(genomes_source_df, assemblies_df, "accession", "genBank", False) + print_column_match_summary(genomes_source_df, assemblies_df, "accession", "refSeq") + 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"] @@ -81,7 +103,6 @@ def _id_to_gene_model_url(asm_id): # No match, I guess that's OK ? return None - def add_gene_model_url(genomes_df: pd.DataFrame): return pd.concat([genomes_df, genomes_df["accession"].apply(_id_to_gene_model_url).rename("geneModelUrl")], axis="columns") @@ -90,7 +111,7 @@ def build_files(): taxa_df = pd.read_csv(TAXA_URL, keep_default_na=False) - organisms_source_df = get_organisms_df(list(taxa_df["Name"])) + organisms_source_df = get_organisms_df([taxon for taxon in taxa_df["Name"] if taxon]) organisms_df = organisms_source_df.merge(taxa_df[["TaxId", "CustomTags"]], how="left", left_on="taxonomyId", right_on="TaxId").drop(columns=["TaxId"]) @@ -104,6 +125,8 @@ def build_files(): gen_bank_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="pairedAccession", right_on="genBank") ref_seq_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="accession", right_on="refSeq") + print_accession_match_summaries(genomes_source_df, assemblies_df) + genomes_df = add_gene_model_url(gen_bank_merge_df.combine_first(ref_seq_merge_df)) genomes_df.to_csv(GENOMES_OUTPUT_PATH, index=False, sep="\t") diff --git a/files/source/genomes-from-ncbi.tsv b/files/source/genomes-from-ncbi.tsv index 79d5b1b..24926e2 100644 --- a/files/source/genomes-from-ncbi.tsv +++ b/files/source/genomes-from-ncbi.tsv @@ -1,21 +1,23 @@ taxon taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq geneModelUrl -Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 +Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 https://genome.ucsc.edu/h/GCF_000195955.2 GCA_000195955.2 GCF_000195955.2 Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.5 GCA_000002765.3 GCF_000002765.5 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz -Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz +Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.6 GCA_000002765.3 GCF_000002765.6 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz +Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 100.0x 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCA_018416015.2 GCA_018416015.2 GCF_018416015.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz -Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Complete Genome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz +Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCF_018416015.2 GCA_018416015.2 GCF_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz +Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Chromosome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz -Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz +Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 Full annotation GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz -Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz -Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz -Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz -Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz -Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 -Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 -Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 +Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://genome.ucsc.edu/h/GCF_016801865.2 GCA_016801865.2 GCF_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz +Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 Full annotation GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz +Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 1.0 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz +Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 1.0 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz +Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 +Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 20.0x 38.0 GCA_009858895.3 https://genome.ucsc.edu/h/GCF_009858895.2 GCA_009858895.3 GCF_009858895.2 +Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 100.0x 33.0 GCA_000857045.1 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 Mycobacterium tuberculosis 1773 GCF_030566675.1 False Complete Genome 1.0 4516435 1 4516435 1 20.0x 65.5 GCA_030566675.1 Mycobacterium tuberculosis 1773 GCF_963525475.1 False Complete Genome 1.0 4469156 1 4469156 1 100.0x 65.5 GCA_963525475.1 diff --git a/files/source/organisms-from-ncbi.tsv b/files/source/organisms-from-ncbi.tsv index 6686f92..499eae1 100644 --- a/files/source/organisms-from-ncbi.tsv +++ b/files/source/organisms-from-ncbi.tsv @@ -7,12 +7,12 @@ Leishmania braziliensis 5660 11 VEuPathDb Leishmania donovani 5661 12 VEuPathDb Leishmania major 5664 7 VEuPathDb Monkeypox virus 10244 6911 Virus -Mycobacterium tuberculosis 1773 7823 Bact +Mycobacterium tuberculosis 1773 7829 Bact Plasmodium falciparum 5833 67 VEuPathDb Plasmodium vinckei 5860 10 VEuPathDb Plasmodium vivax 5855 19 VEuPathDb Plasmodium yoelii 5861 15 VEuPathDb -Severe acute respiratory syndrome coronavirus 2 2697049 92 Virus +Severe acute respiratory syndrome coronavirus 2 2697049 12408 Virus Toxoplasma gondii 5811 29 VEuPathDb -Trypanosoma brucei 5691 5 VEuPathDb +Trypanosoma brucei 5691 6 VEuPathDb Trypanosoma cruzi 5693 44 VEuPathDb From c6996201b4f31b52dade77b84dca7cd00ab109cd Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Thu, 5 Dec 2024 15:33:07 -0800 Subject: [PATCH 09/19] feat: build catalog (#177) --- files/out/genomes.json | 62 +++++++++++++++++++++++++++++++--------- files/out/organisms.json | 6 ++-- 2 files changed, 52 insertions(+), 16 deletions(-) diff --git a/files/out/genomes.json b/files/out/genomes.json index 474a330..d7bec9c 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -41,7 +41,7 @@ "accession": "GCF_000002725.2", "annotationStatus": "Full annotation", "chromosomes": 36, - "coverage": null, + "coverage": "100.0x", "gcPercent": 59.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz", "isRef": "Yes", @@ -73,9 +73,27 @@ "taxon": "Plasmodium falciparum 3D7", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5" }, + { + "accession": "GCF_000002765.6", + "annotationStatus": "Full annotation", + "chromosomes": 14, + "coverage": "100.0x", + "gcPercent": 19.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 23292622, + "level": "Complete Genome", + "ncbiTaxonomyId": "36329", + "scaffoldCount": 14, + "scaffoldL50": 5, + "scaffoldN50": 1687656, + "tags": [], + "taxon": "Plasmodium falciparum 3D7", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.6" + }, { "accession": "GCF_000002845.2", - "annotationStatus": null, + "annotationStatus": "Full annotation", "chromosomes": 35, "coverage": null, "gcPercent": 58, @@ -93,7 +111,7 @@ }, { "accession": "GCF_000006565.2", - "annotationStatus": null, + "annotationStatus": "Full annotation", "chromosomes": 14, "coverage": "26.5x", "gcPercent": 52.5, @@ -112,7 +130,7 @@ { "accession": "GCF_000149335.2", "annotationStatus": "Full annotation", - "chromosomes": null, + "chromosomes": 1, "coverage": null, "gcPercent": 46, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz", @@ -143,12 +161,12 @@ "scaffoldN50": 4411532, "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000195955.2" }, { "accession": "GCF_000209065.1", "annotationStatus": "Full annotation", - "chromosomes": null, + "chromosomes": 1, "coverage": null, "gcPercent": 51.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz", @@ -201,13 +219,13 @@ "scaffoldN50": 4411709, "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000857045.1" }, { "accession": "GCF_000857045.1", "annotationStatus": null, "chromosomes": 1, - "coverage": null, + "coverage": "100.0x", "gcPercent": 33, "geneModelUrl": null, "isRef": "No", @@ -221,13 +239,13 @@ "Virus" ], "taxon": "Monkeypox virus", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000857045.1" }, { "accession": "GCF_009858895.2", "annotationStatus": null, "chromosomes": 1, - "coverage": null, + "coverage": "20.0x", "gcPercent": 38, "geneModelUrl": null, "isRef": "No", @@ -241,7 +259,7 @@ "Virus" ], "taxon": "Severe acute respiratory syndrome coronavirus 2", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009858895.2" }, { "accession": "GCF_016801865.2", @@ -259,7 +277,7 @@ "scaffoldN50": 186194774, "tags": [], "taxon": "Culex pipiens pallens", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016801865.2" }, { "accession": "GCF_018416015.2", @@ -279,6 +297,24 @@ "taxon": "Coccidioides posadasii str. Silveira", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2" }, + { + "accession": "GCF_018416015.2", + "annotationStatus": "Full annotation", + "chromosomes": 9, + "coverage": "475.0x", + "gcPercent": 46.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 28193268, + "level": "Complete Genome", + "ncbiTaxonomyId": "443226", + "scaffoldCount": 9, + "scaffoldL50": 2, + "scaffoldN50": 8079863, + "tags": [], + "taxon": "Coccidioides posadasii str. Silveira", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_018416015.2" + }, { "accession": "GCF_030566675.1", "annotationStatus": null, @@ -328,7 +364,7 @@ "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz", "isRef": "Yes", "length": 18338688, - "level": "Complete Genome", + "level": "Chromosome", "ncbiTaxonomyId": "54757", "scaffoldCount": 14, "scaffoldL50": 5, diff --git a/files/out/organisms.json b/files/out/organisms.json index 4ceb6ba..54db9de 100644 --- a/files/out/organisms.json +++ b/files/out/organisms.json @@ -8,7 +8,7 @@ "taxon": "Monkeypox virus" }, { - "assemblyCount": 7823, + "assemblyCount": 7829, "ncbiTaxonomyId": "1773", "tags": [ "Bact" @@ -24,7 +24,7 @@ "taxon": "Coccidioides posadasii" }, { - "assemblyCount": 92, + "assemblyCount": 12408, "ncbiTaxonomyId": "2697049", "tags": [ "Virus" @@ -62,7 +62,7 @@ "taxon": "Leishmania major" }, { - "assemblyCount": 5, + "assemblyCount": 6, "ncbiTaxonomyId": "5691", "tags": [ "VEuPathDb" From a1fc72c90c0aff06e5d4a21aae963cc76de112c1 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Thu, 5 Dec 2024 23:11:05 -0800 Subject: [PATCH 10/19] feat: match only `accession` with both `genBank` and `refSeq` (#177) --- files/build-files-from-ncbi.py | 22 +++---------- files/out/genomes.json | 52 +++++------------------------- files/source/genomes-from-ncbi.tsv | 18 +++++------ 3 files changed, 20 insertions(+), 72 deletions(-) diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 0c2c112..1b8da76 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -59,22 +59,6 @@ def get_genome_row(genome_info): def get_genomes_df(tax_ids): return pd.DataFrame(data=[get_genome_row(genome_info) for genome_info in requests.get(build_genomes_url(tax_ids)).json()["reports"]]) -def print_column_match_summary(from_df, in_df, from_column, in_column, important=True): - unmatched_values = from_df[from_column][~(from_df[from_column].isin(in_df[in_column]))] - message = ( - f"No values from {from_column} absent in {in_column}" if len(unmatched_values) == 0 - else f"{len(unmatched_values)} values from {from_column} absent in {in_column}: {", ".join(unmatched_values)}" - ) - if not important: - message = "(" + message + ")" - print(message) - -def print_accession_match_summaries(genomes_source_df, assemblies_df): - print_column_match_summary(genomes_source_df, assemblies_df, "pairedAccession", "genBank") - print_column_match_summary(genomes_source_df, assemblies_df, "pairedAccession", "refSeq", False) - print_column_match_summary(genomes_source_df, assemblies_df, "accession", "genBank", False) - print_column_match_summary(genomes_source_df, assemblies_df, "accession", "refSeq") - 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"] @@ -122,10 +106,12 @@ def build_files(): genomes_source_df = get_genomes_df(get_tax_ids(organisms_df)) assemblies_df = pd.DataFrame(requests.get(ASSEMBLIES_URL).json()["data"])[["ucscBrowser", "genBank", "refSeq"]] - gen_bank_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="pairedAccession", right_on="genBank") + gen_bank_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="accession", right_on="genBank") ref_seq_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="accession", right_on="refSeq") - print_accession_match_summaries(genomes_source_df, assemblies_df) + unmatched_accessions = genomes_source_df["accession"][~(genomes_source_df["accession"].isin(assemblies_df["genBank"]) | genomes_source_df["accession"].isin(assemblies_df["refSeq"]))] + if len(unmatched_accessions) > 0: + print(f"{len(unmatched_accessions)} accessions had no match in assembly list: {", ".join(unmatched_accessions)}") genomes_df = add_gene_model_url(gen_bank_merge_df.combine_first(ref_seq_merge_df)) diff --git a/files/out/genomes.json b/files/out/genomes.json index d7bec9c..be5dfaf 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -41,7 +41,7 @@ "accession": "GCF_000002725.2", "annotationStatus": "Full annotation", "chromosomes": 36, - "coverage": "100.0x", + "coverage": null, "gcPercent": 59.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz", "isRef": "Yes", @@ -55,24 +55,6 @@ "taxon": "Leishmania major strain Friedlin", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2" }, - { - "accession": "GCF_000002765.6", - "annotationStatus": "Full annotation", - "chromosomes": 14, - "coverage": "100.0x", - "gcPercent": 19.5, - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz", - "isRef": "Yes", - "length": 23292622, - "level": "Complete Genome", - "ncbiTaxonomyId": "36329", - "scaffoldCount": 14, - "scaffoldL50": 5, - "scaffoldN50": 1687656, - "tags": [], - "taxon": "Plasmodium falciparum 3D7", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.5" - }, { "accession": "GCF_000002765.6", "annotationStatus": "Full annotation", @@ -93,7 +75,7 @@ }, { "accession": "GCF_000002845.2", - "annotationStatus": "Full annotation", + "annotationStatus": null, "chromosomes": 35, "coverage": null, "gcPercent": 58, @@ -111,7 +93,7 @@ }, { "accession": "GCF_000006565.2", - "annotationStatus": "Full annotation", + "annotationStatus": null, "chromosomes": 14, "coverage": "26.5x", "gcPercent": 52.5, @@ -130,7 +112,7 @@ { "accession": "GCF_000149335.2", "annotationStatus": "Full annotation", - "chromosomes": 1, + "chromosomes": null, "coverage": null, "gcPercent": 46, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz", @@ -166,7 +148,7 @@ { "accession": "GCF_000209065.1", "annotationStatus": "Full annotation", - "chromosomes": 1, + "chromosomes": null, "coverage": null, "gcPercent": 51.5, "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz", @@ -219,13 +201,13 @@ "scaffoldN50": 4411709, "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000857045.1" + "ucscBrowserUrl": null }, { "accession": "GCF_000857045.1", "annotationStatus": null, "chromosomes": 1, - "coverage": "100.0x", + "coverage": null, "gcPercent": 33, "geneModelUrl": null, "isRef": "No", @@ -245,7 +227,7 @@ "accession": "GCF_009858895.2", "annotationStatus": null, "chromosomes": 1, - "coverage": "20.0x", + "coverage": null, "gcPercent": 38, "geneModelUrl": null, "isRef": "No", @@ -279,24 +261,6 @@ "taxon": "Culex pipiens pallens", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016801865.2" }, - { - "accession": "GCF_018416015.2", - "annotationStatus": "Full annotation", - "chromosomes": 9, - "coverage": "475.0x", - "gcPercent": 46.5, - "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz", - "isRef": "Yes", - "length": 28193268, - "level": "Complete Genome", - "ncbiTaxonomyId": "443226", - "scaffoldCount": 9, - "scaffoldL50": 2, - "scaffoldN50": 8079863, - "tags": [], - "taxon": "Coccidioides posadasii str. Silveira", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018416015.2" - }, { "accession": "GCF_018416015.2", "annotationStatus": "Full annotation", diff --git a/files/source/genomes-from-ncbi.tsv b/files/source/genomes-from-ncbi.tsv index 24926e2..a0f918b 100644 --- a/files/source/genomes-from-ncbi.tsv +++ b/files/source/genomes-from-ncbi.tsv @@ -1,23 +1,21 @@ taxon taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq geneModelUrl Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 https://genome.ucsc.edu/h/GCF_000195955.2 GCA_000195955.2 GCF_000195955.2 -Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.5 GCA_000002765.3 GCF_000002765.5 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.6 GCA_000002765.3 GCF_000002765.6 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz -Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 100.0x 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz +Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz -Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCA_018416015.2 GCA_018416015.2 GCF_018416015.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCF_018416015.2 GCA_018416015.2 GCF_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Chromosome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz -Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 Full annotation GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz +Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://genome.ucsc.edu/h/GCF_016801865.2 GCA_016801865.2 GCF_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz -Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 Full annotation GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz -Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 1.0 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz -Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 1.0 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz -Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 -Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 20.0x 38.0 GCA_009858895.3 https://genome.ucsc.edu/h/GCF_009858895.2 GCA_009858895.3 GCF_009858895.2 -Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 100.0x 33.0 GCA_000857045.1 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 +Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz +Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz +Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz +Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 +Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 https://genome.ucsc.edu/h/GCF_009858895.2 GCA_009858895.3 GCF_009858895.2 +Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 Mycobacterium tuberculosis 1773 GCF_030566675.1 False Complete Genome 1.0 4516435 1 4516435 1 20.0x 65.5 GCA_030566675.1 Mycobacterium tuberculosis 1773 GCF_963525475.1 False Complete Genome 1.0 4469156 1 4469156 1 100.0x 65.5 GCA_963525475.1 From 2a51095728a74709bb0147eec0a4eacd21f4f90f Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Fri, 6 Dec 2024 15:08:39 -0800 Subject: [PATCH 11/19] fix: "is ref" filter labels (#177) --- site-config/brc-analytics/local/index/genomeEntityConfig.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index 612e3be..27b0a9d 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -44,10 +44,6 @@ export const genomeEntityConfig: BRCEntityConfig = { { key: BRC_DATA_CATALOG_CATEGORY_KEY.IS_REF, label: BRC_DATA_CATALOG_CATEGORY_LABEL.IS_REF, - mapSelectCategoryValue: (value) => ({ - ...value, - label: value.label ? "Yes" : "No", - }), }, { key: BRC_DATA_CATALOG_CATEGORY_KEY.LEVEL, From 021f70ae54b8db6db0ff9ad4d608acafb77d7260 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Tue, 10 Dec 2024 23:49:29 -0800 Subject: [PATCH 12/19] chore: build catalog (#177) --- files/build-files-from-ncbi.py | 2 +- files/out/genomes.json | 158 +++++++++++++-------------- files/out/organisms.json | 56 +++++++--- files/source/genomes-from-ncbi.tsv | 10 +- files/source/organisms-from-ncbi.tsv | 30 ++--- 5 files changed, 139 insertions(+), 117 deletions(-) diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 1b8da76..3cb9562 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -95,7 +95,7 @@ def build_files(): taxa_df = pd.read_csv(TAXA_URL, keep_default_na=False) - organisms_source_df = get_organisms_df([taxon for taxon in taxa_df["Name"] if taxon]) + organisms_source_df = get_organisms_df([taxon.strip() for taxon in taxa_df["Name"] if taxon]) organisms_df = organisms_source_df.merge(taxa_df[["TaxId", "CustomTags"]], how="left", left_on="taxonomyId", right_on="TaxId").drop(columns=["TaxId"]) diff --git a/files/out/genomes.json b/files/out/genomes.json index be5dfaf..e8ab3b0 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -14,7 +14,7 @@ "scaffoldL50": 6, "scaffoldN50": 1678596, "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium vivax", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2" @@ -37,6 +37,24 @@ "taxon": "Trypanosoma brucei brucei TREU927", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2" }, + { + "accession": "GCF_000002655.1", + "annotationStatus": "Full annotation", + "chromosomes": 8, + "coverage": null, + "gcPercent": 50, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/655/GCF_000002655.1/genes/GCF_000002655.1_ASM265v1.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 29384958, + "level": "Chromosome", + "ncbiTaxonomyId": "330879", + "scaffoldCount": 8, + "scaffoldL50": 4, + "scaffoldN50": 3948441, + "tags": [], + "taxon": "Aspergillus fumigatus Af293", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1" + }, { "accession": "GCF_000002725.2", "annotationStatus": "Full annotation", @@ -109,6 +127,24 @@ "taxon": "Toxoplasma gondii ME49", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2" }, + { + "accession": "GCF_000091045.1", + "annotationStatus": "Full annotation", + "chromosomes": 14, + "coverage": null, + "gcPercent": 48.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/091/045/GCF_000091045.1/genes/GCF_000091045.1_ASM9104v1.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 19051922, + "level": "Chromosome", + "ncbiTaxonomyId": "214684", + "scaffoldCount": 14, + "scaffoldL50": 6, + "scaffoldN50": 1438950, + "tags": [], + "taxon": "Cryptococcus neoformans var. neoformans JEC21", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1" + }, { "accession": "GCF_000149335.2", "annotationStatus": "Full annotation", @@ -127,6 +163,24 @@ "taxon": "Coccidioides immitis RS", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2" }, + { + "accession": "GCF_000182965.3", + "annotationStatus": "Full annotation", + "chromosomes": 8, + "coverage": "700.0x", + "gcPercent": 33.5, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/965/GCF_000182965.3/genes/GCF_000182965.3_ASM18296v3.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 14282666, + "level": "Chromosome", + "ncbiTaxonomyId": "237561", + "scaffoldCount": 8, + "scaffoldL50": 3, + "scaffoldN50": 2231883, + "tags": [], + "taxon": "Candida albicans SC5314", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3" + }, { "accession": "GCF_000195955.2", "annotationStatus": null, @@ -160,7 +214,7 @@ "scaffoldL50": 212, "scaffoldN50": 88624, "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Trypanosoma cruzi", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1" @@ -180,7 +234,7 @@ "scaffoldL50": 11, "scaffoldN50": 1024085, "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Leishmania donovani", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1" @@ -201,47 +255,27 @@ "scaffoldN50": 4411709, "tags": [], "taxon": "Mycobacterium tuberculosis H37Rv", - "ucscBrowserUrl": null + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277735.2" }, { - "accession": "GCF_000857045.1", - "annotationStatus": null, - "chromosomes": 1, - "coverage": null, - "gcPercent": 33, - "geneModelUrl": null, - "isRef": "No", - "length": 196858, - "level": "Complete Genome", - "ncbiTaxonomyId": "10244", - "scaffoldCount": 1, - "scaffoldL50": 1, - "scaffoldN50": 196858, - "tags": [ - "Virus" - ], - "taxon": "Monkeypox virus", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000857045.1" - }, - { - "accession": "GCF_009858895.2", - "annotationStatus": null, - "chromosomes": 1, - "coverage": null, - "gcPercent": 38, - "geneModelUrl": null, - "isRef": "No", - "length": 29903, - "level": "Complete Genome", - "ncbiTaxonomyId": "2697049", - "scaffoldCount": 1, - "scaffoldL50": 1, - "scaffoldN50": 29903, + "accession": "GCF_015732765.1", + "annotationStatus": "Full annotation", + "chromosomes": 3, + "coverage": "76.0x", + "gcPercent": 37, + "geneModelUrl": "https://hgdownload.soe.ucsc.edu/hubs/GCF/015/732/765/GCF_015732765.1/genes/GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal.ncbiRefSeq.gtf.gz", + "isRef": "Yes", + "length": 573214445, + "level": "Chromosome", + "ncbiTaxonomyId": "7176", + "scaffoldCount": 56, + "scaffoldL50": 2, + "scaffoldN50": 201550677, "tags": [ - "Virus" + "VEuPathDB" ], - "taxon": "Severe acute respiratory syndrome coronavirus 2", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009858895.2" + "taxon": "Culex quinquefasciatus", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015732765.1" }, { "accession": "GCF_016801865.2", @@ -279,26 +313,6 @@ "taxon": "Coccidioides posadasii str. Silveira", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_018416015.2" }, - { - "accession": "GCF_030566675.1", - "annotationStatus": null, - "chromosomes": 1, - "coverage": "20.0x", - "gcPercent": 65.5, - "geneModelUrl": null, - "isRef": "No", - "length": 4516435, - "level": "Complete Genome", - "ncbiTaxonomyId": "1773", - "scaffoldCount": 1, - "scaffoldL50": 1, - "scaffoldN50": 4516435, - "tags": [ - "Bact" - ], - "taxon": "Mycobacterium tuberculosis", - "ucscBrowserUrl": null - }, { "accession": "GCF_900002385.2", "annotationStatus": "Full annotation", @@ -314,7 +328,7 @@ "scaffoldL50": 5, "scaffoldN50": 2046250, "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium yoelii", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2" @@ -352,29 +366,9 @@ "scaffoldL50": 2, "scaffoldN50": 99149756, "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Anopheles gambiae", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2" - }, - { - "accession": "GCF_963525475.1", - "annotationStatus": null, - "chromosomes": 1, - "coverage": "100.0x", - "gcPercent": 65.5, - "geneModelUrl": null, - "isRef": "No", - "length": 4469156, - "level": "Complete Genome", - "ncbiTaxonomyId": "1773", - "scaffoldCount": 1, - "scaffoldL50": 1, - "scaffoldN50": 4469156, - "tags": [ - "Bact" - ], - "taxon": "Mycobacterium tuberculosis", - "ucscBrowserUrl": null } ] diff --git a/files/out/organisms.json b/files/out/organisms.json index 54db9de..1bf4697 100644 --- a/files/out/organisms.json +++ b/files/out/organisms.json @@ -19,7 +19,7 @@ "assemblyCount": 13, "ncbiTaxonomyId": "199306", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Coccidioides posadasii" }, @@ -31,6 +31,24 @@ ], "taxon": "Severe acute respiratory syndrome coronavirus 2" }, + { + "assemblyCount": 1, + "ncbiTaxonomyId": "42434", + "tags": [], + "taxon": "Culex pipiens pallens" + }, + { + "assemblyCount": 183, + "ncbiTaxonomyId": "5207", + "tags": [], + "taxon": "Cryptococcus neoformans" + }, + { + "assemblyCount": 117, + "ncbiTaxonomyId": "5476", + "tags": [], + "taxon": "Candida albicans" + }, { "assemblyCount": 5, "ncbiTaxonomyId": "5501", @@ -41,7 +59,7 @@ "assemblyCount": 11, "ncbiTaxonomyId": "5660", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Leishmania braziliensis" }, @@ -49,7 +67,7 @@ "assemblyCount": 12, "ncbiTaxonomyId": "5661", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Leishmania donovani" }, @@ -57,7 +75,7 @@ "assemblyCount": 7, "ncbiTaxonomyId": "5664", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Leishmania major" }, @@ -65,7 +83,7 @@ "assemblyCount": 6, "ncbiTaxonomyId": "5691", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Trypanosoma brucei" }, @@ -73,7 +91,7 @@ "assemblyCount": 44, "ncbiTaxonomyId": "5693", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Trypanosoma cruzi" }, @@ -81,7 +99,7 @@ "assemblyCount": 29, "ncbiTaxonomyId": "5811", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Toxoplasma gondii" }, @@ -89,7 +107,7 @@ "assemblyCount": 67, "ncbiTaxonomyId": "5833", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium falciparum" }, @@ -97,7 +115,7 @@ "assemblyCount": 19, "ncbiTaxonomyId": "5855", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium vivax" }, @@ -105,7 +123,7 @@ "assemblyCount": 10, "ncbiTaxonomyId": "5860", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium vinckei" }, @@ -113,7 +131,7 @@ "assemblyCount": 15, "ncbiTaxonomyId": "5861", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Plasmodium yoelii" }, @@ -121,16 +139,22 @@ "assemblyCount": 7, "ncbiTaxonomyId": "7165", "tags": [ - "VEuPathDb" + "VEuPathDB" ], "taxon": "Anopheles gambiae" }, { - "assemblyCount": 5, - "ncbiTaxonomyId": "7175", + "assemblyCount": 3, + "ncbiTaxonomyId": "7176", "tags": [ - "VEuPathDb" + "VEuPathDB" ], - "taxon": "Culex pipiens" + "taxon": "Culex quinquefasciatus" + }, + { + "assemblyCount": 352, + "ncbiTaxonomyId": "746128", + "tags": [], + "taxon": "Aspergillus fumigatus" } ] diff --git a/files/source/genomes-from-ncbi.tsv b/files/source/genomes-from-ncbi.tsv index a0f918b..468f878 100644 --- a/files/source/genomes-from-ncbi.tsv +++ b/files/source/genomes-from-ncbi.tsv @@ -5,17 +5,17 @@ Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36. Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCF_018416015.2 GCA_018416015.2 GCF_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Chromosome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz +Candida albicans SC5314 237561 GCF_000182965.3 True Chromosome 8.0 14282666 8 2231883 3 700.0x 33.5 Full annotation GCA_000182965.3 https://genome.ucsc.edu/h/GCF_000182965.3 GCA_000182965.3 GCF_000182965.3 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/965/GCF_000182965.3/genes/GCF_000182965.3_ASM18296v3.ncbiRefSeq.gtf.gz +Cryptococcus neoformans var. neoformans JEC21 214684 GCF_000091045.1 True Chromosome 14.0 19051922 14 1438950 6 48.5 Full annotation GCA_000091045.1 https://genome.ucsc.edu/h/GCF_000091045.1 GCA_000091045.1 GCF_000091045.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/091/045/GCF_000091045.1/genes/GCF_000091045.1_ASM9104v1.ncbiRefSeq.gtf.gz Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz +Aspergillus fumigatus Af293 330879 GCF_000002655.1 True Chromosome 8.0 29384958 8 3948441 4 50.0 Full annotation GCA_000002655.1 https://genome.ucsc.edu/h/GCF_000002655.1 GCA_000002655.1 GCF_000002655.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/655/GCF_000002655.1/genes/GCF_000002655.1_ASM265v1.ncbiRefSeq.gtf.gz Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz +Culex quinquefasciatus 7176 GCF_015732765.1 True Chromosome 3.0 573214445 56 201550677 2 76.0x 37.0 Full annotation GCA_015732765.1 https://genome.ucsc.edu/h/GCF_015732765.1 GCA_015732765.1 GCF_015732765.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/015/732/765/GCF_015732765.1/genes/GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal.ncbiRefSeq.gtf.gz Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://genome.ucsc.edu/h/GCF_016801865.2 GCA_016801865.2 GCF_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz -Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 -Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 https://genome.ucsc.edu/h/GCF_009858895.2 GCA_009858895.3 GCF_009858895.2 -Monkeypox virus 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 -Mycobacterium tuberculosis 1773 GCF_030566675.1 False Complete Genome 1.0 4516435 1 4516435 1 20.0x 65.5 GCA_030566675.1 -Mycobacterium tuberculosis 1773 GCF_963525475.1 False Complete Genome 1.0 4469156 1 4469156 1 100.0x 65.5 GCA_963525475.1 +Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 https://genome.ucsc.edu/h/GCF_000277735.2 GCA_000277735.2 GCF_000277735.2 diff --git a/files/source/organisms-from-ncbi.tsv b/files/source/organisms-from-ncbi.tsv index 499eae1..eb42060 100644 --- a/files/source/organisms-from-ncbi.tsv +++ b/files/source/organisms-from-ncbi.tsv @@ -1,18 +1,22 @@ taxon taxonomyId assemblyCount CustomTags -Anopheles gambiae 7165 7 VEuPathDb +Anopheles gambiae 7165 7 VEuPathDB +Aspergillus fumigatus 746128 352 +Candida albicans 5476 117 Coccidioides immitis 5501 5 -Coccidioides posadasii 199306 13 VEuPathDb -Culex pipiens 7175 5 VEuPathDb -Leishmania braziliensis 5660 11 VEuPathDb -Leishmania donovani 5661 12 VEuPathDb -Leishmania major 5664 7 VEuPathDb +Coccidioides posadasii 199306 13 VEuPathDB +Cryptococcus neoformans 5207 183 +Culex pipiens pallens 42434 1 +Culex quinquefasciatus 7176 3 VEuPathDB +Leishmania braziliensis 5660 11 VEuPathDB +Leishmania donovani 5661 12 VEuPathDB +Leishmania major 5664 7 VEuPathDB Monkeypox virus 10244 6911 Virus Mycobacterium tuberculosis 1773 7829 Bact -Plasmodium falciparum 5833 67 VEuPathDb -Plasmodium vinckei 5860 10 VEuPathDb -Plasmodium vivax 5855 19 VEuPathDb -Plasmodium yoelii 5861 15 VEuPathDb +Plasmodium falciparum 5833 67 VEuPathDB +Plasmodium vinckei 5860 10 VEuPathDB +Plasmodium vivax 5855 19 VEuPathDB +Plasmodium yoelii 5861 15 VEuPathDB Severe acute respiratory syndrome coronavirus 2 2697049 12408 Virus -Toxoplasma gondii 5811 29 VEuPathDb -Trypanosoma brucei 5691 6 VEuPathDb -Trypanosoma cruzi 5693 44 VEuPathDb +Toxoplasma gondii 5811 29 VEuPathDB +Trypanosoma brucei 5691 6 VEuPathDB +Trypanosoma cruzi 5693 44 VEuPathDB From fb0ccf1cb0c64b698721df835b92b0500ded5cd9 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:32:58 -0800 Subject: [PATCH 13/19] feat: make genome taxa the same as organism taxa and add strain field (#177) --- .../brc-analytics-catalog/common/entities.ts | 1 + files/build-catalog.ts | 1 + files/build-files-from-ncbi.py | 26 ++-- files/entities.ts | 1 + files/out/genomes.json | 115 +++++++++++++----- files/source/genomes-from-ncbi.tsv | 43 +++---- files/source/organisms-from-ncbi.tsv | 44 +++---- 7 files changed, 150 insertions(+), 81 deletions(-) diff --git a/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/app/apis/catalog/brc-analytics-catalog/common/entities.ts index 1998a66..fb529c2 100644 --- a/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -23,6 +23,7 @@ export interface BRCDataCatalogGenome { scaffoldCount: number; scaffoldL50: number; scaffoldN50: number; + strain: string | null; tags: string[]; taxon: string; ucscBrowserUrl: string | null; diff --git a/files/build-catalog.ts b/files/build-catalog.ts index ee6029e..e3f7b88 100644 --- a/files/build-catalog.ts +++ b/files/build-catalog.ts @@ -65,6 +65,7 @@ async function buildGenomes( scaffoldCount: parseNumber(row.scaffoldCount), scaffoldL50: parseNumber(row.scaffoldL50), scaffoldN50: parseNumber(row.scaffoldN50), + strain: parseStringOrNull(row.strain), tags: organismsByTaxon.get(row.taxon)?.tags ?? [], taxon: row.taxon, ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 3cb9562..190f188 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -15,7 +15,7 @@ def build_taxonomy_request_body(taxa): return {"taxons": taxa, "children": False, "ranks": ["genus"]} -def get_organism_row(organism_info): +def get_organism_row(organism_info, accession): if len(organism_info.get("errors", [])) > 0: raise Exception(organism_info) @@ -25,11 +25,12 @@ def get_organism_row(organism_info): "taxon": organism_taxonomy["current_scientific_name"]["name"], "taxonomyId": str(organism_taxonomy["tax_id"]), "assemblyCount": next(count["count"] for count in organism_taxonomy["counts"] if count["type"] == "COUNT_TYPE_ASSEMBLY"), + "accession": accession, } -def get_organisms_df(taxa): - organisms_info = requests.post(TAXONOMY_URL, json=build_taxonomy_request_body(taxa)).json()["reports"] - return pd.DataFrame([get_organism_row(organism_info) for organism_info in organisms_info]) +def get_organisms_df(taxa_with_accessions): + organisms_info_with_accessions = [(organism_info, accession) for taxon, accession in taxa_with_accessions for organism_info in requests.post(TAXONOMY_URL, json=build_taxonomy_request_body([taxon])).json()["reports"]] + return pd.DataFrame([get_organism_row(organism_info, accession) for organism_info, accession in organisms_info_with_accessions]) def get_tax_ids(organisms_df): return list(organisms_df["taxonomyId"]) @@ -37,10 +38,11 @@ def get_tax_ids(organisms_df): def build_genomes_url(tax_ids): return f"https://api.ncbi.nlm.nih.gov/datasets/v2/genome/taxon/{urllib.parse.quote(",".join([str(id) for id in tax_ids]))}/dataset_report?filters.assembly_source=refseq&filters.has_annotation=true&filters.exclude_paired_reports=true&filters.exclude_atypical=true&filters.assembly_level=scaffold&filters.assembly_level=chromosome&filters.assembly_level=complete_genome" -def get_genome_row(genome_info): +def get_genome_row(genome_info, taxon): refseq_category = genome_info["assembly_info"].get("refseq_category") return { - "taxon": genome_info["organism"]["organism_name"], + "taxon": taxon, + "strain": genome_info["organism"].get("infraspecific_names", {}).get("strain", ""), "taxonomyId": genome_info["organism"]["tax_id"], "accession": genome_info["accession"], "isRef": refseq_category == "reference genome", @@ -56,8 +58,12 @@ def get_genome_row(genome_info): "pairedAccession": genome_info["paired_accession"], } -def get_genomes_df(tax_ids): - return pd.DataFrame(data=[get_genome_row(genome_info) for genome_info in requests.get(build_genomes_url(tax_ids)).json()["reports"]]) +def get_organism_genomes(tax_id, accession): + return [genome_info for genome_info in requests.get(build_genomes_url([tax_id])).json()["reports"] if genome_info["accession"] == accession] + +def get_genomes_df(organism_ids): + genomes_info_with_organisms = [(genome_info, taxon) for tax_id, taxon, accession in organism_ids for genome_info in get_organism_genomes(tax_id, accession)] + return pd.DataFrame(data=[get_genome_row(*info) for info in genomes_info_with_organisms]) def _id_to_gene_model_url(asm_id): hubs_url = "https://hgdownload.soe.ucsc.edu/hubs/" @@ -95,7 +101,7 @@ def build_files(): taxa_df = pd.read_csv(TAXA_URL, keep_default_na=False) - organisms_source_df = get_organisms_df([taxon.strip() for taxon in taxa_df["Name"] if taxon]) + organisms_source_df = get_organisms_df([(taxon.strip(), accession.strip()) for taxon, accession in zip(taxa_df["Name"], taxa_df["RefSeq Accession"]) if taxon]) organisms_df = organisms_source_df.merge(taxa_df[["TaxId", "CustomTags"]], how="left", left_on="taxonomyId", right_on="TaxId").drop(columns=["TaxId"]) @@ -103,7 +109,7 @@ def build_files(): print(f"Wrote to {ORGANISMS_OUTPUT_PATH}") - genomes_source_df = get_genomes_df(get_tax_ids(organisms_df)) + genomes_source_df = get_genomes_df(zip(organisms_df["taxonomyId"], organisms_df["taxon"], organisms_df["accession"])) assemblies_df = pd.DataFrame(requests.get(ASSEMBLIES_URL).json()["data"])[["ucscBrowser", "genBank", "refSeq"]] gen_bank_merge_df = genomes_source_df.merge(assemblies_df, how="left", left_on="accession", right_on="genBank") diff --git a/files/entities.ts b/files/entities.ts index 40c1774..a96f44f 100644 --- a/files/entities.ts +++ b/files/entities.ts @@ -11,6 +11,7 @@ export interface SourceGenome { scaffoldCount: string; scaffoldL50: string; scaffoldN50: string; + strain: string; taxon: string; taxonomyId: string; ucscBrowser: string; diff --git a/files/out/genomes.json b/files/out/genomes.json index e8ab3b0..7fe173d 100644 --- a/files/out/genomes.json +++ b/files/out/genomes.json @@ -13,6 +13,7 @@ "scaffoldCount": 2747, "scaffoldL50": 6, "scaffoldN50": 1678596, + "strain": "Salvador I", "tags": [ "VEuPathDB" ], @@ -33,8 +34,11 @@ "scaffoldCount": 12, "scaffoldL50": 4, "scaffoldN50": 2481190, - "tags": [], - "taxon": "Trypanosoma brucei brucei TREU927", + "strain": null, + "tags": [ + "VEuPathDB" + ], + "taxon": "Trypanosoma brucei", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2" }, { @@ -51,8 +55,9 @@ "scaffoldCount": 8, "scaffoldL50": 4, "scaffoldN50": 3948441, + "strain": "Af293", "tags": [], - "taxon": "Aspergillus fumigatus Af293", + "taxon": "Aspergillus fumigatus", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1" }, { @@ -69,8 +74,11 @@ "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1091540, - "tags": [], - "taxon": "Leishmania major strain Friedlin", + "strain": "Friedlin", + "tags": [ + "VEuPathDB" + ], + "taxon": "Leishmania major", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2" }, { @@ -87,8 +95,11 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1687656, - "tags": [], - "taxon": "Plasmodium falciparum 3D7", + "strain": null, + "tags": [ + "VEuPathDB" + ], + "taxon": "Plasmodium falciparum", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002765.6" }, { @@ -105,8 +116,11 @@ "scaffoldCount": 138, "scaffoldL50": 11, "scaffoldN50": 992961, - "tags": [], - "taxon": "Leishmania braziliensis MHOM/BR/75/M2904", + "strain": "MHOM/BR/75/M2904", + "tags": [ + "VEuPathDB" + ], + "taxon": "Leishmania braziliensis", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2" }, { @@ -123,8 +137,11 @@ "scaffoldCount": 2276, "scaffoldL50": 6, "scaffoldN50": 4973582, - "tags": [], - "taxon": "Toxoplasma gondii ME49", + "strain": "ME49", + "tags": [ + "VEuPathDB" + ], + "taxon": "Toxoplasma gondii", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2" }, { @@ -141,8 +158,9 @@ "scaffoldCount": 14, "scaffoldL50": 6, "scaffoldN50": 1438950, + "strain": "JEC21", "tags": [], - "taxon": "Cryptococcus neoformans var. neoformans JEC21", + "taxon": "Cryptococcus neoformans", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1" }, { @@ -159,8 +177,9 @@ "scaffoldCount": 6, "scaffoldL50": 3, "scaffoldN50": 4323945, + "strain": "RS", "tags": [], - "taxon": "Coccidioides immitis RS", + "taxon": "Coccidioides immitis", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2" }, { @@ -177,8 +196,9 @@ "scaffoldCount": 8, "scaffoldL50": 3, "scaffoldN50": 2231883, + "strain": "SC5314", "tags": [], - "taxon": "Candida albicans SC5314", + "taxon": "Candida albicans", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3" }, { @@ -195,8 +215,11 @@ "scaffoldCount": 1, "scaffoldL50": 1, "scaffoldN50": 4411532, - "tags": [], - "taxon": "Mycobacterium tuberculosis H37Rv", + "strain": "H37Rv", + "tags": [ + "Bact" + ], + "taxon": "Mycobacterium tuberculosis", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000195955.2" }, { @@ -213,6 +236,7 @@ "scaffoldCount": 29495, "scaffoldL50": 212, "scaffoldN50": 88624, + "strain": "CL Brener", "tags": [ "VEuPathDB" ], @@ -233,6 +257,7 @@ "scaffoldCount": 36, "scaffoldL50": 11, "scaffoldN50": 1024085, + "strain": "BPK282A1", "tags": [ "VEuPathDB" ], @@ -240,22 +265,46 @@ "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1" }, { - "accession": "GCF_000277735.2", + "accession": "GCF_000857045.1", "annotationStatus": null, "chromosomes": 1, "coverage": null, - "gcPercent": 65.5, + "gcPercent": 33, "geneModelUrl": null, "isRef": "No", - "length": 4411709, + "length": 196858, "level": "Complete Genome", - "ncbiTaxonomyId": "83332", + "ncbiTaxonomyId": "10244", "scaffoldCount": 1, "scaffoldL50": 1, - "scaffoldN50": 4411709, - "tags": [], - "taxon": "Mycobacterium tuberculosis H37Rv", - "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277735.2" + "scaffoldN50": 196858, + "strain": "Zaire-96-I-16", + "tags": [ + "Virus" + ], + "taxon": "Monkeypox virus", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000857045.1" + }, + { + "accession": "GCF_009858895.2", + "annotationStatus": null, + "chromosomes": 1, + "coverage": null, + "gcPercent": 38, + "geneModelUrl": null, + "isRef": "No", + "length": 29903, + "level": "Complete Genome", + "ncbiTaxonomyId": "2697049", + "scaffoldCount": 1, + "scaffoldL50": 1, + "scaffoldN50": 29903, + "strain": null, + "tags": [ + "Virus" + ], + "taxon": "Severe acute respiratory syndrome coronavirus 2", + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009858895.2" }, { "accession": "GCF_015732765.1", @@ -271,6 +320,7 @@ "scaffoldCount": 56, "scaffoldL50": 2, "scaffoldN50": 201550677, + "strain": "JHB", "tags": [ "VEuPathDB" ], @@ -291,6 +341,7 @@ "scaffoldCount": 289, "scaffoldL50": 2, "scaffoldN50": 186194774, + "strain": null, "tags": [], "taxon": "Culex pipiens pallens", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016801865.2" @@ -309,8 +360,11 @@ "scaffoldCount": 9, "scaffoldL50": 2, "scaffoldN50": 8079863, - "tags": [], - "taxon": "Coccidioides posadasii str. Silveira", + "strain": "Silveira", + "tags": [ + "VEuPathDB" + ], + "taxon": "Coccidioides posadasii", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_018416015.2" }, { @@ -327,6 +381,7 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 2046250, + "strain": "17X", "tags": [ "VEuPathDB" ], @@ -347,8 +402,11 @@ "scaffoldCount": 14, "scaffoldL50": 5, "scaffoldN50": 1692345, - "tags": [], - "taxon": "Plasmodium vinckei vinckei", + "strain": null, + "tags": [ + "VEuPathDB" + ], + "taxon": "Plasmodium vinckei", "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1" }, { @@ -365,6 +423,7 @@ "scaffoldCount": 190, "scaffoldL50": 2, "scaffoldN50": 99149756, + "strain": null, "tags": [ "VEuPathDB" ], diff --git a/files/source/genomes-from-ncbi.tsv b/files/source/genomes-from-ncbi.tsv index 468f878..5b137dc 100644 --- a/files/source/genomes-from-ncbi.tsv +++ b/files/source/genomes-from-ncbi.tsv @@ -1,21 +1,22 @@ -taxon taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq geneModelUrl -Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 https://genome.ucsc.edu/h/GCF_000195955.2 GCA_000195955.2 GCF_000195955.2 -Plasmodium falciparum 3D7 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.6 GCA_000002765.3 GCF_000002765.6 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz -Leishmania major strain Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz -Plasmodium yoelii 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz -Coccidioides posadasii str. Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCF_018416015.2 GCA_018416015.2 GCF_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz -Plasmodium vinckei vinckei 54757 GCF_900681995.1 True Chromosome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz -Candida albicans SC5314 237561 GCF_000182965.3 True Chromosome 8.0 14282666 8 2231883 3 700.0x 33.5 Full annotation GCA_000182965.3 https://genome.ucsc.edu/h/GCF_000182965.3 GCA_000182965.3 GCF_000182965.3 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/965/GCF_000182965.3/genes/GCF_000182965.3_ASM18296v3.ncbiRefSeq.gtf.gz -Cryptococcus neoformans var. neoformans JEC21 214684 GCF_000091045.1 True Chromosome 14.0 19051922 14 1438950 6 48.5 Full annotation GCA_000091045.1 https://genome.ucsc.edu/h/GCF_000091045.1 GCA_000091045.1 GCF_000091045.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/091/045/GCF_000091045.1/genes/GCF_000091045.1_ASM9104v1.ncbiRefSeq.gtf.gz -Leishmania donovani 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz -Aspergillus fumigatus Af293 330879 GCF_000002655.1 True Chromosome 8.0 29384958 8 3948441 4 50.0 Full annotation GCA_000002655.1 https://genome.ucsc.edu/h/GCF_000002655.1 GCA_000002655.1 GCF_000002655.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/655/GCF_000002655.1/genes/GCF_000002655.1_ASM265v1.ncbiRefSeq.gtf.gz -Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz -Trypanosoma brucei brucei TREU927 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz -Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 -Plasmodium vivax 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz -Culex quinquefasciatus 7176 GCF_015732765.1 True Chromosome 3.0 573214445 56 201550677 2 76.0x 37.0 Full annotation GCA_015732765.1 https://genome.ucsc.edu/h/GCF_015732765.1 GCA_015732765.1 GCF_015732765.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/015/732/765/GCF_015732765.1/genes/GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal.ncbiRefSeq.gtf.gz -Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://genome.ucsc.edu/h/GCF_016801865.2 GCA_016801865.2 GCF_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz -Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz -Trypanosoma cruzi 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz -Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz -Mycobacterium tuberculosis H37Rv 83332 GCF_000277735.2 False Complete Genome 1.0 4411709 1 4411709 1 65.5 GCA_000277735.2 https://genome.ucsc.edu/h/GCF_000277735.2 GCA_000277735.2 GCF_000277735.2 +taxon strain taxonomyId accession isRef level chromosomeCount length scaffoldCount scaffoldN50 scaffoldL50 coverage gcPercent annotationStatus pairedAccession ucscBrowser genBank refSeq geneModelUrl +Plasmodium falciparum 36329 GCF_000002765.6 True Complete Genome 14.0 23292622 14 1687656 5 100.0x 19.5 Full annotation GCA_000002765.3 https://genome.ucsc.edu/h/GCF_000002765.6 GCA_000002765.3 GCF_000002765.6 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/765/GCF_000002765.6/genes/GCF_000002765.6_GCA_000002765.ncbiRefSeq.gtf.gz +Plasmodium vivax Salvador I 5855 GCF_000002415.2 True Chromosome 14.0 27007701 2747 1678596 6 42.5 Full annotation GCA_000002415.2 https://genome.ucsc.edu/h/GCF_000002415.2 GCA_000002415.2 GCF_000002415.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/415/GCF_000002415.2/genes/GCF_000002415.2_ASM241v2.ncbiRefSeq.gtf.gz +Plasmodium yoelii 17X 5861 GCF_900002385.2 True Complete Genome 14.0 23043114 14 2046250 5 100.0x 21.5 Full annotation GCA_900002385.2 https://genome.ucsc.edu/h/GCF_900002385.2 GCA_900002385.2 GCF_900002385.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/002/385/GCF_900002385.2/genes/GCF_900002385.2_GCA_900002385.ncbiRefSeq.gtf.gz +Plasmodium vinckei 54757 GCF_900681995.1 True Chromosome 14.0 18338688 14 1692345 5 155.0x 23.0 Full annotation GCA_900681995.1 https://genome.ucsc.edu/h/GCF_900681995.1 GCA_900681995.1 GCF_900681995.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/900/681/995/GCF_900681995.1/genes/GCF_900681995.1_PVVCY_v1.ncbiRefSeq.gtf.gz +Culex pipiens pallens 42434 GCF_016801865.2 True Chromosome 3.0 566339288 289 186194774 2 250.0x 37.0 Full annotation GCA_016801865.2 https://genome.ucsc.edu/h/GCF_016801865.2 GCA_016801865.2 GCF_016801865.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/016/801/865/GCF_016801865.2/genes/GCF_016801865.2_TS_CPP_V2.ncbiRefSeq.gtf.gz +Culex quinquefasciatus JHB 7176 GCF_015732765.1 True Chromosome 3.0 573214445 56 201550677 2 76.0x 37.0 Full annotation GCA_015732765.1 https://genome.ucsc.edu/h/GCF_015732765.1 GCA_015732765.1 GCF_015732765.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/015/732/765/GCF_015732765.1/genes/GCF_015732765.1_VPISU_Cqui_1.0_pri_paternal.ncbiRefSeq.gtf.gz +Anopheles gambiae 7165 GCF_943734735.2 True Chromosome 3.0 264451381 190 99149756 2 54.0x 44.5 Full annotation GCA_943734735.2 https://genome.ucsc.edu/h/GCF_943734735.2 GCA_943734735.2 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 +Toxoplasma gondii ME49 508771 GCF_000006565.2 True Chromosome 14.0 65633124 2276 4973582 6 26.5x 52.5 GCA_000006565.2 https://genome.ucsc.edu/h/GCF_000006565.2 GCA_000006565.2 GCF_000006565.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/006/565/GCF_000006565.2/genes/GCF_000006565.2_TGA4.ncbiRefSeq.gtf.gz +Mycobacterium tuberculosis H37Rv 83332 GCF_000195955.2 True Complete Genome 1.0 4411532 1 4411532 1 65.5 GCA_000195955.2 https://genome.ucsc.edu/h/GCF_000195955.2 GCA_000195955.2 GCF_000195955.2 +Coccidioides posadasii Silveira 443226 GCF_018416015.2 True Complete Genome 9.0 28193268 9 8079863 2 475.0x 46.5 Full annotation GCA_018416015.2 https://genome.ucsc.edu/h/GCF_018416015.2 GCA_018416015.2 GCF_018416015.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/018/416/015/GCF_018416015.2/genes/GCF_018416015.2_ASM1841601v2.ncbiRefSeq.gtf.gz +Coccidioides immitis RS 246410 GCF_000149335.2 True Scaffold 28947925 6 4323945 3 46.0 Full annotation GCA_000149335.2 https://genome.ucsc.edu/h/GCF_000149335.2 GCA_000149335.2 GCF_000149335.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/149/335/GCF_000149335.2/genes/GCF_000149335.2_ASM14933v2.ncbiRefSeq.gtf.gz +Trypanosoma cruzi CL Brener 5693 GCF_000209065.1 True Scaffold 89937456 29495 88624 212 51.5 Full annotation GCA_000209065.1 https://genome.ucsc.edu/h/GCF_000209065.1 GCA_000209065.1 GCF_000209065.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/209/065/GCF_000209065.1/genes/GCF_000209065.1_ASM20906v1.ncbiRefSeq.gtf.gz +Trypanosoma brucei 185431 GCF_000002445.2 True Chromosome 11.0 26075494 12 2481190 4 46.5 Full annotation GCA_000002445.1 https://genome.ucsc.edu/h/GCF_000002445.2 GCA_000002445.1 GCF_000002445.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/445/GCF_000002445.2/genes/GCF_000002445.2_ASM244v1.ncbiRefSeq.gtf.gz +Leishmania major Friedlin 347515 GCF_000002725.2 True Complete Genome 36.0 32855089 36 1091540 11 59.5 Full annotation GCA_000002725.2 https://genome.ucsc.edu/h/GCF_000002725.2 GCA_000002725.2 GCF_000002725.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/725/GCF_000002725.2/genes/GCF_000002725.2_ASM272v2.ncbiRefSeq.gtf.gz +Leishmania donovani BPK282A1 5661 GCF_000227135.1 True Chromosome 36.0 32444968 36 1024085 11 59.5 Full annotation GCA_000227135.2 https://genome.ucsc.edu/h/GCF_000227135.1 GCA_000227135.2 GCF_000227135.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/227/135/GCF_000227135.1/genes/GCF_000227135.1_ASM22713v2.ncbiRefSeq.gtf.gz +Leishmania braziliensis MHOM/BR/75/M2904 420245 GCF_000002845.2 True Chromosome 35.0 32068771 138 992961 11 58.0 GCA_000002845.2 https://genome.ucsc.edu/h/GCF_000002845.2 GCA_000002845.2 GCF_000002845.2 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/845/GCF_000002845.2/genes/GCF_000002845.2_ASM284v2.ncbiRefSeq.gtf.gz +Severe acute respiratory syndrome coronavirus 2 2697049 GCF_009858895.2 False Complete Genome 1.0 29903 1 29903 1 38.0 GCA_009858895.3 https://genome.ucsc.edu/h/GCF_009858895.2 GCA_009858895.3 GCF_009858895.2 +Monkeypox virus Zaire-96-I-16 10244 GCF_000857045.1 False Complete Genome 1.0 196858 1 196858 1 33.0 GCA_000857045.1 https://genome.ucsc.edu/h/GCF_000857045.1 GCA_000857045.1 GCF_000857045.1 +Aspergillus fumigatus Af293 330879 GCF_000002655.1 True Chromosome 8.0 29384958 8 3948441 4 50.0 Full annotation GCA_000002655.1 https://genome.ucsc.edu/h/GCF_000002655.1 GCA_000002655.1 GCF_000002655.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/002/655/GCF_000002655.1/genes/GCF_000002655.1_ASM265v1.ncbiRefSeq.gtf.gz +Candida albicans SC5314 237561 GCF_000182965.3 True Chromosome 8.0 14282666 8 2231883 3 700.0x 33.5 Full annotation GCA_000182965.3 https://genome.ucsc.edu/h/GCF_000182965.3 GCA_000182965.3 GCF_000182965.3 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/182/965/GCF_000182965.3/genes/GCF_000182965.3_ASM18296v3.ncbiRefSeq.gtf.gz +Cryptococcus neoformans JEC21 214684 GCF_000091045.1 True Chromosome 14.0 19051922 14 1438950 6 48.5 Full annotation GCA_000091045.1 https://genome.ucsc.edu/h/GCF_000091045.1 GCA_000091045.1 GCF_000091045.1 https://hgdownload.soe.ucsc.edu/hubs/GCF/000/091/045/GCF_000091045.1/genes/GCF_000091045.1_ASM9104v1.ncbiRefSeq.gtf.gz diff --git a/files/source/organisms-from-ncbi.tsv b/files/source/organisms-from-ncbi.tsv index eb42060..a7a0d3a 100644 --- a/files/source/organisms-from-ncbi.tsv +++ b/files/source/organisms-from-ncbi.tsv @@ -1,22 +1,22 @@ -taxon taxonomyId assemblyCount CustomTags -Anopheles gambiae 7165 7 VEuPathDB -Aspergillus fumigatus 746128 352 -Candida albicans 5476 117 -Coccidioides immitis 5501 5 -Coccidioides posadasii 199306 13 VEuPathDB -Cryptococcus neoformans 5207 183 -Culex pipiens pallens 42434 1 -Culex quinquefasciatus 7176 3 VEuPathDB -Leishmania braziliensis 5660 11 VEuPathDB -Leishmania donovani 5661 12 VEuPathDB -Leishmania major 5664 7 VEuPathDB -Monkeypox virus 10244 6911 Virus -Mycobacterium tuberculosis 1773 7829 Bact -Plasmodium falciparum 5833 67 VEuPathDB -Plasmodium vinckei 5860 10 VEuPathDB -Plasmodium vivax 5855 19 VEuPathDB -Plasmodium yoelii 5861 15 VEuPathDB -Severe acute respiratory syndrome coronavirus 2 2697049 12408 Virus -Toxoplasma gondii 5811 29 VEuPathDB -Trypanosoma brucei 5691 6 VEuPathDB -Trypanosoma cruzi 5693 44 VEuPathDB +taxon taxonomyId assemblyCount accession CustomTags +Plasmodium falciparum 5833 67 GCF_000002765.6 VEuPathDB +Plasmodium vivax 5855 19 GCF_000002415.2 VEuPathDB +Plasmodium yoelii 5861 15 GCF_900002385.2 VEuPathDB +Plasmodium vinckei 5860 10 GCF_900681995.1 VEuPathDB +Culex pipiens pallens 42434 1 GCF_016801865.2 +Culex quinquefasciatus 7176 3 GCF_015732765.1 VEuPathDB +Anopheles gambiae 7165 7 GCF_943734735.2 VEuPathDB +Toxoplasma gondii 5811 29 GCF_000006565.2 VEuPathDB +Mycobacterium tuberculosis 1773 7829 GCF_000195955.2 Bact +Coccidioides posadasii 199306 13 GCF_018416015.2 VEuPathDB +Coccidioides immitis 5501 5 GCF_000149335.2 +Trypanosoma cruzi 5693 44 GCF_000209065.1 VEuPathDB +Trypanosoma brucei 5691 6 GCF_000002445.2 VEuPathDB +Leishmania major 5664 7 GCF_000002725.2 VEuPathDB +Leishmania donovani 5661 12 GCF_000227135.1 VEuPathDB +Leishmania braziliensis 5660 11 GCF_000002845.2 VEuPathDB +Severe acute respiratory syndrome coronavirus 2 2697049 12408 GCF_009858895.2 Virus +Monkeypox virus 10244 6911 GCF_000857045.1 Virus +Aspergillus fumigatus 746128 352 GCF_000002655.1 +Candida albicans 5476 117 GCF_000182965.3 +Cryptococcus neoformans 5207 183 GCF_000091045.1 From fed91145f055106104714e0d2cec8f0f4071624c Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:34:27 -0800 Subject: [PATCH 14/19] chore: upgrade findable-ui (#177) --- package-lock.json | 8 ++++---- package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package-lock.json b/package-lock.json index c62da75..f276898 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,7 +8,7 @@ "name": "brc-analytics", "version": "0.0.0", "dependencies": { - "@databiosphere/findable-ui": "15.0.2", + "@databiosphere/findable-ui": "^16.1.0", "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", "@mdx-js/loader": "^3.0.1", @@ -1383,9 +1383,9 @@ } }, "node_modules/@databiosphere/findable-ui": { - "version": "15.0.2", - "resolved": "https://registry.npmjs.org/@databiosphere/findable-ui/-/findable-ui-15.0.2.tgz", - "integrity": "sha512-q6ANGEVeYmF8XjCAAiXadIva6tYZ4sO29grgQYAdcewgw1B7BxbiP7OXlQ9jAhSVGILZelWH8jqgFIR09lCrBw==", + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/@databiosphere/findable-ui/-/findable-ui-16.1.0.tgz", + "integrity": "sha512-qoU0mVsbqJz+Dl8kfJPiRP/vniESbDNeNz1rGLsi0vaC2z1TdRT3SQfmE0b8KYzMd2aOw3UiRBPQIKQvHrVVCg==", "engines": { "node": "20.10.0" }, diff --git a/package.json b/package.json index 28ee298..779fb3c 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "build-brc-db": "esrun files/build-catalog.ts" }, "dependencies": { - "@databiosphere/findable-ui": "15.0.2", + "@databiosphere/findable-ui": "^16.1.0", "@emotion/react": "^11.13.3", "@emotion/styled": "^11.13.0", "@mdx-js/loader": "^3.0.1", From 1f4f3affc7f9b6bb224786e0136e55e25b7f4ec3 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:36:30 -0800 Subject: [PATCH 15/19] feat: link to filtered genomes from organism list (#177) --- .../common/viewModelBuilders.ts | 46 +++++++++++++++++-- .../local/index/genomeEntityConfig.ts | 2 +- .../local/index/organismEntityConfig.ts | 6 +-- 3 files changed, 45 insertions(+), 9 deletions(-) diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 6968b98..a17458f 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -3,6 +3,7 @@ import { Key, Value, } from "@databiosphere/findable-ui/lib/components/common/KeyValuePairs/keyValuePairs"; +import { LinkProps } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link"; import { ViewContext } from "@databiosphere/findable-ui/lib/config/entities"; import { ComponentProps } from "react"; import { ROUTES } from "../../../../../routes/constants"; @@ -126,6 +127,19 @@ export const buildGcPercent = ( }; }; +/** + * Build props for the taxon cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildGenomeTaxon = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + value: genome.taxon, + }; +}; + /** * Build props for the "is ref" cell. * @param genome - Genome entity. @@ -167,14 +181,15 @@ export const buildLevel = ( /** * Build props for the taxon cell. - * @param genome - Genome entity. + * @param organism - Organism entity. * @returns Props to be used for the cell. */ -export const buildTaxon = ( - genome: BRCDataCatalogOrganism | BRCDataCatalogGenome -): ComponentProps => { +export const buildOrganismTaxon = ( + organism: BRCDataCatalogOrganism +): ComponentProps => { return { - value: genome.taxon, + label: organism.taxon, + url: getTaxonGenomesUrlObject(organism.taxon), }; }; @@ -355,3 +370,24 @@ function getGenomeEntityChooseAnalysisMethodBreadcrumbs( { path: "", text: "Choose Analysis Methods" }, ]; } + +/** + * Get URL object for genomes filtered by a given taxon. + * @param taxon - Taxon. + * @returns URL object. + */ +function getTaxonGenomesUrlObject(taxon: string): LinkProps["url"] { + return { + href: ROUTES.GENOMES, + query: encodeURIComponent( + JSON.stringify({ + filter: [ + { + categoryKey: "taxon", + value: [taxon], + }, + ], + }) + ), + }; +} diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index 27b0a9d..ca286b9 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -99,7 +99,7 @@ export const genomeEntityConfig: BRCEntityConfig = { { componentConfig: { component: C.BasicCell, - viewBuilder: V.buildTaxon, + viewBuilder: V.buildGenomeTaxon, } as ComponentConfig, header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, diff --git a/site-config/brc-analytics/local/index/organismEntityConfig.ts b/site-config/brc-analytics/local/index/organismEntityConfig.ts index 1a39944..8c70ac2 100644 --- a/site-config/brc-analytics/local/index/organismEntityConfig.ts +++ b/site-config/brc-analytics/local/index/organismEntityConfig.ts @@ -52,9 +52,9 @@ export const organismEntityConfig: BRCEntityConfig = { columns: [ { componentConfig: { - component: C.BasicCell, - viewBuilder: V.buildTaxon, - } as ComponentConfig, + component: C.Link, + viewBuilder: V.buildOrganismTaxon, + } as ComponentConfig, header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, width: "auto", From 4f9dfd6183285e25d42c4965e2adc656f284f348 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:46:26 -0800 Subject: [PATCH 16/19] feat: add strain to genomes list (#177) --- .../common/viewModelBuilders.ts | 13 +++++++++++++ site-config/brc-analytics/category.ts | 2 ++ .../local/index/genomeEntityConfig.ts | 15 ++++++++++++++- 3 files changed, 29 insertions(+), 1 deletion(-) diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index a17458f..9b61ff8 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -232,6 +232,19 @@ export const buildScaffoldN50 = ( }; }; +/** + * Build props for the strain cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildStrain = ( + genome: BRCDataCatalogGenome +): ComponentProps => { + return { + value: genome.strain, + }; +}; + /** * Build props for the tags cell. * @param genome - Genome entity. diff --git a/site-config/brc-analytics/category.ts b/site-config/brc-analytics/category.ts index 122bf19..6b11043 100644 --- a/site-config/brc-analytics/category.ts +++ b/site-config/brc-analytics/category.ts @@ -12,6 +12,7 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { SCAFFOLD_COUNT: "scaffoldCount", SCAFFOLD_L50: "scaffoldL50", SCAFFOLD_N50: "scaffoldN50", + STRAIN: "strain", TAGS: "tags", TAXON: "taxon", TAXONOMY_ID: "ncbiTaxonomyId", @@ -32,6 +33,7 @@ export const BRC_DATA_CATALOG_CATEGORY_LABEL = { SCAFFOLD_COUNT: "Scaffolds", SCAFFOLD_L50: "Scaffold L50", SCAFFOLD_N50: "Scaffold N50", + STRAIN: "Strain", TAGS: "Tags", TAXON: "Taxon", TAXONOMY_ID: "Taxonomy ID", diff --git a/site-config/brc-analytics/local/index/genomeEntityConfig.ts b/site-config/brc-analytics/local/index/genomeEntityConfig.ts index ca286b9..1544144 100644 --- a/site-config/brc-analytics/local/index/genomeEntityConfig.ts +++ b/site-config/brc-analytics/local/index/genomeEntityConfig.ts @@ -33,6 +33,10 @@ export const genomeEntityConfig: BRCEntityConfig = { key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, }, + { + key: BRC_DATA_CATALOG_CATEGORY_KEY.STRAIN, + label: BRC_DATA_CATALOG_CATEGORY_LABEL.STRAIN, + }, { key: BRC_DATA_CATALOG_CATEGORY_KEY.TAXONOMY_ID, label: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXONOMY_ID, @@ -103,7 +107,16 @@ export const genomeEntityConfig: BRCEntityConfig = { } as ComponentConfig, header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, - width: { max: "1fr", min: "284px" }, + width: { max: "1fr", min: "240px" }, + }, + { + componentConfig: { + component: C.BasicCell, + viewBuilder: V.buildStrain, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.STRAIN, + id: BRC_DATA_CATALOG_CATEGORY_KEY.STRAIN, + width: { max: "0.5fr", min: "180px" }, }, { componentConfig: { From d326bb3efb6f8805b9efd8d413f66b2b668a94b7 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:55:04 -0800 Subject: [PATCH 17/19] feat: hardcode organism assembly count as 1 (#177) --- files/build-files-from-ncbi.py | 2 +- files/out/organisms.json | 40 ++++++++++++++-------------- files/source/organisms-from-ncbi.tsv | 40 ++++++++++++++-------------- 3 files changed, 41 insertions(+), 41 deletions(-) diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 190f188..41a32f0 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -24,7 +24,7 @@ def get_organism_row(organism_info, accession): return { "taxon": organism_taxonomy["current_scientific_name"]["name"], "taxonomyId": str(organism_taxonomy["tax_id"]), - "assemblyCount": next(count["count"] for count in organism_taxonomy["counts"] if count["type"] == "COUNT_TYPE_ASSEMBLY"), + "assemblyCount": 1, "accession": accession, } diff --git a/files/out/organisms.json b/files/out/organisms.json index 1bf4697..6d29b69 100644 --- a/files/out/organisms.json +++ b/files/out/organisms.json @@ -1,6 +1,6 @@ [ { - "assemblyCount": 6911, + "assemblyCount": 1, "ncbiTaxonomyId": "10244", "tags": [ "Virus" @@ -8,7 +8,7 @@ "taxon": "Monkeypox virus" }, { - "assemblyCount": 7829, + "assemblyCount": 1, "ncbiTaxonomyId": "1773", "tags": [ "Bact" @@ -16,7 +16,7 @@ "taxon": "Mycobacterium tuberculosis" }, { - "assemblyCount": 13, + "assemblyCount": 1, "ncbiTaxonomyId": "199306", "tags": [ "VEuPathDB" @@ -24,7 +24,7 @@ "taxon": "Coccidioides posadasii" }, { - "assemblyCount": 12408, + "assemblyCount": 1, "ncbiTaxonomyId": "2697049", "tags": [ "Virus" @@ -38,25 +38,25 @@ "taxon": "Culex pipiens pallens" }, { - "assemblyCount": 183, + "assemblyCount": 1, "ncbiTaxonomyId": "5207", "tags": [], "taxon": "Cryptococcus neoformans" }, { - "assemblyCount": 117, + "assemblyCount": 1, "ncbiTaxonomyId": "5476", "tags": [], "taxon": "Candida albicans" }, { - "assemblyCount": 5, + "assemblyCount": 1, "ncbiTaxonomyId": "5501", "tags": [], "taxon": "Coccidioides immitis" }, { - "assemblyCount": 11, + "assemblyCount": 1, "ncbiTaxonomyId": "5660", "tags": [ "VEuPathDB" @@ -64,7 +64,7 @@ "taxon": "Leishmania braziliensis" }, { - "assemblyCount": 12, + "assemblyCount": 1, "ncbiTaxonomyId": "5661", "tags": [ "VEuPathDB" @@ -72,7 +72,7 @@ "taxon": "Leishmania donovani" }, { - "assemblyCount": 7, + "assemblyCount": 1, "ncbiTaxonomyId": "5664", "tags": [ "VEuPathDB" @@ -80,7 +80,7 @@ "taxon": "Leishmania major" }, { - "assemblyCount": 6, + "assemblyCount": 1, "ncbiTaxonomyId": "5691", "tags": [ "VEuPathDB" @@ -88,7 +88,7 @@ "taxon": "Trypanosoma brucei" }, { - "assemblyCount": 44, + "assemblyCount": 1, "ncbiTaxonomyId": "5693", "tags": [ "VEuPathDB" @@ -96,7 +96,7 @@ "taxon": "Trypanosoma cruzi" }, { - "assemblyCount": 29, + "assemblyCount": 1, "ncbiTaxonomyId": "5811", "tags": [ "VEuPathDB" @@ -104,7 +104,7 @@ "taxon": "Toxoplasma gondii" }, { - "assemblyCount": 67, + "assemblyCount": 1, "ncbiTaxonomyId": "5833", "tags": [ "VEuPathDB" @@ -112,7 +112,7 @@ "taxon": "Plasmodium falciparum" }, { - "assemblyCount": 19, + "assemblyCount": 1, "ncbiTaxonomyId": "5855", "tags": [ "VEuPathDB" @@ -120,7 +120,7 @@ "taxon": "Plasmodium vivax" }, { - "assemblyCount": 10, + "assemblyCount": 1, "ncbiTaxonomyId": "5860", "tags": [ "VEuPathDB" @@ -128,7 +128,7 @@ "taxon": "Plasmodium vinckei" }, { - "assemblyCount": 15, + "assemblyCount": 1, "ncbiTaxonomyId": "5861", "tags": [ "VEuPathDB" @@ -136,7 +136,7 @@ "taxon": "Plasmodium yoelii" }, { - "assemblyCount": 7, + "assemblyCount": 1, "ncbiTaxonomyId": "7165", "tags": [ "VEuPathDB" @@ -144,7 +144,7 @@ "taxon": "Anopheles gambiae" }, { - "assemblyCount": 3, + "assemblyCount": 1, "ncbiTaxonomyId": "7176", "tags": [ "VEuPathDB" @@ -152,7 +152,7 @@ "taxon": "Culex quinquefasciatus" }, { - "assemblyCount": 352, + "assemblyCount": 1, "ncbiTaxonomyId": "746128", "tags": [], "taxon": "Aspergillus fumigatus" diff --git a/files/source/organisms-from-ncbi.tsv b/files/source/organisms-from-ncbi.tsv index a7a0d3a..0615f1a 100644 --- a/files/source/organisms-from-ncbi.tsv +++ b/files/source/organisms-from-ncbi.tsv @@ -1,22 +1,22 @@ taxon taxonomyId assemblyCount accession CustomTags -Plasmodium falciparum 5833 67 GCF_000002765.6 VEuPathDB -Plasmodium vivax 5855 19 GCF_000002415.2 VEuPathDB -Plasmodium yoelii 5861 15 GCF_900002385.2 VEuPathDB -Plasmodium vinckei 5860 10 GCF_900681995.1 VEuPathDB +Plasmodium falciparum 5833 1 GCF_000002765.6 VEuPathDB +Plasmodium vivax 5855 1 GCF_000002415.2 VEuPathDB +Plasmodium yoelii 5861 1 GCF_900002385.2 VEuPathDB +Plasmodium vinckei 5860 1 GCF_900681995.1 VEuPathDB Culex pipiens pallens 42434 1 GCF_016801865.2 -Culex quinquefasciatus 7176 3 GCF_015732765.1 VEuPathDB -Anopheles gambiae 7165 7 GCF_943734735.2 VEuPathDB -Toxoplasma gondii 5811 29 GCF_000006565.2 VEuPathDB -Mycobacterium tuberculosis 1773 7829 GCF_000195955.2 Bact -Coccidioides posadasii 199306 13 GCF_018416015.2 VEuPathDB -Coccidioides immitis 5501 5 GCF_000149335.2 -Trypanosoma cruzi 5693 44 GCF_000209065.1 VEuPathDB -Trypanosoma brucei 5691 6 GCF_000002445.2 VEuPathDB -Leishmania major 5664 7 GCF_000002725.2 VEuPathDB -Leishmania donovani 5661 12 GCF_000227135.1 VEuPathDB -Leishmania braziliensis 5660 11 GCF_000002845.2 VEuPathDB -Severe acute respiratory syndrome coronavirus 2 2697049 12408 GCF_009858895.2 Virus -Monkeypox virus 10244 6911 GCF_000857045.1 Virus -Aspergillus fumigatus 746128 352 GCF_000002655.1 -Candida albicans 5476 117 GCF_000182965.3 -Cryptococcus neoformans 5207 183 GCF_000091045.1 +Culex quinquefasciatus 7176 1 GCF_015732765.1 VEuPathDB +Anopheles gambiae 7165 1 GCF_943734735.2 VEuPathDB +Toxoplasma gondii 5811 1 GCF_000006565.2 VEuPathDB +Mycobacterium tuberculosis 1773 1 GCF_000195955.2 Bact +Coccidioides posadasii 199306 1 GCF_018416015.2 VEuPathDB +Coccidioides immitis 5501 1 GCF_000149335.2 +Trypanosoma cruzi 5693 1 GCF_000209065.1 VEuPathDB +Trypanosoma brucei 5691 1 GCF_000002445.2 VEuPathDB +Leishmania major 5664 1 GCF_000002725.2 VEuPathDB +Leishmania donovani 5661 1 GCF_000227135.1 VEuPathDB +Leishmania braziliensis 5660 1 GCF_000002845.2 VEuPathDB +Severe acute respiratory syndrome coronavirus 2 2697049 1 GCF_009858895.2 Virus +Monkeypox virus 10244 1 GCF_000857045.1 Virus +Aspergillus fumigatus 746128 1 GCF_000002655.1 +Candida albicans 5476 1 GCF_000182965.3 +Cryptococcus neoformans 5207 1 GCF_000091045.1 From be94f0c216c12c6f1382ef4d18a45a0c1ecd5e4d Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Wed, 11 Dec 2024 23:19:09 -0800 Subject: [PATCH 18/19] fix: account for pagination when getting genomes (#177) --- files/build-files-from-ncbi.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/files/build-files-from-ncbi.py b/files/build-files-from-ncbi.py index 41a32f0..a882381 100644 --- a/files/build-files-from-ncbi.py +++ b/files/build-files-from-ncbi.py @@ -35,8 +35,8 @@ def get_organisms_df(taxa_with_accessions): def get_tax_ids(organisms_df): return list(organisms_df["taxonomyId"]) -def build_genomes_url(tax_ids): - return f"https://api.ncbi.nlm.nih.gov/datasets/v2/genome/taxon/{urllib.parse.quote(",".join([str(id) for id in tax_ids]))}/dataset_report?filters.assembly_source=refseq&filters.has_annotation=true&filters.exclude_paired_reports=true&filters.exclude_atypical=true&filters.assembly_level=scaffold&filters.assembly_level=chromosome&filters.assembly_level=complete_genome" +def build_genomes_url(tax_ids, next_page_token): + return f"https://api.ncbi.nlm.nih.gov/datasets/v2/genome/taxon/{urllib.parse.quote(",".join([str(id) for id in tax_ids]))}/dataset_report?page_size=1000{"&page_token=" + next_page_token if next_page_token else ""}&filters.assembly_source=refseq&filters.has_annotation=true&filters.exclude_paired_reports=true&filters.exclude_atypical=true&filters.assembly_level=scaffold&filters.assembly_level=chromosome&filters.assembly_level=complete_genome" def get_genome_row(genome_info, taxon): refseq_category = genome_info["assembly_info"].get("refseq_category") @@ -58,8 +58,20 @@ def get_genome_row(genome_info, taxon): "pairedAccession": genome_info["paired_accession"], } +def get_organism_genomes_results(tax_id): + page = 1 + next_page_token = None + results = [] + while next_page_token or page == 1: + print(f"Requesting page {page} of taxon {tax_id}") + page_data = requests.get(build_genomes_url([tax_id], next_page_token)).json() + results += page_data["reports"] + next_page_token = page_data.get("next_page_token") + page += 1 + return results + def get_organism_genomes(tax_id, accession): - return [genome_info for genome_info in requests.get(build_genomes_url([tax_id])).json()["reports"] if genome_info["accession"] == accession] + return [genome_info for genome_info in get_organism_genomes_results(tax_id) if genome_info["accession"] == accession] def get_genomes_df(organism_ids): genomes_info_with_organisms = [(genome_info, taxon) for tax_id, taxon, accession in organism_ids for genome_info in get_organism_genomes(tax_id, accession)] From 6edb5d9e0550d2192b14f1e755a7af2a1c83856d Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Thu, 12 Dec 2024 02:06:40 -0800 Subject: [PATCH 19/19] feat: add underline to genome links in organisms list (#177) --- app/components/common/StyledLink/styledLink.styles.tsx | 6 ++++++ app/components/index.ts | 1 + .../brc-analytics-catalog/common/viewModelBuilders.ts | 2 +- .../brc-analytics/local/index/organismEntityConfig.ts | 4 ++-- 4 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 app/components/common/StyledLink/styledLink.styles.tsx diff --git a/app/components/common/StyledLink/styledLink.styles.tsx b/app/components/common/StyledLink/styledLink.styles.tsx new file mode 100644 index 0000000..c0e74c5 --- /dev/null +++ b/app/components/common/StyledLink/styledLink.styles.tsx @@ -0,0 +1,6 @@ +import { Link } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link"; +import styled from "@emotion/styled"; + +export const StyledLink = styled(Link)` + text-decoration: underline; +`; diff --git a/app/components/index.ts b/app/components/index.ts index 4a868b3..88553d9 100644 --- a/app/components/index.ts +++ b/app/components/index.ts @@ -24,6 +24,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 { NTagCell } from "@databiosphere/findable-ui/lib/components/Table/components/TableCell/components/NTagCell/nTagCell"; export { CopyText } from "./common/CopyText/copyText"; +export { StyledLink } from "./common/StyledLink/styledLink.styles"; export { AnalysisMethod } from "./Entity/components/AnalysisMethod/analysisMethod"; export { AnalysisMethods } from "./Entity/components/AnalysisMethods/analysisMethods"; export { AnalysisMethodsTitle } from "./Entity/components/AnalysisMethodsTitle/analysisMethodsTitle"; diff --git a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 9b61ff8..cd0edbf 100644 --- a/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -186,7 +186,7 @@ export const buildLevel = ( */ export const buildOrganismTaxon = ( organism: BRCDataCatalogOrganism -): ComponentProps => { +): ComponentProps => { return { label: organism.taxon, url: getTaxonGenomesUrlObject(organism.taxon), diff --git a/site-config/brc-analytics/local/index/organismEntityConfig.ts b/site-config/brc-analytics/local/index/organismEntityConfig.ts index 8c70ac2..6c007c0 100644 --- a/site-config/brc-analytics/local/index/organismEntityConfig.ts +++ b/site-config/brc-analytics/local/index/organismEntityConfig.ts @@ -52,9 +52,9 @@ export const organismEntityConfig: BRCEntityConfig = { columns: [ { componentConfig: { - component: C.Link, + component: C.StyledLink, viewBuilder: V.buildOrganismTaxon, - } as ComponentConfig, + } as ComponentConfig, header: BRC_DATA_CATALOG_CATEGORY_LABEL.TAXON, id: BRC_DATA_CATALOG_CATEGORY_KEY.TAXON, width: "auto",