From 9f127bcef9baf4140a107665d5e9f1a71d406290 Mon Sep 17 00:00:00 2001 From: hunterckx <118154470+hunterckx@users.noreply.github.com> Date: Fri, 30 Aug 2024 23:07:20 -0700 Subject: [PATCH] feat: add ucsc browser column (#5) --- .../brc-analytics-catalog/common/entities.ts | 1 + data-catalog/app/components/index.ts | 1 + .../common/viewModelBuilders.ts | 19 + data-catalog/files/build-catalog.ts | 5 + data-catalog/files/entities.ts | 8 + data-catalog/files/out/genomes.json | 785 ++++++++++++++++++ .../brc-analytics-catalog/category.ts | 2 + .../local/index/genomeEntityConfig.ts | 9 + 8 files changed, 830 insertions(+) diff --git a/data-catalog/app/apis/catalog/brc-analytics-catalog/common/entities.ts b/data-catalog/app/apis/catalog/brc-analytics-catalog/common/entities.ts index d154fb4..b6c53dc 100644 --- a/data-catalog/app/apis/catalog/brc-analytics-catalog/common/entities.ts +++ b/data-catalog/app/apis/catalog/brc-analytics-catalog/common/entities.ts @@ -6,5 +6,6 @@ export interface BRCDataCatalogGenome { species: string; strain: string; supercontigs: number; + ucscBrowserUrl: string | null; vEuPathDbProject: string; } diff --git a/data-catalog/app/components/index.ts b/data-catalog/app/components/index.ts index ecf22e9..7bf33c0 100644 --- a/data-catalog/app/components/index.ts +++ b/data-catalog/app/components/index.ts @@ -1 +1,2 @@ +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"; diff --git a/data-catalog/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts b/data-catalog/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts index 7f69a2f..0ce8d7f 100644 --- a/data-catalog/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts +++ b/data-catalog/app/viewModelBuilders/catalog/brc-analytics-catalog/common/viewModelBuilders.ts @@ -79,6 +79,25 @@ export const buildSupercontigs = ( }; }; +/** + * Build props for the UCSC browser URL cell. + * @param genome - Genome entity. + * @returns Props to be used for the cell. + */ +export const buildUcscBrowserUrl = ( + genome: BRCDataCatalogGenome +): React.ComponentProps => { + return genome.ucscBrowserUrl + ? { + label: "UCSC Browser", + url: genome.ucscBrowserUrl, + } + : { + label: "Unspecified", + url: "", + }; +}; + /** * Build props for the VEuPathDB project cell. * @param genome - Genome entity. diff --git a/data-catalog/files/build-catalog.ts b/data-catalog/files/build-catalog.ts index 4d7158f..f3d45db 100644 --- a/data-catalog/files/build-catalog.ts +++ b/data-catalog/files/build-catalog.ts @@ -27,6 +27,7 @@ async function buildGenomes(): Promise { species: row.Species, strain: row.Strain, supercontigs: parseNumber(row.Supercontigs), + ucscBrowserUrl: parseStringOrNull(row.ucscBrowser), vEuPathDbProject: row["VEuPathDB Project"], }) ); @@ -51,6 +52,10 @@ 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 parseNumber(value: string): number { value = value.trim(); const n = Number(value); diff --git a/data-catalog/files/entities.ts b/data-catalog/files/entities.ts index a3bd077..828cf4c 100644 --- a/data-catalog/files/entities.ts +++ b/data-catalog/files/entities.ts @@ -1,12 +1,20 @@ export interface SourceGenome { + asmId: string; Chromosomes: string; + comName: string; Contigs: string; + genBank: 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; + ucscBrowser: string; "VEuPathDB Project": string; } diff --git a/data-catalog/files/out/genomes.json b/data-catalog/files/out/genomes.json index 0a902d6..72f0612 100644 --- a/data-catalog/files/out/genomes.json +++ b/data-catalog/files/out/genomes.json @@ -7,6 +7,7 @@ "species": "Neurospora discreta", "strain": "FGSC 8579", "supercontigs": 176, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -17,6 +18,7 @@ "species": "Albugo candida", "strain": "2VRR", "supercontigs": 252, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -27,6 +29,7 @@ "species": "Candida albicans", "strain": "SC5314_B", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -37,6 +40,7 @@ "species": "Plasmodium falciparum", "strain": "7G8", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -47,6 +51,7 @@ "species": "Leishmania donovani", "strain": "strain LV9", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -57,6 +62,7 @@ "species": "Drosophila melanogaster", "strain": "iso-1", "supercontigs": 1862, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001215.4", "vEuPathDbProject": "VectorBase" }, { @@ -67,6 +73,7 @@ "species": "Homo sapiens", "strain": "REF", "supercontigs": 169, + "ucscBrowserUrl": null, "vEuPathDbProject": "HostDB" }, { @@ -77,6 +84,7 @@ "species": "Mus musculus", "strain": "C57BL6J", "supercontigs": 44, + "ucscBrowserUrl": null, "vEuPathDbProject": "HostDB" }, { @@ -87,6 +95,7 @@ "species": "Talaromyces marneffei", "strain": "ATCC 18224", "supercontigs": 452, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000001985.1", "vEuPathDbProject": "FungiDB" }, { @@ -97,6 +106,7 @@ "species": "Plasmodium vivax", "strain": "Sal-1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002415.2", "vEuPathDbProject": "PlasmoDB" }, { @@ -107,6 +117,7 @@ "species": "Giardia Assemblage A", "strain": "isolate WB", "supercontigs": 73, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -117,6 +128,7 @@ "species": "Giardia Assemblage A", "strain": "isolate WB 2019", "supercontigs": 30, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002435.2", "vEuPathDbProject": "GiardiaDB" }, { @@ -127,6 +139,7 @@ "species": "Trypanosoma brucei", "strain": "brucei TREU927", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002445.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -137,6 +150,7 @@ "species": "Pyricularia oryzae", "strain": "70-15", "supercontigs": 46, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002495.2", "vEuPathDbProject": "FungiDB" }, { @@ -147,6 +161,7 @@ "species": "Kluyveromyces lactis", "strain": "NRRL Y-1140", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002515.2", "vEuPathDbProject": "FungiDB" }, { @@ -157,6 +172,7 @@ "species": "Yarrowia lipolytica", "strain": "CLIB122", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002525.2", "vEuPathDbProject": "FungiDB" }, { @@ -167,6 +183,7 @@ "species": "Nakaseomyces glabratus", "strain": "CBS 138", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002545.3", "vEuPathDbProject": "FungiDB" }, { @@ -177,6 +194,7 @@ "species": "Aspergillus fumigatus", "strain": "Af293", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002655.1", "vEuPathDbProject": "FungiDB" }, { @@ -187,6 +205,7 @@ "species": "Aspergillus clavatus", "strain": "NRRL 1", "supercontigs": 143, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002715.2", "vEuPathDbProject": "FungiDB" }, { @@ -197,6 +216,7 @@ "species": "Leishmania major", "strain": "strain Friedlin", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002725.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -207,6 +227,7 @@ "species": "Plasmodium falciparum", "strain": "3D7", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -217,6 +238,7 @@ "species": "Trichomonas vaginalis", "strain": "G3", "supercontigs": 64764, + "ucscBrowserUrl": null, "vEuPathDbProject": "TrichDB" }, { @@ -227,6 +249,7 @@ "species": "Leishmania braziliensis", "strain": "MHOM/BR/75/M2904", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002845.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -237,6 +260,7 @@ "species": "Aspergillus niger", "strain": "CBS 513.88", "supercontigs": 19, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000002855.4", "vEuPathDbProject": "FungiDB" }, { @@ -247,6 +271,7 @@ "species": "Schizosaccharomyces pombe", "strain": "972h-", "supercontigs": 2, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -257,6 +282,7 @@ "species": "Plasmodium yoelii", "strain": "yoelii 17XNL", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003085.2", "vEuPathDbProject": "PlasmoDB" }, { @@ -267,6 +293,7 @@ "species": "Talaromyces stipitatus", "strain": "ATCC 10500", "supercontigs": 820, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003125.1", "vEuPathDbProject": "FungiDB" }, { @@ -277,6 +304,7 @@ "species": "Theileria annulata", "strain": "strain Ankara", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -287,6 +315,7 @@ "species": "Uncinocarpus reesii", "strain": "1704", "supercontigs": 44, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003515.1", "vEuPathDbProject": "FungiDB" }, { @@ -297,6 +326,7 @@ "species": "Blastomyces dermatitidis", "strain": "ER-3", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003525.1", "vEuPathDbProject": "FungiDB" }, { @@ -307,6 +337,7 @@ "species": "Clavispora lusitaniae", "strain": "ATCC 42720", "supercontigs": 9, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000003835.1", "vEuPathDbProject": "FungiDB" }, { @@ -317,6 +348,7 @@ "species": "Blastomyces gilchristii", "strain": "SLH14081", "supercontigs": 100, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -327,6 +359,7 @@ "species": "Naegleria gruberi", "strain": "strain NEG-M", "supercontigs": 784, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000004985.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -337,6 +370,7 @@ "species": "Anopheles gambiae", "strain": "PEST", "supercontigs": 145, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -347,6 +381,7 @@ "species": "Aspergillus flavus", "strain": "NRRL3357", "supercontigs": 282, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000006275.3", "vEuPathDbProject": "FungiDB" }, { @@ -357,6 +392,7 @@ "species": "Pediculus humanus", "strain": "USDA", "supercontigs": 1882, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006295.1", "vEuPathDbProject": "VectorBase" }, { @@ -367,6 +403,7 @@ "species": "Candida tropicalis", "strain": "MYA-3404", "supercontigs": 23, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006335.3", "vEuPathDbProject": "FungiDB" }, { @@ -377,6 +414,7 @@ "species": "Plasmodium knowlesi", "strain": "strain H", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006355.2", "vEuPathDbProject": "PlasmoDB" }, { @@ -387,6 +425,7 @@ "species": "Cryptosporidium hominis", "strain": "TU502", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -397,6 +436,7 @@ "species": "Debaryomyces hansenii", "strain": "CBS767", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006445.2", "vEuPathDbProject": "FungiDB" }, { @@ -407,6 +447,7 @@ "species": "Candida dubliniensis", "strain": "CD36", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000026945.1", "vEuPathDbProject": "FungiDB" }, { @@ -417,6 +458,7 @@ "species": "Cryptococcus neoformans", "strain": "var. neoformans JEC21", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091045.1", "vEuPathDbProject": "FungiDB" }, { @@ -427,6 +469,7 @@ "species": "Encephalitozoon cuniculi", "strain": "GB-M1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000091225.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -437,6 +480,7 @@ "species": "Phytophthora infestans", "strain": "T30-4", "supercontigs": 4921, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000142945.1", "vEuPathDbProject": "FungiDB" }, { @@ -447,6 +491,7 @@ "species": "Globisporangium ultimum", "strain": "DAOM BR144", "supercontigs": 975, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -457,6 +502,7 @@ "species": "Schizophyllum commune", "strain": "H4-8", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143185.2", "vEuPathDbProject": "FungiDB" }, { @@ -467,6 +513,7 @@ "species": "Chaetomium globosum", "strain": "CBS 148.51", "supercontigs": 21, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143365.1", "vEuPathDbProject": "FungiDB" }, { @@ -477,6 +524,7 @@ "species": "Botrytis cinerea", "strain": "B05.10", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000143535.2", "vEuPathDbProject": "FungiDB" }, { @@ -487,6 +535,7 @@ "species": "Gaeumannomyces tritici", "strain": "R3-111a-1", "supercontigs": 513, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000145635.1", "vEuPathDbProject": "FungiDB" }, { @@ -497,6 +546,7 @@ "species": "Saccharomyces cerevisiae", "strain": "S288C", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146045.2", "vEuPathDbProject": "FungiDB" }, { @@ -507,6 +557,7 @@ "species": "Encephalitozoon intestinalis", "strain": "ATCC 50506", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000146465.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -517,6 +568,7 @@ "species": "Colletotrichum graminicola", "strain": "M1.001", "supercontigs": 653, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149035.1", "vEuPathDbProject": "FungiDB" }, { @@ -527,6 +579,7 @@ "species": "Aspergillus nidulans", "strain": "FGSC A4", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149205.2", "vEuPathDbProject": "FungiDB" }, { @@ -537,6 +590,7 @@ "species": "Cryptococcus neoformans", "strain": "var. grubii H99", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149245.1", "vEuPathDbProject": "FungiDB" }, { @@ -547,6 +601,7 @@ "species": "Rhizopus delemar", "strain": "RA 99-880", "supercontigs": 81, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149305.1", "vEuPathDbProject": "FungiDB" }, { @@ -557,6 +612,7 @@ "species": "Coccidioides immitis", "strain": "RS", "supercontigs": 6, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149335.2", "vEuPathDbProject": "FungiDB" }, { @@ -567,6 +623,7 @@ "species": "Cryptococcus neoformans", "strain": "var. neoformans B-3501A", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149385.1", "vEuPathDbProject": "FungiDB" }, { @@ -577,6 +634,7 @@ "species": "Meyerozyma guilliermondii", "strain": "ATCC 6260", "supercontigs": 9, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149425.1", "vEuPathDbProject": "FungiDB" }, { @@ -587,6 +645,7 @@ "species": "Candida albicans", "strain": "WO-1", "supercontigs": 16, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149445.2", "vEuPathDbProject": "FungiDB" }, { @@ -597,6 +656,7 @@ "species": "Fusarium verticillioides", "strain": "7600", "supercontigs": 10, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149555.1", "vEuPathDbProject": "FungiDB" }, { @@ -607,6 +667,7 @@ "species": "Histoplasma capsulatum", "strain": "NAm1", "supercontigs": 276, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149585.1", "vEuPathDbProject": "FungiDB" }, { @@ -617,6 +678,7 @@ "species": "Aspergillus terreus", "strain": "NIH2624", "supercontigs": 26, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149615.1", "vEuPathDbProject": "FungiDB" }, { @@ -627,6 +689,7 @@ "species": "Aspergillus fischeri", "strain": "NRRL 181", "supercontigs": 163, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149645.3", "vEuPathDbProject": "FungiDB" }, { @@ -637,6 +700,7 @@ "species": "Lodderomyces elongisporus", "strain": "NRRL YB-4239", "supercontigs": 27, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149685.1", "vEuPathDbProject": "FungiDB" }, { @@ -647,6 +711,7 @@ "species": "Toxoplasma gondii", "strain": "GT1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -657,6 +722,7 @@ "species": "Phytophthora sojae", "strain": "strain P6497", "supercontigs": 82, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149755.1", "vEuPathDbProject": "FungiDB" }, { @@ -667,6 +733,7 @@ "species": "Coccidioides immitis", "strain": "H538.4", "supercontigs": 553, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149815.1", "vEuPathDbProject": "FungiDB" }, { @@ -677,6 +744,7 @@ "species": "Schizosaccharomyces japonicus", "strain": "yFS275", "supercontigs": 32, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149845.2", "vEuPathDbProject": "FungiDB" }, { @@ -687,6 +755,7 @@ "species": "Batrachochytrium dendrobatidis", "strain": "JEL423", "supercontigs": 69, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -697,6 +766,7 @@ "species": "Coccidioides immitis", "strain": "RMSCC 2394", "supercontigs": 23, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000149895.1", "vEuPathDbProject": "FungiDB" }, { @@ -707,6 +777,7 @@ "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" }, { @@ -717,6 +788,7 @@ "species": "Fusarium oxysporum", "strain": "f. sp. lycopersici 4287", "supercontigs": 70, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000149955.1", "vEuPathDbProject": "FungiDB" }, { @@ -727,6 +799,7 @@ "species": "Toxoplasma gondii", "strain": "VEG", "supercontigs": 1290, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -737,6 +810,7 @@ "species": "Coccidioides posadasii", "strain": "RMSCC 3488", "supercontigs": 6, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150055.1", "vEuPathDbProject": "FungiDB" }, { @@ -747,6 +821,7 @@ "species": "Coccidioides immitis", "strain": "RMSCC 3703", "supercontigs": 286, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150085.1", "vEuPathDbProject": "FungiDB" }, { @@ -757,6 +832,7 @@ "species": "Aspergillus fumigatus", "strain": "A1163", "supercontigs": 55, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150145.1", "vEuPathDbProject": "FungiDB" }, { @@ -767,6 +843,7 @@ "species": "Coccidioides posadasii", "strain": "RMSCC 2133", "supercontigs": 53, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150185.1", "vEuPathDbProject": "FungiDB" }, { @@ -777,6 +854,7 @@ "species": "Coccidioides posadasii", "strain": "RMSCC 3700", "supercontigs": 241, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150215.1", "vEuPathDbProject": "FungiDB" }, { @@ -787,6 +865,7 @@ "species": "Coccidioides posadasii", "strain": "CPA 0001", "supercontigs": 255, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150245.1", "vEuPathDbProject": "FungiDB" }, { @@ -797,6 +876,7 @@ "species": "Paracoccidioides brasiliensis", "strain": "Pb03", "supercontigs": 65, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150475.2", "vEuPathDbProject": "FungiDB" }, { @@ -807,6 +887,7 @@ "species": "Schizosaccharomyces octosporus", "strain": "yFS286", "supercontigs": 5, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150505.1", "vEuPathDbProject": "FungiDB" }, { @@ -817,6 +898,7 @@ "species": "Coccidioides posadasii", "strain": "RMSCC 1037", "supercontigs": 633, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150555.1", "vEuPathDbProject": "FungiDB" }, { @@ -827,6 +909,7 @@ "species": "Coccidioides posadasii", "strain": "RMSCC 1038", "supercontigs": 551, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150585.1", "vEuPathDbProject": "FungiDB" }, { @@ -837,6 +920,7 @@ "species": "Coccidioides posadasii", "strain": "CPA 0020", "supercontigs": 620, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150615.1", "vEuPathDbProject": "FungiDB" }, { @@ -847,6 +931,7 @@ "species": "Coccidioides posadasii", "strain": "CPA 0066", "supercontigs": 473, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150645.1", "vEuPathDbProject": "FungiDB" }, { @@ -857,6 +942,7 @@ "species": "Paracoccidioides lutzii", "strain": "Pb01", "supercontigs": 110, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150705.2", "vEuPathDbProject": "FungiDB" }, { @@ -867,6 +953,7 @@ "species": "Paracoccidioides brasiliensis", "strain": "Pb18", "supercontigs": 57, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150735.1", "vEuPathDbProject": "FungiDB" }, { @@ -877,6 +964,7 @@ "species": "Anopheles coluzzii", "strain": "Mali-NIH", "supercontigs": 10521, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150765.1", "vEuPathDbProject": "VectorBase" }, { @@ -887,6 +975,7 @@ "species": "Anopheles gambiae", "strain": "Pimperena", "supercontigs": 13042, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000150785.1", "vEuPathDbProject": "VectorBase" }, { @@ -897,6 +986,7 @@ "species": "Nannizzia gypsea", "strain": "CBS 118893", "supercontigs": 18, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000150975.2", "vEuPathDbProject": "FungiDB" }, { @@ -907,6 +997,7 @@ "species": "Histoplasma capsulatum", "strain": "H143", "supercontigs": 48, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151035.1", "vEuPathDbProject": "FungiDB" }, { @@ -917,6 +1008,7 @@ "species": "Microsporum canis", "strain": "CBS 113480", "supercontigs": 16, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151145.1", "vEuPathDbProject": "FungiDB" }, { @@ -927,6 +1019,7 @@ "species": "Trichophyton equinum", "strain": "CBS 127.97", "supercontigs": 123, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151175.1", "vEuPathDbProject": "FungiDB" }, { @@ -937,6 +1030,7 @@ "species": "Allomyces macrogynus", "strain": "ATCC 38327", "supercontigs": 101, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -947,6 +1041,7 @@ "species": "Coccidioides posadasii", "strain": "C735 delta SOWgp", "supercontigs": 55, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151335.2", "vEuPathDbProject": "FungiDB" }, { @@ -957,6 +1052,7 @@ "species": "Fusarium vanettenii", "strain": "77-13-4", "supercontigs": 209, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151355.1", "vEuPathDbProject": "FungiDB" }, { @@ -967,6 +1063,7 @@ "species": "Trichophyton rubrum", "strain": "CBS 118892", "supercontigs": 35, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151425.1", "vEuPathDbProject": "FungiDB" }, { @@ -977,6 +1074,7 @@ "species": "Trichophyton tonsurans", "strain": "CBS 112818", "supercontigs": 110, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151455.1", "vEuPathDbProject": "FungiDB" }, { @@ -987,6 +1085,7 @@ "species": "Puccinia triticina", "strain": "1-1 BBBD Race 1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000151525.2", "vEuPathDbProject": "FungiDB" }, { @@ -997,6 +1096,7 @@ "species": "Saprolegnia parasitica", "strain": "CBS 223.65", "supercontigs": 1442, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151545.1", "vEuPathDbProject": "FungiDB" }, { @@ -1007,6 +1107,7 @@ "species": "Cavia porcellus", "strain": "2N", "supercontigs": 3143, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000151735.1", "vEuPathDbProject": "HostDB" }, { @@ -1017,6 +1118,7 @@ "species": "Cryptosporidium parvum", "strain": "Iowa II", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165345.1", "vEuPathDbProject": "CryptoDB" }, { @@ -1027,6 +1129,7 @@ "species": "Theileria parva", "strain": "strain Muguga", "supercontigs": 6, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165365.1", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -1037,6 +1140,7 @@ "species": "Babesia bovis", "strain": "T2Bo", "supercontigs": 3, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000165395.2", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -1047,6 +1151,7 @@ "species": "Blastomyces dermatitidis", "strain": "ATCC 26199", "supercontigs": 3282, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000166155.1", "vEuPathDbProject": "FungiDB" }, { @@ -1057,6 +1162,7 @@ "species": "Phanerochaete chrysosporium", "strain": "RP-78", "supercontigs": 232, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000167175.1", "vEuPathDbProject": "FungiDB" }, { @@ -1067,6 +1173,7 @@ "species": "Trichoderma reesei", "strain": "QM6a", "supercontigs": 77, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000167675.1", "vEuPathDbProject": "FungiDB" }, { @@ -1077,6 +1184,7 @@ "species": "Coccidioides posadasii", "strain": "str. Silveira", "supercontigs": 54, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000170175.2", "vEuPathDbProject": "FungiDB" }, { @@ -1087,6 +1195,7 @@ "species": "Trichoderma virens", "strain": "Gv29-8", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000170995.1", "vEuPathDbProject": "FungiDB" }, { @@ -1097,6 +1206,7 @@ "species": "Hyaloperonospora arabidopsidis", "strain": "Emoy2", "supercontigs": 3044, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -1107,6 +1217,7 @@ "species": "Hamiltosporidium tvaerminnensis", "strain": "OER-3-3", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1117,6 +1228,7 @@ "species": "Rhodnius prolixus", "strain": "CDC", "supercontigs": 16537, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000181055.3", "vEuPathDbProject": "VectorBase" }, { @@ -1127,6 +1239,7 @@ "species": "Malassezia globosa", "strain": "CBS 7966", "supercontigs": 67, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -1137,6 +1250,7 @@ "species": "Giardia Assemblage B", "strain": "isolate GS", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -1147,6 +1261,7 @@ "species": "Spizellomyces punctatus", "strain": "DAOM BR117", "supercontigs": 38, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182565.1", "vEuPathDbProject": "FungiDB" }, { @@ -1157,6 +1272,7 @@ "species": "Giardia Assemblage E", "strain": "isolate P15", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -1167,6 +1283,7 @@ "species": "Candida parapsilosis", "strain": "CDC317", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182765.1", "vEuPathDbProject": "FungiDB" }, { @@ -1177,6 +1294,7 @@ "species": "Coprinopsis cinerea", "strain": "okayama7#130", "supercontigs": 67, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182895.1", "vEuPathDbProject": "FungiDB" }, { @@ -1187,6 +1305,7 @@ "species": "Neurospora crassa", "strain": "OR74A", "supercontigs": 13, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182925.2", "vEuPathDbProject": "FungiDB" }, { @@ -1197,6 +1316,7 @@ "species": "Candida albicans", "strain": "SC5314", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182965.3", "vEuPathDbProject": "FungiDB" }, { @@ -1207,6 +1327,7 @@ "species": "Nosema ceranae", "strain": "BRL01", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182985.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1217,6 +1338,7 @@ "species": "Pseudogymnoascus destructans", "strain": "20631-21", "supercontigs": 1846, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184105.1", "vEuPathDbProject": "FungiDB" }, { @@ -1227,6 +1349,7 @@ "species": "Aspergillus oryzae", "strain": "RIB40", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000184455.2", "vEuPathDbProject": "FungiDB" }, { @@ -1237,6 +1360,7 @@ "species": "Cryptococcus gattii VGI", "strain": "WM276", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000185945.1", "vEuPathDbProject": "FungiDB" }, { @@ -1247,6 +1371,7 @@ "species": "Trypanosoma cruzi", "strain": "Sylvio X10/1-2012", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000188675.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -1257,6 +1382,7 @@ "species": "Nematocida parisii", "strain": "ERTm3", "supercontigs": 53, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000190615.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1267,6 +1393,7 @@ "species": "Vavraia culicis", "strain": "subsp. floridensis", "supercontigs": 379, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000192795.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1277,6 +1404,7 @@ "species": "Magnaporthiopsis poae", "strain": "ATCC 64411", "supercontigs": 205, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000193285.1", "vEuPathDbProject": "FungiDB" }, { @@ -1287,6 +1415,7 @@ "species": "Melampsora larici-populina", "strain": "98AG31", "supercontigs": 462, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000204055.1", "vEuPathDbProject": "FungiDB" }, { @@ -1297,6 +1426,7 @@ "species": "Ixodes scapularis", "strain": "Wikel", "supercontigs": 369492, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208615.1", "vEuPathDbProject": "VectorBase" }, { @@ -1307,6 +1437,7 @@ "species": "Neospora caninum", "strain": "Liverpool", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208865.1", "vEuPathDbProject": "ToxoDB" }, { @@ -1317,6 +1448,7 @@ "species": "Entamoeba histolytica", "strain": "HM-1:IMSS", "supercontigs": 1496, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000208925.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -1327,6 +1459,7 @@ "species": "Trypanosoma cruzi", "strain": "strain CL Brener", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1337,6 +1470,7 @@ "species": "Trypanosoma cruzi", "strain": "CL Brener Esmeraldo-like", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1347,6 +1481,7 @@ "species": "Trypanosoma cruzi", "strain": "CL Brener Non-Esmeraldo-like", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209065.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1357,6 +1492,7 @@ "species": "Entamoeba dispar", "strain": "SAW760", "supercontigs": 3312, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209125.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -1367,6 +1503,7 @@ "species": "Culex quinquefasciatus", "strain": "Johannesburg", "supercontigs": 3171, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209185.1", "vEuPathDbProject": "VectorBase" }, { @@ -1377,6 +1514,7 @@ "species": "Enterocytozoon bieneusi", "strain": "H348", "supercontigs": 3, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000209485.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1387,6 +1525,7 @@ "species": "Trypanosoma brucei", "strain": "gambiense DAL972", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000210295.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1397,6 +1536,7 @@ "species": "Anopheles darlingi", "strain": "Coari", "supercontigs": 2220, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000211455.3", "vEuPathDbProject": "VectorBase" }, { @@ -1407,6 +1547,7 @@ "species": "Neurospora tetrasperma", "strain": "FGSC 2508", "supercontigs": 81, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000213175.1", "vEuPathDbProject": "FungiDB" }, { @@ -1417,6 +1558,7 @@ "species": "Zymoseptoria tritici", "strain": "IPO323", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000219625.1", "vEuPathDbProject": "FungiDB" }, { @@ -1427,6 +1569,7 @@ "species": "Encephalitozoon cuniculi", "strain": "EC3", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221245.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1437,6 +1580,7 @@ "species": "Encephalitozoon cuniculi", "strain": "EC2", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221265.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1447,6 +1591,7 @@ "species": "Encephalitozoon cuniculi", "strain": "EC1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000221285.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1457,6 +1602,7 @@ "species": "Gregarina niphandrodes", "strain": "Unknown strain", "supercontigs": 469, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000223845.1", "vEuPathDbProject": "CryptoDB" }, { @@ -1467,6 +1613,7 @@ "species": "Toxoplasma gondii", "strain": "RUB", "supercontigs": 2424, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1477,6 +1624,7 @@ "species": "Toxoplasma gondii", "strain": "TgCATBr9", "supercontigs": 2452, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1487,6 +1635,7 @@ "species": "Toxoplasma gondii", "strain": "VAND", "supercontigs": 2137, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1497,6 +1646,7 @@ "species": "Toxoplasma gondii", "strain": "MAS", "supercontigs": 2180, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1507,6 +1657,7 @@ "species": "Toxoplasma gondii", "strain": "p89", "supercontigs": 2150, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1517,6 +1668,7 @@ "species": "Toxoplasma gondii", "strain": "FOU", "supercontigs": 2869, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1527,6 +1679,7 @@ "species": "Epichloe glyceriae", "strain": "E277", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000225285.2", "vEuPathDbProject": "FungiDB" }, { @@ -1537,6 +1690,7 @@ "species": "Cordyceps militaris", "strain": "CM01", "supercontigs": 32, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000225605.1", "vEuPathDbProject": "FungiDB" }, { @@ -1547,6 +1701,7 @@ "species": "Thermothelomyces thermophilus", "strain": "ATCC 42464", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226095.1", "vEuPathDbProject": "FungiDB" }, { @@ -1557,6 +1712,7 @@ "species": "Penicillium rubens", "strain": "Wisconsin 54-1255", "supercontigs": 49, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226395.1", "vEuPathDbProject": "FungiDB" }, { @@ -1567,6 +1723,7 @@ "species": "Podospora anserina", "strain": "S mat+", "supercontigs": 33, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000226545.1", "vEuPathDbProject": "FungiDB" }, { @@ -1577,6 +1734,7 @@ "species": "Leishmania donovani", "strain": "BPK282A1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000227135.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1587,6 +1745,7 @@ "species": "Trypanosoma vivax", "strain": "Y486", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227375.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1597,6 +1756,7 @@ "species": "Trypanosoma congolense", "strain": "IL3000", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000227395.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -1607,6 +1767,7 @@ "species": "Sporisorium reilianum", "strain": "SRZ2", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230245.1", "vEuPathDbProject": "FungiDB" }, { @@ -1617,6 +1778,7 @@ "species": "Plenodomus lingam", "strain": "JN3", "supercontigs": 76, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230375.1", "vEuPathDbProject": "FungiDB" }, { @@ -1627,6 +1789,7 @@ "species": "Aspergillus niger", "strain": "ATCC 1015", "supercontigs": 24, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230395.2", "vEuPathDbProject": "FungiDB" }, { @@ -1637,6 +1800,7 @@ "species": "Edhazardia aedis", "strain": "USNM 41457", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000230595.3", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1647,6 +1811,7 @@ "species": "Exophiala dermatitidis", "strain": "NIH/UT8656", "supercontigs": 10, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000230625.1", "vEuPathDbProject": "FungiDB" }, { @@ -1657,6 +1822,7 @@ "species": "Vittaforma corneae", "strain": "ATCC 50505", "supercontigs": 220, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000231115.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1667,6 +1833,7 @@ "species": "Leishmania mexicana", "strain": "MHOM/GT/2001/U1103", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000234665.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1677,6 +1844,7 @@ "species": "Aspergillus luchuensis", "strain": "IFO 4308", "supercontigs": 146, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000239835.2", "vEuPathDbProject": "FungiDB" }, { @@ -1687,6 +1855,7 @@ "species": "Phytophthora parasitica", "strain": "INRA-310", "supercontigs": 708, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000247585.1", "vEuPathDbProject": "FungiDB" }, { @@ -1697,6 +1866,7 @@ "species": "Nematocida ausubeli", "strain": "ERTm2", "supercontigs": 202, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250695.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1707,6 +1877,7 @@ "species": "Leishmania major", "strain": "strain SD 75.1", "supercontigs": 36, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000250755.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -1717,6 +1888,7 @@ "species": "Toxoplasma gondii", "strain": "ARI", "supercontigs": 2723, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1727,6 +1899,7 @@ "species": "Nematocida parisii", "strain": "ERTm1", "supercontigs": 65, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000250985.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1737,6 +1910,7 @@ "species": "Toxoplasma gondii", "strain": "CAST", "supercontigs": 2656, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1747,6 +1921,7 @@ "species": "Toxoplasma gondii", "strain": "TgCatPRC2", "supercontigs": 3060, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1757,6 +1932,7 @@ "species": "Hammondia hammondi", "strain": "strain H.H.34", "supercontigs": 14860, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000258005.1", "vEuPathDbProject": "ToxoDB" }, { @@ -1767,6 +1943,7 @@ "species": "Toxoplasma gondii", "strain": "TgCATBr5", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1777,6 +1954,7 @@ "species": "Fusarium odoratissimum", "strain": "NRRL 54006", "supercontigs": 418, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000260195.1", "vEuPathDbProject": "FungiDB" }, { @@ -1787,6 +1965,7 @@ "species": "Fusarium oxysporum", "strain": "f. sp. melonis 26406", "supercontigs": 1146, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000260495.2", "vEuPathDbProject": "FungiDB" }, { @@ -1797,6 +1976,7 @@ "species": "Phlebotomus papatasi", "strain": "Israel", "supercontigs": 106826, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000262795.1", "vEuPathDbProject": "VectorBase" }, { @@ -1807,6 +1987,7 @@ "species": "Lutzomyia longipalpis", "strain": "Jacobina", "supercontigs": 11532, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000265325.1", "vEuPathDbProject": "VectorBase" }, { @@ -1817,6 +1998,7 @@ "species": "Tremella mesenterica", "strain": "DSM 1558", "supercontigs": 45, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271645.1", "vEuPathDbProject": "FungiDB" }, { @@ -1827,6 +2009,7 @@ "species": "Fusarium oxysporum", "strain": "Fo47", "supercontigs": 124, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000271705.2", "vEuPathDbProject": "FungiDB" }, { @@ -1837,6 +2020,7 @@ "species": "Fusarium oxysporum", "strain": "NRRL 32931", "supercontigs": 168, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000271745.1", "vEuPathDbProject": "FungiDB" }, { @@ -1847,6 +2031,7 @@ "species": "Encephalitozoon hellem", "strain": "ATCC 50504", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000277815.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1857,6 +2042,7 @@ "species": "Toxoplasma gondii", "strain": "CtCo5", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1867,6 +2053,7 @@ "species": "Encephalitozoon romaleae", "strain": "SJ-2008", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000280035.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1877,6 +2064,7 @@ "species": "Saprolegnia diclina", "strain": "VS20", "supercontigs": 390, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000281045.1", "vEuPathDbProject": "FungiDB" }, { @@ -1887,6 +2075,7 @@ "species": "Trichosporon asahii", "strain": "var. asahii CBS 2479", "supercontigs": 77, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000293215.1", "vEuPathDbProject": "FungiDB" }, { @@ -1897,6 +2086,7 @@ "species": "Trypanosoma cruzi", "strain": "marinkellei strain B7", "supercontigs": 16783, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300495.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1907,6 +2097,7 @@ "species": "Anopheles stephensi", "strain": "Indian", "supercontigs": 23371, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000300775.2", "vEuPathDbProject": "VectorBase" }, { @@ -1917,6 +2108,7 @@ "species": "Macrophomina phaseolina", "strain": "MS6", "supercontigs": 1506, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000302655.1", "vEuPathDbProject": "FungiDB" }, { @@ -1927,6 +2119,7 @@ "species": "Taphrina deformans", "strain": "PYCC 5710", "supercontigs": 394, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000312925.2", "vEuPathDbProject": "FungiDB" }, { @@ -1937,6 +2130,7 @@ "species": "Acanthamoeba castellanii", "strain": "str. Neff", "supercontigs": 384, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000313135.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -1947,6 +2141,7 @@ "species": "Anncaliia algerae", "strain": "Undeen", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000313815.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1957,6 +2152,7 @@ "species": "Trachipleistophora hominis", "strain": "Unknown strain", "supercontigs": 310, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000316135.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -1967,6 +2163,7 @@ "species": "Plasmodium cynomolgi", "strain": "strain B", "supercontigs": 1649, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000321355.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -1977,6 +2174,7 @@ "species": "Toxoplasma gondii", "strain": "GAB2-2007-GAL-DOM2", "supercontigs": 2481, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -1987,6 +2185,7 @@ "species": "Trypanosoma cruzi", "strain": "strain Esmeraldo", "supercontigs": 796, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000327425.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -1997,6 +2196,7 @@ "species": "Ustilago maydis", "strain": "521", "supercontigs": 4, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000328475.2", "vEuPathDbProject": "FungiDB" }, { @@ -2007,6 +2207,7 @@ "species": "Entamoeba invadens", "strain": "IP1", "supercontigs": 1144, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000330505.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -2017,6 +2218,7 @@ "species": "Crithidia fasciculata", "strain": "strain Cf-Cl", "supercontigs": 427, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331325.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2027,6 +2229,7 @@ "species": "Leishmania major", "strain": "strain LV39c5", "supercontigs": 773, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331345.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2037,6 +2240,7 @@ "species": "Trypanosoma cruzi", "strain": "JR cl. 4", "supercontigs": 560, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000331405.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2047,6 +2251,7 @@ "species": "Endotrypanum monterogeii", "strain": "strain LV88", "supercontigs": 1925, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333855.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2057,6 +2262,7 @@ "species": "Pneumocystis jirovecii", "strain": "SE8", "supercontigs": 328, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000333975.2", "vEuPathDbProject": "FungiDB" }, { @@ -2067,6 +2273,7 @@ "species": "Toxoplasma gondii", "strain": "COUG", "supercontigs": 105, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -2077,6 +2284,7 @@ "species": "Entamoeba histolytica", "strain": "KU27", "supercontigs": 1796, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -2087,6 +2295,7 @@ "species": "Pseudocercospora fijiensis", "strain": "CIRAD86", "supercontigs": 56, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000340215.1", "vEuPathDbProject": "FungiDB" }, { @@ -2097,6 +2306,7 @@ "species": "Leishmania braziliensis", "strain": "MHOM/BR/75/M2903", "supercontigs": 709, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340355.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2107,6 +2317,7 @@ "species": "Leishmania panamensis", "strain": "MHOM/COL/81/L13", "supercontigs": 820, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000340495.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2117,6 +2328,7 @@ "species": "Theileria equi", "strain": "strain WA", "supercontigs": 8, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000342415.1", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -2127,6 +2339,7 @@ "species": "Entamoeba histolytica", "strain": "HM-1:IMSS-B", "supercontigs": 1938, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -2137,6 +2350,7 @@ "species": "Entamoeba histolytica", "strain": "HM-3:IMSS", "supercontigs": 1880, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -2147,6 +2361,7 @@ "species": "Claviceps purpurea", "strain": "20.1", "supercontigs": 191, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000347355.1", "vEuPathDbProject": "FungiDB" }, { @@ -2157,6 +2372,7 @@ "species": "Pneumocystis murina", "strain": "B123", "supercontigs": 20, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000349005.2", "vEuPathDbProject": "FungiDB" }, { @@ -2167,6 +2383,7 @@ "species": "Anopheles minimus", "strain": "MINIMUS1", "supercontigs": 678, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349025.1", "vEuPathDbProject": "VectorBase" }, { @@ -2177,6 +2394,7 @@ "species": "Anopheles stephensi", "strain": "SDA-500", "supercontigs": 1110, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349045.1", "vEuPathDbProject": "VectorBase" }, { @@ -2187,6 +2405,7 @@ "species": "Anopheles quadriannulatus", "strain": "SANGWE", "supercontigs": 2823, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349065.1", "vEuPathDbProject": "VectorBase" }, { @@ -2197,6 +2416,7 @@ "species": "Anopheles epiroticus", "strain": "Epiroticus2", "supercontigs": 2673, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349105.1", "vEuPathDbProject": "VectorBase" }, { @@ -2207,6 +2427,7 @@ "species": "Anopheles albimanus", "strain": "STECLA", "supercontigs": 196, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349125.2", "vEuPathDbProject": "VectorBase" }, { @@ -2217,6 +2438,7 @@ "species": "Anopheles dirus", "strain": "WRAIR2", "supercontigs": 1266, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349145.1", "vEuPathDbProject": "VectorBase" }, { @@ -2227,6 +2449,7 @@ "species": "Anopheles christyi", "strain": "ACHKN1017", "supercontigs": 30369, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349165.1", "vEuPathDbProject": "VectorBase" }, { @@ -2237,6 +2460,7 @@ "species": "Anopheles arabiensis", "strain": "Dongola", "supercontigs": 1214, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000349185.1", "vEuPathDbProject": "VectorBase" }, { @@ -2247,6 +2471,7 @@ "species": "Fusarium oxysporum", "strain": "f. sp. cubense race 1", "supercontigs": 1341, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350345.1", "vEuPathDbProject": "FungiDB" }, { @@ -2257,6 +2482,7 @@ "species": "Fusarium odoratissimum", "strain": "strain race 4", "supercontigs": 840, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000350365.1", "vEuPathDbProject": "FungiDB" }, { @@ -2267,6 +2493,7 @@ "species": "Cyphellophora europaea", "strain": "CBS 101466", "supercontigs": 19, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365145.1", "vEuPathDbProject": "FungiDB" }, { @@ -2277,6 +2504,7 @@ "species": "Cladophialophora carrionii", "strain": "CBS 160.54", "supercontigs": 19, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000365165.1", "vEuPathDbProject": "FungiDB" }, { @@ -2287,6 +2515,7 @@ "species": "Trypanosoma cruzi", "strain": "Tula cl2", "supercontigs": 1780, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000365225.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2297,6 +2526,7 @@ "species": "Entamoeba histolytica", "strain": "HM-1:IMSS-A", "supercontigs": 1685, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -2307,6 +2537,7 @@ "species": "Musca domestica", "strain": "aabys", "supercontigs": 20487, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000371365.1", "vEuPathDbProject": "VectorBase" }, { @@ -2317,6 +2548,7 @@ "species": "Nosema bombycis", "strain": "CQ1", "supercontigs": 1607, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000383075.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -2327,6 +2559,7 @@ "species": "Anncaliia algerae", "strain": "PRA109", "supercontigs": 7113, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385855.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -2337,6 +2570,7 @@ "species": "Anncaliia algerae", "strain": "PRA339", "supercontigs": 431, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000385875.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -2347,6 +2581,7 @@ "species": "Globisporangium irregulare", "strain": "DAOM BR486", "supercontigs": 5887, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2357,6 +2592,7 @@ "species": "Pythium aphanidermatum", "strain": "DAOM BR444", "supercontigs": 1774, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2367,6 +2603,7 @@ "species": "Globisporangium iwayamae", "strain": "DAOM BR242034", "supercontigs": 11542, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2377,6 +2614,7 @@ "species": "Pythium arrhenomanes", "strain": "ATCC 12531", "supercontigs": 10972, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2387,6 +2625,7 @@ "species": "Globisporangium ultimum", "strain": "var. sporangiiferum BR650", "supercontigs": 5482, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2397,6 +2636,7 @@ "species": "Phytopythium vexans", "strain": "DAOM BR484", "supercontigs": 3685, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2407,6 +2647,7 @@ "species": "Verticillium dahliae", "strain": "JR2", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000400815.2", "vEuPathDbProject": "FungiDB" }, { @@ -2417,6 +2658,7 @@ "species": "Mucor circinelloides", "strain": "1006PhL", "supercontigs": 470, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000401635.1", "vEuPathDbProject": "FungiDB" }, { @@ -2427,6 +2669,7 @@ "species": "Leishmania martiniquensis", "strain": "LEM2494", "supercontigs": 215, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000409445.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2437,6 +2680,7 @@ "species": "Leishmania arabica", "strain": "strain LEM1108", "supercontigs": 132, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410695.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2447,6 +2691,7 @@ "species": "Leishmania tropica", "strain": "L590", "supercontigs": 124, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410715.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2457,6 +2702,7 @@ "species": "Ophiostoma piceae", "strain": "UAMH 11346", "supercontigs": 45, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410735.1", "vEuPathDbProject": "FungiDB" }, { @@ -2467,6 +2713,7 @@ "species": "Leishmania enriettii", "strain": "strain LEM3045", "supercontigs": 459, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000410755.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2477,6 +2724,7 @@ "species": "Spraguea lophii", "strain": "42_110", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000430065.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -2487,6 +2735,7 @@ "species": "Leishmania amazonensis", "strain": "MHOM/BR/71973/M2269", "supercontigs": 2627, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000438535.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2497,6 +2746,7 @@ "species": "Anopheles sinensis", "strain": "China", "supercontigs": 9592, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441895.2", "vEuPathDbProject": "VectorBase" }, { @@ -2507,6 +2757,7 @@ "species": "Leishmania turanica", "strain": "strain LEM423", "supercontigs": 183, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000441995.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2517,6 +2768,7 @@ "species": "Leishmania gerbilli", "strain": "strain LEM452", "supercontigs": 106, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000443025.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2527,6 +2779,7 @@ "species": "Leishmania aethiopica", "strain": "L147", "supercontigs": 124, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000444285.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -2537,6 +2790,7 @@ "species": "Nosema apis", "strain": "BRL 01", "supercontigs": 554, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000447185.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -2547,6 +2801,7 @@ "species": "Biomphalaria glabrata", "strain": "BB02", "supercontigs": 331400, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -2557,6 +2812,7 @@ "species": "Leishmania donovani", "strain": "strain BHU 1220", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000470725.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2567,6 +2823,7 @@ "species": "Anopheles sinensis", "strain": "SINENSIS", "supercontigs": 10448, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000472065.2", "vEuPathDbProject": "VectorBase" }, { @@ -2577,6 +2834,7 @@ "species": "Anopheles maculatus", "strain": "maculatus3", "supercontigs": 47797, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473185.1", "vEuPathDbProject": "VectorBase" }, { @@ -2587,6 +2845,7 @@ "species": "Anopheles culicifacies", "strain": "A-37", "supercontigs": 16162, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473375.1", "vEuPathDbProject": "VectorBase" }, { @@ -2597,6 +2856,7 @@ "species": "Anopheles farauti", "strain": "FAR1", "supercontigs": 310, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473445.2", "vEuPathDbProject": "VectorBase" }, { @@ -2607,6 +2867,7 @@ "species": "Anopheles atroparvus", "strain": "EBRO", "supercontigs": 1315, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473505.1", "vEuPathDbProject": "VectorBase" }, { @@ -2617,6 +2878,7 @@ "species": "Anopheles melas", "strain": "CM1001059_A", "supercontigs": 20229, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473525.2", "vEuPathDbProject": "VectorBase" }, { @@ -2627,6 +2889,7 @@ "species": "Anopheles merus", "strain": "MAF", "supercontigs": 2027, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000473845.2", "vEuPathDbProject": "VectorBase" }, { @@ -2637,6 +2900,7 @@ "species": "Trypanosoma rangeli", "strain": "SC58", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000492115.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2647,6 +2911,7 @@ "species": "Trypanosoma cruzi", "strain": "Dm28c 2014", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000496795.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2657,6 +2922,7 @@ "species": "Spironucleus salmonicida", "strain": "ATCC50377", "supercontigs": 33, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -2667,6 +2933,7 @@ "species": "Giardia Assemblage A", "strain": "2 isolate DH", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -2677,6 +2944,7 @@ "species": "Giardia Assemblage B", "strain": "isolate GS_B", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -2687,6 +2955,7 @@ "species": "Naegleria fowleri", "strain": "ATCC 30863", "supercontigs": 1124, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -2697,6 +2966,7 @@ "species": "Eimeria necatrix", "strain": "Houghton", "supercontigs": 3707, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499385.1", "vEuPathDbProject": "ToxoDB" }, { @@ -2707,6 +2977,7 @@ "species": "Eimeria acervulina", "strain": "Houghton", "supercontigs": 3415, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499425.1", "vEuPathDbProject": "ToxoDB" }, { @@ -2717,6 +2988,7 @@ "species": "Eimeria praecox", "strain": "Houghton", "supercontigs": 21348, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -2727,6 +2999,7 @@ "species": "Eimeria tenella", "strain": "strain Houghton", "supercontigs": 4664, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -2737,6 +3010,7 @@ "species": "Eimeria maxima", "strain": "Weybridge", "supercontigs": 3564, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499605.1", "vEuPathDbProject": "ToxoDB" }, { @@ -2747,6 +3021,7 @@ "species": "Eimeria brunetti", "strain": "Houghton", "supercontigs": 8575, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -2757,6 +3032,7 @@ "species": "Eimeria mitis", "strain": "Houghton", "supercontigs": 15978, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000499745.2", "vEuPathDbProject": "ToxoDB" }, { @@ -2767,6 +3043,7 @@ "species": "Kwoniella heveanensis", "strain": "CBS 569", "supercontigs": 242, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000507425.3", "vEuPathDbProject": "FungiDB" }, { @@ -2777,6 +3054,7 @@ "species": "Kwoniella mangrovensis", "strain": "CBS8507", "supercontigs": 62, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2787,6 +3065,7 @@ "species": "Kwoniella dejecticola", "strain": "CBS 10117", "supercontigs": 13, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2797,6 +3076,7 @@ "species": "Kwoniella bestiolae", "strain": "CBS 10118", "supercontigs": 12, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -2807,6 +3087,7 @@ "species": "Aphanomyces astaci", "strain": "strain APO3", "supercontigs": 835, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520075.1", "vEuPathDbProject": "FungiDB" }, { @@ -2817,6 +3098,7 @@ "species": "Aphanomyces invadans", "strain": "NJM9701", "supercontigs": 481, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000520115.1", "vEuPathDbProject": "FungiDB" }, { @@ -2827,6 +3109,7 @@ "species": "Plasmodium inui", "strain": "San Antonio 1", "supercontigs": 323, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000524495.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -2837,6 +3120,7 @@ "species": "Plasmodium vinckei", "strain": "petteri strain CR", "supercontigs": 66, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -2847,6 +3131,7 @@ "species": "Cladophialophora yegresii", "strain": "CBS 114405", "supercontigs": 8, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585515.1", "vEuPathDbProject": "FungiDB" }, { @@ -2857,6 +3142,7 @@ "species": "Cladophialophora psammophila", "strain": "CBS 110553", "supercontigs": 123, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000585535.1", "vEuPathDbProject": "FungiDB" }, { @@ -2867,6 +3153,7 @@ "species": "Cimex lectularius", "strain": "Harlan", "supercontigs": 417, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000648675.2", "vEuPathDbProject": "VectorBase" }, { @@ -2877,6 +3164,7 @@ "species": "Glossina fuscipes", "strain": "IAEA", "supercontigs": 2395, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671735.1", "vEuPathDbProject": "VectorBase" }, { @@ -2887,6 +3175,7 @@ "species": "Glossina brevipalpis", "strain": "IAEA", "supercontigs": 1651, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000671755.1", "vEuPathDbProject": "VectorBase" }, { @@ -2897,6 +3186,7 @@ "species": "Glossina pallidipes", "strain": "IAEA", "supercontigs": 1726, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688715.1", "vEuPathDbProject": "VectorBase" }, { @@ -2907,6 +3197,7 @@ "species": "Glossina austeni", "strain": "TTRI", "supercontigs": 2205, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000688735.1", "vEuPathDbProject": "VectorBase" }, { @@ -2917,6 +3208,7 @@ "species": "Trypanosoma grayi", "strain": "ANR4", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691245.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -2927,6 +3219,7 @@ "species": "Babesia microti", "strain": "strain RI", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000691945.2", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -2937,6 +3230,7 @@ "species": "Pleurotus ostreatus", "strain": "PC15", "supercontigs": 12, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000697685.1", "vEuPathDbProject": "FungiDB" }, { @@ -2947,6 +3241,7 @@ "species": "Plasmodium vinckei", "strain": "vinckei strain vinckei", "supercontigs": 49, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709005.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -2957,6 +3252,7 @@ "species": "Exophiala aquamarina", "strain": "CBS 119918", "supercontigs": 151, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000709125.1", "vEuPathDbProject": "FungiDB" }, { @@ -2967,6 +3263,7 @@ "species": "Babesia bigemina", "strain": "strain BOND", "supercontigs": 478, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -2977,6 +3274,7 @@ "species": "Lichtheimia corymbifera", "strain": "JMRC:FSU:9682", "supercontigs": 209, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000723665.1", "vEuPathDbProject": "FungiDB" }, { @@ -2987,6 +3285,7 @@ "species": "Plasmodium reichenowi", "strain": "CDC", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000723685.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -2997,6 +3296,7 @@ "species": "Sarcocystis neurona", "strain": "SN3", "supercontigs": 171, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -3007,6 +3307,7 @@ "species": "Scedosporium apiospermum", "strain": "IHEM 14462", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000732125.1", "vEuPathDbProject": "FungiDB" }, { @@ -3017,6 +3318,7 @@ "species": "Stachybotrys chartarum", "strain": "IBT 40293", "supercontigs": 2342, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000732565.1", "vEuPathDbProject": "FungiDB" }, { @@ -3027,6 +3329,7 @@ "species": "Nematocida ausubeli", "strain": "ERTm6", "supercontigs": 22, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000738915.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3037,6 +3340,7 @@ "species": "Theileria orientalis", "strain": "strain Shintoku", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000740895.1", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3047,6 +3351,7 @@ "species": "Leishmania panamensis", "strain": "strain MHOM/PA/94/PSC-1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000755165.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -3057,6 +3362,7 @@ "species": "Mitosporidium daphniae", "strain": "UGP3", "supercontigs": 610, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000760515.2", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3067,6 +3373,7 @@ "species": "Cyclospora cayetanensis", "strain": "strain CHN_HEN01", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000769155.1", "vEuPathDbProject": "ToxoDB" }, { @@ -3077,6 +3384,7 @@ "species": "Penicillium expansum", "strain": "d1", "supercontigs": 270, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000769735.1", "vEuPathDbProject": "FungiDB" }, { @@ -3087,6 +3395,7 @@ "species": "Ordospora colligata", "strain": "OC4", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000803265.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3097,6 +3406,7 @@ "species": "Cryptosporidium hominis", "strain": "37999", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3107,6 +3417,7 @@ "species": "Metarhizium anisopliae", "strain": "ARSEF 549", "supercontigs": 74, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000814975.1", "vEuPathDbProject": "FungiDB" }, { @@ -3117,6 +3428,7 @@ "species": "Glossina palpalis", "strain": "IAEA", "supercontigs": 3926, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000818775.1", "vEuPathDbProject": "VectorBase" }, { @@ -3127,6 +3439,7 @@ "species": "Sporothrix brasiliensis", "strain": "5110", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000820605.1", "vEuPathDbProject": "FungiDB" }, { @@ -3137,6 +3450,7 @@ "species": "Acanthamoeba astronyxis", "strain": "Unknown", "supercontigs": 98248, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3147,6 +3461,7 @@ "species": "Acanthamoeba culbertsoni", "strain": "A1", "supercontigs": 72411, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3157,6 +3472,7 @@ "species": "Acanthamoeba lenticulata", "strain": "PD2S", "supercontigs": 79048, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3167,6 +3483,7 @@ "species": "Acanthamoeba palestinensis", "strain": "Reich", "supercontigs": 26188, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3177,6 +3494,7 @@ "species": "Acanthamoeba triangularis", "strain": "SH621", "supercontigs": 56742, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3187,6 +3505,7 @@ "species": "Acanthamoeba sp.", "strain": "T4B-type", "supercontigs": 224482, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3197,6 +3516,7 @@ "species": "Acanthamoeba sp.", "strain": "Incertae_sedis", "supercontigs": 24098, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3207,6 +3527,7 @@ "species": "Acanthamoeba rhysodes", "strain": "Singh", "supercontigs": 62836, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3217,6 +3538,7 @@ "species": "Acanthamoeba lugdunensis", "strain": "L3a", "supercontigs": 67459, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3227,6 +3549,7 @@ "species": "Acanthamoeba quina", "strain": "Vil3", "supercontigs": 60490, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3237,6 +3560,7 @@ "species": "Acanthamoeba mauritaniensis", "strain": "1652", "supercontigs": 67233, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3247,6 +3571,7 @@ "species": "Acanthamoeba castellanii", "strain": "Ma", "supercontigs": 221748, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3257,6 +3582,7 @@ "species": "Acanthamoeba sp.", "strain": "Galka", "supercontigs": 224137, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3267,6 +3593,7 @@ "species": "Sarcoptes scabiei", "strain": "Arlian", "supercontigs": 18859, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000828355.1", "vEuPathDbProject": "VectorBase" }, { @@ -3277,6 +3604,7 @@ "species": "Cryptosporidium sp.", "strain": "chipmunk LX-2015", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3287,6 +3615,7 @@ "species": "Fonsecaea pedrosoi", "strain": "CBS 271.37", "supercontigs": 11, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835455.1", "vEuPathDbProject": "FungiDB" }, { @@ -3297,6 +3626,7 @@ "species": "Cladophialophora bantiana", "strain": "CBS 173.52", "supercontigs": 60, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835475.1", "vEuPathDbProject": "FungiDB" }, { @@ -3307,6 +3637,7 @@ "species": "Cladophialophora immunda", "strain": "strain CBS 83496", "supercontigs": 277, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835495.1", "vEuPathDbProject": "FungiDB" }, { @@ -3317,6 +3648,7 @@ "species": "Exophiala oligosperma", "strain": "strain CBS 72588", "supercontigs": 143, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835515.1", "vEuPathDbProject": "FungiDB" }, { @@ -3327,6 +3659,7 @@ "species": "Rhinocladiella mackenziei", "strain": "CBS 650.93", "supercontigs": 17, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000835555.1", "vEuPathDbProject": "FungiDB" }, { @@ -3337,6 +3670,7 @@ "species": "Cryptococcus gattii VGI", "strain": "EJB2", "supercontigs": 282, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000835745.1", "vEuPathDbProject": "FungiDB" }, { @@ -3347,6 +3681,7 @@ "species": "Cryptococcus gattii VGIV", "strain": "IND107", "supercontigs": 34, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -3357,6 +3692,7 @@ "species": "Exophiala spinifera", "strain": "CBS 89968", "supercontigs": 28, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836115.1", "vEuPathDbProject": "FungiDB" }, { @@ -3367,6 +3703,7 @@ "species": "Exophiala mesophila", "strain": "strain CBS 40295", "supercontigs": 9, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836275.1", "vEuPathDbProject": "FungiDB" }, { @@ -3377,6 +3714,7 @@ "species": "Verruconis gallopava", "strain": "strain CBS 43764", "supercontigs": 367, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836295.1", "vEuPathDbProject": "FungiDB" }, { @@ -3387,6 +3725,7 @@ "species": "Fonsecaea multimorphosa", "strain": "CBS 102226", "supercontigs": 67, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000836435.1", "vEuPathDbProject": "FungiDB" }, { @@ -3397,6 +3736,7 @@ "species": "Cryptococcus gattii VGIII", "strain": "CA1873", "supercontigs": 33, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000855695.1", "vEuPathDbProject": "FungiDB" }, { @@ -3407,6 +3747,7 @@ "species": "Sarcocystis neurona", "strain": "SO SN1", "supercontigs": 3066, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -3417,6 +3758,7 @@ "species": "Cryptococcus gattii VGI", "strain": "NT10", "supercontigs": 226, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000935105.1", "vEuPathDbProject": "FungiDB" }, { @@ -3427,6 +3769,7 @@ "species": "Plasmodium fragile", "strain": "strain nilgiri", "supercontigs": 247, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000956335.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -3437,6 +3780,7 @@ "species": "Sporothrix schenckii", "strain": "1099-18", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000961545.1", "vEuPathDbProject": "FungiDB" }, { @@ -3447,6 +3791,7 @@ "species": "Fusarium graminearum", "strain": "DAOM 233423", "supercontigs": 869, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000966635.1", "vEuPathDbProject": "FungiDB" }, { @@ -3457,6 +3802,7 @@ "species": "Ixodes ricinus", "strain": "Charles River", "supercontigs": 204516, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_000973045.2", "vEuPathDbProject": "VectorBase" }, { @@ -3467,6 +3813,7 @@ "species": "Nosema ceranae", "strain": "strain PA08_1199", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000988165.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3477,6 +3824,7 @@ "species": "Emmonsia crescens", "strain": "UAMH 3008", "supercontigs": 1734, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001008285.1", "vEuPathDbProject": "FungiDB" }, { @@ -3487,6 +3835,7 @@ "species": "Stomoxys calcitrans", "strain": "USDA", "supercontigs": 12042, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001015335.1", "vEuPathDbProject": "VectorBase" }, { @@ -3497,6 +3846,7 @@ "species": "Pythium insidiosum", "strain": "Pi-s", "supercontigs": 1192, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -3507,6 +3857,7 @@ "species": "Glossina morsitans", "strain": "Yale", "supercontigs": 13807, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001077435.1", "vEuPathDbProject": "VectorBase" }, { @@ -3517,6 +3868,7 @@ "species": "Babesia divergens", "strain": "strain Rouen 1987", "supercontigs": 141, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3527,6 +3879,7 @@ "species": "Encephalitozoon cuniculi", "strain": "EcunIII-L", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001078035.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3537,6 +3890,7 @@ "species": "Vitrella brassicaformis", "strain": "CCMP3155", "supercontigs": 1064, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3547,6 +3901,7 @@ "species": "Balamuthia mandrillaris", "strain": "CDC-V039", "supercontigs": 1604, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3557,6 +3912,7 @@ "species": "[Candida] auris", "strain": "6684", "supercontigs": 99, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001189475.1", "vEuPathDbProject": "FungiDB" }, { @@ -3567,6 +3923,7 @@ "species": "Balamuthia mandrillaris", "strain": "strain 2046", "supercontigs": 14699, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -3577,6 +3934,7 @@ "species": "Puccinia sorghi", "strain": "strain RO10H11247", "supercontigs": 15715, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001263375.1", "vEuPathDbProject": "FungiDB" }, { @@ -3587,6 +3945,7 @@ "species": "Madurella mycetomatis", "strain": "mm55", "supercontigs": 804, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001275765.2", "vEuPathDbProject": "FungiDB" }, { @@ -3597,6 +3956,7 @@ "species": "Malassezia pachydermatis", "strain": "CBS 1879", "supercontigs": 91, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001278385.1", "vEuPathDbProject": "FungiDB" }, { @@ -3607,6 +3967,7 @@ "species": "Leptomonas pyrrhocoris", "strain": "H10", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001293395.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -3617,6 +3978,7 @@ "species": "Leptomonas seymouri", "strain": "ATCC 30220", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001299535.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -3627,6 +3989,7 @@ "species": "Byssoonygena ceratinophila", "strain": "isolate UAMH 5669", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430925.1", "vEuPathDbProject": "FungiDB" }, { @@ -3637,6 +4000,7 @@ "species": "Amauroascus mutatus", "strain": "isolate UAMH 3576", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430935.1", "vEuPathDbProject": "FungiDB" }, { @@ -3647,6 +4011,7 @@ "species": "Amauroascus niger", "strain": "isolate UAMH 3544", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430945.1", "vEuPathDbProject": "FungiDB" }, { @@ -3657,6 +4022,7 @@ "species": "Chrysosporium queenslandicum", "strain": "isolate CBS 280.77", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001430955.1", "vEuPathDbProject": "FungiDB" }, { @@ -3667,6 +4033,7 @@ "species": "Pseudoloma neurophilia", "strain": "strain MK1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001432165.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3677,6 +4044,7 @@ "species": "Aedes albopictus", "strain": "Foshan", "supercontigs": 154782, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -3687,6 +4055,7 @@ "species": "Naganishia albida", "strain": "NRRL Y-1402", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001444555.1", "vEuPathDbProject": "FungiDB" }, { @@ -3697,6 +4066,7 @@ "species": "Aspergillus lentulus", "strain": "strain IFM 54703", "supercontigs": 12, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001445615.2", "vEuPathDbProject": "FungiDB" }, { @@ -3707,6 +4077,7 @@ "species": "Debaryomyces fabryi", "strain": "CBS 789", "supercontigs": 534, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001447935.2", "vEuPathDbProject": "FungiDB" }, { @@ -3717,6 +4088,7 @@ "species": "Trypanosoma equiperdum", "strain": "OVI", "supercontigs": 2026, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001457755.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -3727,6 +4099,7 @@ "species": "Bodo saltans", "strain": "strain Lake Konstanz", "supercontigs": 2256, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001460835.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -3737,6 +4110,7 @@ "species": "Pneumocystis jirovecii", "strain": "RU7", "supercontigs": 70, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477535.1", "vEuPathDbProject": "FungiDB" }, { @@ -3747,6 +4121,7 @@ "species": "Cryptosporidium hominis", "strain": "isolate 30976", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3757,6 +4132,7 @@ "species": "Giardia Assemblage A", "strain": "AS175", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -3767,6 +4143,7 @@ "species": "Giardia Assemblage B", "strain": "isolate BAH15c1", "supercontigs": 508, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -3777,6 +4154,7 @@ "species": "Rhizophagus irregularis", "strain": "A1 (DAOM-664342)", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001593125.1", "vEuPathDbProject": "FungiDB" }, { @@ -3787,6 +4165,7 @@ "species": "Toxoplasma gondii", "strain": "RH 2016", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -3797,6 +4176,7 @@ "species": "Cryptosporidium meleagridis", "strain": "strain UKMEL1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3807,6 +4187,7 @@ "species": "Cryptosporidium baileyi", "strain": "TAMU-09Q1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3817,6 +4198,7 @@ "species": "Cryptosporidium hominis", "strain": "isolate TU502_2012", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3827,6 +4209,7 @@ "species": "Cryptosporidium hominis", "strain": "UKH1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -3837,6 +4220,7 @@ "species": "Apiotrichum montevideense", "strain": "JCM 9937", "supercontigs": 61, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001598995.1", "vEuPathDbProject": "FungiDB" }, { @@ -3847,6 +4231,7 @@ "species": "Trichoderma atroviride", "strain": "strain JCM 9410", "supercontigs": 23, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599035.1", "vEuPathDbProject": "FungiDB" }, { @@ -3857,6 +4242,7 @@ "species": "Naganishia albida", "strain": "JCM2334", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001599735.1", "vEuPathDbProject": "FungiDB" }, { @@ -3867,6 +4253,7 @@ "species": "Plasmodium gaboni", "strain": "strain SY75", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001602025.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -3877,6 +4264,7 @@ "species": "Haemoproteus tartakovskyi", "strain": "strain SISKIN1", "supercontigs": 2982, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -3887,6 +4275,7 @@ "species": "Ascosphaera apis", "strain": "ARSEF 7405", "supercontigs": 82, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001636715.1", "vEuPathDbProject": "FungiDB" }, { @@ -3897,6 +4286,7 @@ "species": "Mucor lusitanicus", "strain": "CBS 277.49", "supercontigs": 21, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001638945.1", "vEuPathDbProject": "FungiDB" }, { @@ -3907,6 +4297,7 @@ "species": "Phycomyces blakesleeanus", "strain": "NRRL 1555(-)", "supercontigs": 80, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001638985.1", "vEuPathDbProject": "FungiDB" }, { @@ -3917,6 +4308,7 @@ "species": "Alternaria alternata", "strain": "SRC1lrK2f", "supercontigs": 79, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001642055.1", "vEuPathDbProject": "FungiDB" }, { @@ -3927,6 +4319,7 @@ "species": "Nematocida displodere", "strain": "strain JUm2807", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642395.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3937,6 +4330,7 @@ "species": "Nematocida ironsii", "strain": "ERTm5", "supercontigs": 186, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001642415.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -3947,6 +4341,7 @@ "species": "Monocercomonoides exilis", "strain": "PA203", "supercontigs": 101, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -3957,6 +4352,7 @@ "species": "Babesia microti", "strain": "strain ATCC 30222", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3967,6 +4363,7 @@ "species": "Babesia microti", "strain": "strain ATCC PRA-99", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3977,6 +4374,7 @@ "species": "Babesia microti", "strain": "strain GreenwichYale_Lab_strain_1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3987,6 +4385,7 @@ "species": "Babesia microti", "strain": "strain GI", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -3997,6 +4396,7 @@ "species": "Babesia microti", "strain": "strain Naushon", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4007,6 +4407,7 @@ "species": "Babesia microti", "strain": "Nan_Hs_2011_N11-50", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4017,6 +4418,7 @@ "species": "Emergomyces africanus", "strain": "CBS 136260", "supercontigs": 4444, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001660665.1", "vEuPathDbProject": "FungiDB" }, { @@ -4027,6 +4429,7 @@ "species": "Colletotrichum higginsianum", "strain": "IMI 349063", "supercontigs": 14, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001672515.1", "vEuPathDbProject": "FungiDB" }, { @@ -4037,6 +4440,7 @@ "species": "Plasmodium coatneyi", "strain": "Hackeri", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001680005.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -4047,6 +4451,7 @@ "species": "Cenococcum geophilum", "strain": "1.58", "supercontigs": 268, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001692895.1", "vEuPathDbProject": "FungiDB" }, { @@ -4057,6 +4462,7 @@ "species": "Cladophialophora carrionii", "strain": "KSF", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001700775.1", "vEuPathDbProject": "FungiDB" }, { @@ -4067,6 +4473,7 @@ "species": "Aspergillus cristatus", "strain": "GZAAS20.1005", "supercontigs": 68, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001717485.1", "vEuPathDbProject": "FungiDB" }, { @@ -4077,6 +4484,7 @@ "species": "Cryptococcus depauperatus", "strain": "CBS 7841", "supercontigs": 68, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4087,6 +4495,7 @@ "species": "Cryptococcus depauperatus", "strain": "CBS 7855", "supercontigs": 41, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4097,6 +4506,7 @@ "species": "Hanseniaspora uvarum", "strain": "strain AWRI3580", "supercontigs": 18, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001747055.1", "vEuPathDbProject": "FungiDB" }, { @@ -4107,6 +4517,7 @@ "species": "Yarrowia lipolytica", "strain": "CLIB89 (W29)", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001761485.1", "vEuPathDbProject": "FungiDB" }, { @@ -4117,6 +4528,7 @@ "species": "Tritrichomonas foetus", "strain": "strain K", "supercontigs": 1480, + "ucscBrowserUrl": null, "vEuPathDbProject": "TrichDB" }, { @@ -4127,6 +4539,7 @@ "species": "Sclerotinia sclerotiorum", "strain": "1980 UF-70", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001857865.1", "vEuPathDbProject": "FungiDB" }, { @@ -4137,6 +4550,7 @@ "species": "Cryptosporidium ubiquitum", "strain": "isolate 39726", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865345.1", "vEuPathDbProject": "CryptoDB" }, { @@ -4147,6 +4561,7 @@ "species": "Cryptosporidium andersoni", "strain": "isolate 30847", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001865355.1", "vEuPathDbProject": "CryptoDB" }, { @@ -4157,6 +4572,7 @@ "species": "unclassified Amphiamblys", "strain": "WSBS2006", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001875675.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -4167,6 +4583,7 @@ "species": "Blastomyces percursus", "strain": "strain EI222", "supercontigs": 3868, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883805.1", "vEuPathDbProject": "FungiDB" }, { @@ -4177,6 +4594,7 @@ "species": "Emergomyces pasteurianus", "strain": "Ep9510", "supercontigs": 1643, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001883825.1", "vEuPathDbProject": "FungiDB" }, { @@ -4187,6 +4605,7 @@ "species": "Aspergillus brasiliensis", "strain": "CBS 101740", "supercontigs": 103, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001889945.1", "vEuPathDbProject": "FungiDB" }, { @@ -4197,6 +4616,7 @@ "species": "Penicilliopsis zonata", "strain": "CBS 506.65", "supercontigs": 246, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890105.1", "vEuPathDbProject": "FungiDB" }, { @@ -4207,6 +4627,7 @@ "species": "Aspergillus versicolor", "strain": "CBS 583.65", "supercontigs": 51, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890125.1", "vEuPathDbProject": "FungiDB" }, { @@ -4217,6 +4638,7 @@ "species": "Aspergillus luchuensis", "strain": "CBS 106.47", "supercontigs": 100, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890685.1", "vEuPathDbProject": "FungiDB" }, { @@ -4227,6 +4649,7 @@ "species": "Aspergillus sydowii", "strain": "CBS 593.65", "supercontigs": 97, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890705.1", "vEuPathDbProject": "FungiDB" }, { @@ -4237,6 +4660,7 @@ "species": "Aspergillus wentii", "strain": "DTO 134E9", "supercontigs": 27, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890725.1", "vEuPathDbProject": "FungiDB" }, { @@ -4247,6 +4671,7 @@ "species": "Aspergillus tubingensis", "strain": "CBS 134.48", "supercontigs": 33, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001890745.1", "vEuPathDbProject": "FungiDB" }, { @@ -4257,6 +4682,7 @@ "species": "Aspergillus glaucus", "strain": "CBS 516.65", "supercontigs": 82, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890805.1", "vEuPathDbProject": "FungiDB" }, { @@ -4267,6 +4693,7 @@ "species": "Aspergillus aculeatus", "strain": "ATCC 16872", "supercontigs": 660, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001890905.1", "vEuPathDbProject": "FungiDB" }, { @@ -4277,6 +4704,7 @@ "species": "Cyberlindnera fabianii", "strain": "65", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001983305.1", "vEuPathDbProject": "FungiDB" }, { @@ -4287,6 +4715,7 @@ "species": "Aspergillus carbonarius", "strain": "ITEM 5010", "supercontigs": 829, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_001990825.1", "vEuPathDbProject": "FungiDB" }, { @@ -4297,6 +4726,7 @@ "species": "Trichoderma reesei", "strain": "QM6a 2017", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002006585.1", "vEuPathDbProject": "FungiDB" }, { @@ -4307,6 +4737,7 @@ "species": "Batrachochytrium salamandrivorans", "strain": "BS", "supercontigs": 5358, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4317,6 +4748,7 @@ "species": "Saccharomyces paradoxus", "strain": "CBS432", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002079055.1", "vEuPathDbProject": "FungiDB" }, { @@ -4327,6 +4759,7 @@ "species": "Enterocytozoon hepatopenaei", "strain": "strain TH1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002081675.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -4337,6 +4770,7 @@ "species": "Rhizopus microsporus", "strain": "var. microsporus ATCC 52814", "supercontigs": 560, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002083745.1", "vEuPathDbProject": "FungiDB" }, { @@ -4347,6 +4781,7 @@ "species": "Trypanosoma theileri", "strain": "isolate Edinburgh", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002087225.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4357,6 +4792,7 @@ "species": "Hepatospora eriocheir", "strain": "strain canceri", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087875.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -4367,6 +4803,7 @@ "species": "Hepatospora eriocheir", "strain": "strain GB1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087885.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -4377,6 +4814,7 @@ "species": "Enterospora canceri", "strain": "strain GB1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002087915.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -4387,6 +4825,7 @@ "species": "Babesia sp. Xinjiang", "strain": "Xinjiang", "supercontigs": 215, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002095265.1", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4397,6 +4836,7 @@ "species": "Emergomyces orientalis", "strain": "5z489", "supercontigs": 108, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002110485.1", "vEuPathDbProject": "FungiDB" }, { @@ -4407,6 +4847,7 @@ "species": "Hortaea werneckii", "strain": "EXF-2000", "supercontigs": 628, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002127715.1", "vEuPathDbProject": "FungiDB" }, { @@ -4417,6 +4858,7 @@ "species": "Plasmodium knowlesi", "strain": "strain Malayan Strain Pk1 A", "supercontigs": 28, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -4427,6 +4869,7 @@ "species": "Aedes aegypti", "strain": "LVP_AGWG", "supercontigs": 2306, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002204515.2", "vEuPathDbProject": "VectorBase" }, { @@ -4437,6 +4880,7 @@ "species": "Cryptococcus neoformans", "strain": "var. neoformans XL280", "supercontigs": 32, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216205.1", "vEuPathDbProject": "FungiDB" }, { @@ -4447,6 +4891,7 @@ "species": "Cryptococcus neoformans", "strain": "var. grubii KN99", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002216725.1", "vEuPathDbProject": "FungiDB" }, { @@ -4457,6 +4902,7 @@ "species": "Trypanosoma cruzi", "strain": "Dm28c 2017", "supercontigs": 1029, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002219105.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -4467,6 +4913,7 @@ "species": "Nakaseomyces glabratus", "strain": "DSY562", "supercontigs": 5, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4477,6 +4924,7 @@ "species": "Cryptosporidium hominis", "strain": "UdeA01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -4487,6 +4935,7 @@ "species": "Aspergillus thermomutatus", "strain": "strain HMR AF 39", "supercontigs": 647, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002237265.1", "vEuPathDbProject": "FungiDB" }, { @@ -4497,6 +4946,7 @@ "species": "Phytophthora plurivora", "strain": "AV1007", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4507,6 +4957,7 @@ "species": "Bos taurus", "strain": "breed Hereford", "supercontigs": 2180, + "ucscBrowserUrl": null, "vEuPathDbProject": "HostDB" }, { @@ -4517,6 +4968,7 @@ "species": "Eimeria falciformis", "strain": "Bayer Haberkorn 1970", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -4527,6 +4979,7 @@ "species": "Lomentospora prolificans", "strain": "JHH-5317", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002276285.1", "vEuPathDbProject": "FungiDB" }, { @@ -4537,6 +4990,7 @@ "species": "Trypanosoma congolense", "strain": "Tc1/148", "supercontigs": 536, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002287245.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4547,6 +5001,7 @@ "species": "Besnoitia besnoiti", "strain": "strain Bb-Ger1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002563875.1", "vEuPathDbProject": "ToxoDB" }, { @@ -4557,6 +5012,7 @@ "species": "Cystoisospora suis", "strain": "strain Wien I", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -4567,6 +5023,7 @@ "species": "Trypanosoma cruzi", "strain": "Bug2148", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749415.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4577,6 +5034,7 @@ "species": "Trypanosoma cruzi", "strain": "strain Y", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749425.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4587,6 +5045,7 @@ "species": "Apophysomyces variabilis", "strain": "NCCPF 102052", "supercontigs": 411, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002749535.1", "vEuPathDbProject": "FungiDB" }, { @@ -4597,6 +5056,7 @@ "species": "[Candida] auris", "strain": "B8441", "supercontigs": 15, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4607,6 +5067,7 @@ "species": "[Candida] auris", "strain": "B11221", "supercontigs": 20, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002775015.1", "vEuPathDbProject": "FungiDB" }, { @@ -4617,6 +5078,7 @@ "species": "Aspergillus ochraceoroseus", "strain": "IBT 24754", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002846915.1", "vEuPathDbProject": "FungiDB" }, { @@ -4627,6 +5089,7 @@ "species": "Aspergillus novofumigatus", "strain": "IBT 16806", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847465.1", "vEuPathDbProject": "FungiDB" }, { @@ -4637,6 +5100,7 @@ "species": "Aspergillus campestris", "strain": "IBT 28561", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002847485.1", "vEuPathDbProject": "FungiDB" }, { @@ -4647,6 +5111,7 @@ "species": "Aspergillus steynii", "strain": "IBT 23096", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002849105.1", "vEuPathDbProject": "FungiDB" }, { @@ -4657,6 +5122,7 @@ "species": "Ixodes scapularis", "strain": "ISE6", "supercontigs": 6476, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002892825.2", "vEuPathDbProject": "VectorBase" }, { @@ -4667,6 +5133,7 @@ "species": "Babesia ovata", "strain": "strain Miyake", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002897235.1", "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4677,6 +5144,7 @@ "species": "Phytophthora palmivora", "strain": "var. palmivora strain sbr112.9", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4687,6 +5155,7 @@ "species": "Entamoeba moshkovskii", "strain": "Laredo", "supercontigs": 1147, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -4697,6 +5166,7 @@ "species": "Puccinia striiformis", "strain": "strain 93-210", "supercontigs": 492, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920065.1", "vEuPathDbProject": "FungiDB" }, { @@ -4707,6 +5177,7 @@ "species": "Puccinia striiformis", "strain": "93TX-2", "supercontigs": 561, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002920205.1", "vEuPathDbProject": "FungiDB" }, { @@ -4717,6 +5188,7 @@ "species": "Paratrypanosoma confusum", "strain": "CUL13", "supercontigs": 266, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_002921335.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4727,6 +5199,7 @@ "species": "[Candida] haemuloni", "strain": "B11899", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926055.2", "vEuPathDbProject": "FungiDB" }, { @@ -4737,6 +5210,7 @@ "species": "[Candida] duobushaemulonis", "strain": "B09383", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002926085.2", "vEuPathDbProject": "FungiDB" }, { @@ -4747,6 +5221,7 @@ "species": "Cryptococcus gattii VGII", "strain": "R265", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_002954075.1", "vEuPathDbProject": "FungiDB" }, { @@ -4757,6 +5232,7 @@ "species": "Cryptococcus neoformans", "strain": "var. grubii H99 2018", "supercontigs": 14, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003011985.1", "vEuPathDbProject": "FungiDB" }, { @@ -4767,6 +5243,7 @@ "species": "Trypanosoma congolense", "strain": "IL3000 2019", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003013265.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4777,6 +5254,7 @@ "species": "[Candida] auris", "strain": "B11220", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013715.1", "vEuPathDbProject": "FungiDB" }, { @@ -4787,6 +5265,7 @@ "species": "[Candida] pseudohaemulonis", "strain": "B12108", "supercontigs": 36, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003013735.1", "vEuPathDbProject": "FungiDB" }, { @@ -4797,6 +5276,7 @@ "species": "[Candida] auris", "strain": "B11243", "supercontigs": 238, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003014415.1", "vEuPathDbProject": "FungiDB" }, { @@ -4807,6 +5287,7 @@ "species": "Pichia kudriavzevii", "strain": "strain CBS5147", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003054405.1", "vEuPathDbProject": "FungiDB" }, { @@ -4817,6 +5298,7 @@ "species": "Pichia kudriavzevii", "strain": "strain CBS573", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003054445.1", "vEuPathDbProject": "FungiDB" }, { @@ -4827,6 +5309,7 @@ "species": "Theileria orientalis", "strain": "Goon Nure", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4837,6 +5320,7 @@ "species": "Theileria orientalis", "strain": "Fish Creek", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -4847,6 +5331,7 @@ "species": "Trichophyton mentagrophytes", "strain": "TIMM 2789", "supercontigs": 16543, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003118255.1", "vEuPathDbProject": "FungiDB" }, { @@ -4857,6 +5342,7 @@ "species": "Trypanosoma cruzi", "strain": "TCC", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177095.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4867,6 +5353,7 @@ "species": "Trypanosoma cruzi", "strain": "Dm28c 2018", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003177105.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -4877,6 +5364,7 @@ "species": "Aspergillus eucalypticola", "strain": "CBS 122712", "supercontigs": 131, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184535.1", "vEuPathDbProject": "FungiDB" }, { @@ -4887,6 +5375,7 @@ "species": "Aspergillus heteromorphus", "strain": "CBS 117.55", "supercontigs": 205, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184545.1", "vEuPathDbProject": "FungiDB" }, { @@ -4897,6 +5386,7 @@ "species": "Aspergillus sclerotiicarbonarius", "strain": "CBS 121057", "supercontigs": 166, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184635.1", "vEuPathDbProject": "FungiDB" }, { @@ -4907,6 +5397,7 @@ "species": "Aspergillus ellipticus", "strain": "CBS 707.79", "supercontigs": 518, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003184645.1", "vEuPathDbProject": "FungiDB" }, { @@ -4917,6 +5408,7 @@ "species": "Aspergillus uvarum", "strain": "CBS 121591", "supercontigs": 172, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184745.1", "vEuPathDbProject": "FungiDB" }, { @@ -4927,6 +5419,7 @@ "species": "Aspergillus fijiensis", "strain": "CBS 313.89", "supercontigs": 149, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184825.1", "vEuPathDbProject": "FungiDB" }, { @@ -4937,6 +5430,7 @@ "species": "Aspergillus ibericus", "strain": "CBS 121593", "supercontigs": 116, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184845.1", "vEuPathDbProject": "FungiDB" }, { @@ -4947,6 +5441,7 @@ "species": "Aspergillus homomorphus", "strain": "CBS 101889", "supercontigs": 152, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003184865.1", "vEuPathDbProject": "FungiDB" }, { @@ -4957,6 +5452,7 @@ "species": "Phytophthora cactorum", "strain": "10300", "supercontigs": 4623, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -4967,6 +5463,7 @@ "species": "Malassezia restricta", "strain": "KCTC 27527", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003290485.1", "vEuPathDbProject": "FungiDB" }, { @@ -4977,6 +5474,7 @@ "species": "Naegleria lovaniensis", "strain": "strain ATCC 30569", "supercontigs": 109, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003324165.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -4987,6 +5485,7 @@ "species": "Macaca mulatta", "strain": "isolate AG07107", "supercontigs": 2916, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_003339765.1", "vEuPathDbProject": "HostDB" }, { @@ -4997,6 +5496,7 @@ "species": "Aspergillus niger", "strain": "ATCC 13496", "supercontigs": 133, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003344705.1", "vEuPathDbProject": "FungiDB" }, { @@ -5007,6 +5507,7 @@ "species": "Plasmodium vivax", "strain": "PvSY56", "supercontigs": 14, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -5017,6 +5518,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S11", "supercontigs": 7855, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594385.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5027,6 +5529,7 @@ "species": "Trypanosoma cruzi", "strain": "strain Ycl4", "supercontigs": 6664, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594405.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5037,6 +5540,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S23b", "supercontigs": 7145, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594425.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5047,6 +5551,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S92a", "supercontigs": 7134, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594445.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5057,6 +5562,7 @@ "species": "Trypanosoma cruzi", "strain": "strain Ycl6", "supercontigs": 6967, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594465.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5067,6 +5573,7 @@ "species": "Trypanosoma cruzi", "strain": "strain Ycl2", "supercontigs": 6884, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594485.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5077,6 +5584,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S15", "supercontigs": 9197, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594585.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5087,6 +5595,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S162a", "supercontigs": 8588, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594605.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5097,6 +5606,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S44a", "supercontigs": 4971, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594705.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5107,6 +5617,7 @@ "species": "Trypanosoma cruzi", "strain": "strain S154a", "supercontigs": 6946, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003594715.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5117,6 +5628,7 @@ "species": "Leptotrombidium deliense", "strain": "UoL-UT", "supercontigs": 66710, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5127,6 +5639,7 @@ "species": "Malassezia restricta", "strain": "CBS 7877", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003691605.1", "vEuPathDbProject": "FungiDB" }, { @@ -5137,6 +5650,7 @@ "species": "Enterocytozoon hepatopenaei", "strain": "EHP-ID16", "supercontigs": 162, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709115.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5147,6 +5661,7 @@ "species": "Chaetothyriales sp.", "strain": "CBS 132003", "supercontigs": 118, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003709865.1", "vEuPathDbProject": "FungiDB" }, { @@ -5157,6 +5672,7 @@ "species": "Trypanosoma cruzi", "strain": "strain CL", "supercontigs": 7764, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719155.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5167,6 +5683,7 @@ "species": "Trypanosoma cruzi", "strain": "strain G", "supercontigs": 1450, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719455.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5177,6 +5694,7 @@ "species": "Leishmania donovani", "strain": "CL-SL", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003719575.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5187,6 +5705,7 @@ "species": "Lentinus tigrinus", "strain": "ALCF2SS1-7", "supercontigs": 207, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003813185.1", "vEuPathDbProject": "FungiDB" }, { @@ -5197,6 +5716,7 @@ "species": "Epichloe festucae", "strain": "Fl1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003814445.1", "vEuPathDbProject": "FungiDB" }, { @@ -5207,6 +5727,7 @@ "species": "Peronospora effusa", "strain": "R13", "supercontigs": 784, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -5217,6 +5738,7 @@ "species": "Anopheles funestus", "strain": "FUMOZ", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003951495.1", "vEuPathDbProject": "VectorBase" }, { @@ -5227,6 +5749,7 @@ "species": "Talaromyces marneffei", "strain": "TM4", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_003971505.1", "vEuPathDbProject": "FungiDB" }, { @@ -5237,6 +5760,7 @@ "species": "Arthrobotrys flagrans", "strain": "CBS H-5679", "supercontigs": 14, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000055.1", "vEuPathDbProject": "FungiDB" }, { @@ -5247,6 +5771,7 @@ "species": "Tubulinosema ratisbonensis", "strain": "Franzen", "supercontigs": 952, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004000155.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5257,6 +5782,7 @@ "species": "Coccidioides immitis", "strain": "WA_211", "supercontigs": 62, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004115165.2", "vEuPathDbProject": "FungiDB" }, { @@ -5267,6 +5793,7 @@ "species": "Hemileia vastatrix", "strain": "Race XXXIII", "supercontigs": 116756, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004125335.1", "vEuPathDbProject": "FungiDB" }, { @@ -5277,6 +5804,7 @@ "species": "Anopheles coluzzii", "strain": "Ngousso", "supercontigs": 205, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5287,6 +5815,7 @@ "species": "Ordospora colligata", "strain": "GB-EP-1", "supercontigs": 18, + "ucscBrowserUrl": null, "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5297,6 +5826,7 @@ "species": "Ordospora colligata", "strain": "NO-V-7", "supercontigs": 21, + "ucscBrowserUrl": null, "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5307,6 +5837,7 @@ "species": "Hamiltosporidium magnivora", "strain": "IL-BN-2", "supercontigs": 3833, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325035.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5317,6 +5848,7 @@ "species": "Hamiltosporidium tvaerminnensis", "strain": "FI-OER-3-3", "supercontigs": 2915, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325045.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5327,6 +5859,7 @@ "species": "Ordospora colligata", "strain": "FI-SK-17-1", "supercontigs": 26, + "ucscBrowserUrl": null, "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5337,6 +5870,7 @@ "species": "Hamiltosporidium magnivora", "strain": "BE-OM-2", "supercontigs": 3550, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325065.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5347,6 +5881,7 @@ "species": "Hamiltosporidium tvaerminnensis", "strain": "IL-G-3", "supercontigs": 2738, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004325075.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5357,6 +5892,7 @@ "species": "Pyricularia pennisetigena", "strain": "Br36", "supercontigs": 103, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -5367,6 +5903,7 @@ "species": "Rickenella mellea", "strain": "Ricmel1", "supercontigs": 848, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004355085.1", "vEuPathDbProject": "FungiDB" }, { @@ -5377,6 +5914,7 @@ "species": "Bremia lactucae", "strain": "strain SF5", "supercontigs": 201, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -5387,6 +5925,7 @@ "species": "Aspergillus tanneri", "strain": "NIH1004", "supercontigs": 1715, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004798825.1", "vEuPathDbProject": "FungiDB" }, { @@ -5397,6 +5936,7 @@ "species": "Nosema ceranae", "strain": "BRL", "supercontigs": 110, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_004919615.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5407,6 +5947,7 @@ "species": "Cryptosporidium sp. chipmunk genotype I", "strain": "strain 37763", "supercontigs": 50, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -5417,6 +5958,7 @@ "species": "Giardia muris", "strain": "strain Roberts-Thomson", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -5427,6 +5969,7 @@ "species": "Aedes albopictus", "strain": "Foshan FPA", "supercontigs": 2196, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_006496715.2", "vEuPathDbProject": "VectorBase" }, { @@ -5437,6 +5980,7 @@ "species": "Synchytrium endobioticum", "strain": "MB42", "supercontigs": 786, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_006535955.1", "vEuPathDbProject": "FungiDB" }, { @@ -5447,6 +5991,7 @@ "species": "Cryptosporidium tyzzeri", "strain": "isolate UGA55", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -5457,6 +6002,7 @@ "species": "Antonospora locustae", "strain": "CLX", "supercontigs": 1, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_007674295.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5467,6 +6013,7 @@ "species": "Cordyceps militaris", "strain": "ATCC 34164", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008080495.1", "vEuPathDbProject": "FungiDB" }, { @@ -5477,6 +6024,7 @@ "species": "[Candida] auris", "strain": "B11245", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008275145.1", "vEuPathDbProject": "FungiDB" }, { @@ -5487,6 +6035,7 @@ "species": "Naegleria fowleri", "strain": "strain ATCC 30894", "supercontigs": 81, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008403515.1", "vEuPathDbProject": "AmoebaDB" }, { @@ -5497,6 +6046,7 @@ "species": "Diutina rugosa", "strain": "CBS 613", "supercontigs": 169, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_008704595.1", "vEuPathDbProject": "FungiDB" }, { @@ -5507,6 +6057,7 @@ "species": "Trichomonascus ciferrii", "strain": "CBS 4856", "supercontigs": 583, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008704605.1", "vEuPathDbProject": "FungiDB" }, { @@ -5517,6 +6068,7 @@ "species": "Lichtheimia ramosa", "strain": "KPH11", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_008728235.1", "vEuPathDbProject": "FungiDB" }, { @@ -5527,6 +6079,7 @@ "species": "Aspergillus flavus", "strain": "NRRL3357 2020", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009017415.1", "vEuPathDbProject": "FungiDB" }, { @@ -5537,6 +6090,7 @@ "species": "Aspergillus parasiticus", "strain": "CBS 117618", "supercontigs": 270, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009176385.1", "vEuPathDbProject": "FungiDB" }, { @@ -5547,6 +6101,7 @@ "species": "Cryptococcus cf. gattii", "strain": "MF34", "supercontigs": 2, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009650685.1", "vEuPathDbProject": "FungiDB" }, { @@ -5557,6 +6112,7 @@ "species": "Leishmania tarentolae", "strain": "Parrot Tar II 2019", "supercontigs": 179, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009731335.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5567,6 +6123,7 @@ "species": "Plasmodium falciparum", "strain": "NF135.C10", "supercontigs": 21, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -5577,6 +6134,7 @@ "species": "Plasmodium falciparum", "strain": "NF54", "supercontigs": 28, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -5587,6 +6145,7 @@ "species": "Plasmodium falciparum", "strain": "NF166", "supercontigs": 30, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -5597,6 +6156,7 @@ "species": "Plasmodium falciparum", "strain": "7G8 2019", "supercontigs": 20, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -5607,6 +6167,7 @@ "species": "Cryptosporidium bovis", "strain": "isolate 45015", "supercontigs": 55, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009768925.1", "vEuPathDbProject": "CryptoDB" }, { @@ -5617,6 +6178,7 @@ "species": "Cryptosporidium ryanae", "strain": "45019", "supercontigs": 93, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_009792415.1", "vEuPathDbProject": "CryptoDB" }, { @@ -5627,6 +6189,7 @@ "species": "Aspergillus niger", "strain": "strain LDM3", "supercontigs": 14, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_009812365.1", "vEuPathDbProject": "FungiDB" }, { @@ -5637,6 +6200,7 @@ "species": "Nakaseomyces glabratus", "strain": "CBS138 2020", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_010111755.1", "vEuPathDbProject": "FungiDB" }, { @@ -5647,6 +6211,7 @@ "species": "Triatoma infestans", "strain": "isolate FIOC_28", "supercontigs": 14951, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_011037195.1", "vEuPathDbProject": "VectorBase" }, { @@ -5657,6 +6222,7 @@ "species": "Giardia Assemblage A", "strain": "isolate WB Calgary", "supercontigs": 37, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -5667,6 +6233,7 @@ "species": "Giardia Assemblage A", "strain": "Beaver", "supercontigs": 8, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -5677,6 +6244,7 @@ "species": "Giardia Assemblage B", "strain": "isolate GS Calgary", "supercontigs": 19, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -5687,6 +6255,7 @@ "species": "Toxoplasma gondii", "strain": "RH-88", "supercontigs": 183, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -5697,6 +6266,7 @@ "species": "Candida tropicalis", "strain": "MYA-3404 2020", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013177555.1", "vEuPathDbProject": "FungiDB" }, { @@ -5707,6 +6277,7 @@ "species": "Hyalomma asiaticum", "strain": "Hyas-2018", "supercontigs": 6308, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5717,6 +6288,7 @@ "species": "Rhipicephalus microplus", "strain": "Rmic-2018", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5727,6 +6299,7 @@ "species": "Dermacentor silvarum", "strain": "Dsil-2018", "supercontigs": 1653, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339745.2", "vEuPathDbProject": "VectorBase" }, { @@ -5737,6 +6310,7 @@ "species": "Haemaphysalis longicornis", "strain": "HaeL-2018", "supercontigs": 3874, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5747,6 +6321,7 @@ "species": "Trypanosoma cruzi", "strain": "Berenice", "supercontigs": 923, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013358655.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5757,6 +6332,7 @@ "species": "Ixodes persulcatus", "strain": "Iper-2018", "supercontigs": 11596, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -5767,6 +6343,7 @@ "species": "Fusarium circinatum", "strain": "NRRL 25331", "supercontigs": 1222, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013396185.1", "vEuPathDbProject": "FungiDB" }, { @@ -5777,6 +6354,7 @@ "species": "Rhipicephalus annulatus", "strain": "KleinGrass", "supercontigs": 16339, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_013436015.1", "vEuPathDbProject": "VectorBase" }, { @@ -5787,6 +6365,7 @@ "species": "Fusarium oxysporum", "strain": "f. sp. conglutinans Fo5176", "supercontigs": 4, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014154955.1", "vEuPathDbProject": "FungiDB" }, { @@ -5797,6 +6376,7 @@ "species": "Raffaelea lauricola", "strain": "RL4", "supercontigs": 169, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014183025.1", "vEuPathDbProject": "FungiDB" }, { @@ -5807,6 +6387,7 @@ "species": "Nakaseomyces glabratus", "strain": "BG2", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014217725.1", "vEuPathDbProject": "FungiDB" }, { @@ -5817,6 +6398,7 @@ "species": "Canis lupus", "strain": "familiaris isolate SID07034", "supercontigs": 336, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014441545.1", "vEuPathDbProject": "HostDB" }, { @@ -5827,6 +6409,7 @@ "species": "Beauveria bassiana", "strain": "HN6", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014607475.1", "vEuPathDbProject": "FungiDB" }, { @@ -5837,6 +6420,7 @@ "species": "Thelohania contejeani", "strain": "T1", "supercontigs": 1391, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805555.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5847,6 +6431,7 @@ "species": "Glossina fuscipes", "strain": "IAEA 2018", "supercontigs": 7986, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014805625.2", "vEuPathDbProject": "VectorBase" }, { @@ -5857,6 +6442,7 @@ "species": "Cucumispora dikerogammari", "strain": "Dv6", "supercontigs": 7783, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_014805705.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5867,6 +6453,7 @@ "species": "Naegleria fowleri", "strain": "strain Ty", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -5877,6 +6464,7 @@ "species": "Toxoplasma gondii", "strain": "strain ME49xCTG F1 S27", "supercontigs": 48, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -5887,6 +6475,7 @@ "species": "Trypanosoma cruzi", "strain": "Brazil A4", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033625.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5897,6 +6486,7 @@ "species": "Trypanosoma cruzi", "strain": "Y C6", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015033655.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -5907,6 +6497,7 @@ "species": "Rattus norvegicus", "strain": "BN/NHsdMcwi", "supercontigs": 153, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015227675.2", "vEuPathDbProject": "HostDB" }, { @@ -5917,6 +6508,7 @@ "species": "Cryptosporidium parvum", "strain": "IOWA-ATCC", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -5927,6 +6519,7 @@ "species": "Culex quinquefasciatus", "strain": "JHB 2020", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_015732765.1", "vEuPathDbProject": "VectorBase" }, { @@ -5937,6 +6530,7 @@ "species": "Nosema granulosis", "strain": "Ou3-Ou53", "supercontigs": 1754, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_015832245.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5947,6 +6541,7 @@ "species": "Neospora caninum", "strain": "Liverpool 2019", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -5957,6 +6552,7 @@ "species": "Dictyocoela roeselum", "strain": "Ou19", "supercontigs": 1033, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016255985.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5967,6 +6563,7 @@ "species": "Dictyocoela muelleri", "strain": "Ou54", "supercontigs": 11522, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016256075.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -5977,6 +6574,7 @@ "species": "Phytophthora capsici", "strain": "LT1534", "supercontigs": 782, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -5987,6 +6585,7 @@ "species": "Coprinopsis cinerea", "strain": "#326", "supercontigs": 31, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016772295.1", "vEuPathDbProject": "FungiDB" }, { @@ -5997,6 +6596,7 @@ "species": "Parastagonospora nodorum", "strain": "SN15", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016801405.1", "vEuPathDbProject": "FungiDB" }, { @@ -6007,6 +6607,7 @@ "species": "Monilinia fructicola", "strain": "CPMC6", "supercontigs": 99, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_016906325.1", "vEuPathDbProject": "FungiDB" }, { @@ -6017,6 +6618,7 @@ "species": "Pneumocystis wakefieldiae", "strain": "2A", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017301755.1", "vEuPathDbProject": "FungiDB" }, { @@ -6027,6 +6629,7 @@ "species": "Histoplasma capsulatum", "strain": "WU24", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310585.1", "vEuPathDbProject": "FungiDB" }, { @@ -6037,6 +6640,7 @@ "species": "Histoplasma capsulatum", "strain": "H88", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017310615.1", "vEuPathDbProject": "FungiDB" }, { @@ -6047,6 +6651,7 @@ "species": "Pneumocystis oryctolagi", "strain": "CS1", "supercontigs": 38, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017311285.1", "vEuPathDbProject": "FungiDB" }, { @@ -6057,6 +6662,7 @@ "species": "Histoplasma capsulatum", "strain": "G186AR", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017355575.1", "vEuPathDbProject": "FungiDB" }, { @@ -6067,6 +6673,7 @@ "species": "Histoplasma capsulatum", "strain": "G217B", "supercontigs": 11, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607445.1", "vEuPathDbProject": "FungiDB" }, { @@ -6077,6 +6684,7 @@ "species": "Histoplasma capsulatum", "strain": "G184AR", "supercontigs": 11, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017607465.1", "vEuPathDbProject": "FungiDB" }, { @@ -6087,6 +6695,7 @@ "species": "Candida metapsilosis", "strain": "BP57", "supercontigs": 9, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017655625.1", "vEuPathDbProject": "FungiDB" }, { @@ -6097,6 +6706,7 @@ "species": "Pneumocystis canis", "strain": "CanA", "supercontigs": 33, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017788925.1", "vEuPathDbProject": "FungiDB" }, { @@ -6107,6 +6717,7 @@ "species": "Leishmania enriettii", "strain": "MCAV/BR/2001/CUR178", "supercontigs": 18, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017916305.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6117,6 +6728,7 @@ "species": "Leishmania martiniquensis", "strain": "MHOM/TH/2012/LSCM1", "supercontigs": 6, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -6127,6 +6739,7 @@ "species": "Leishmania orientalis", "strain": "MHOM/TH/2014/LSCM4", "supercontigs": 62, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017916335.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6137,6 +6750,7 @@ "species": "Leishmania sp. Ghana", "strain": "MHOM/GH/2012/GH5", "supercontigs": 80, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918215.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6147,6 +6761,7 @@ "species": "Leishmania sp. Namibia", "strain": "MPRO/NA/1975/252/LV425", "supercontigs": 31, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918225.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6157,6 +6772,7 @@ "species": "Porcisia hertigi", "strain": "MCOE/PA/1965/C119", "supercontigs": 38, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_017918235.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6167,6 +6783,7 @@ "species": "Pneumocystis sp. 'macacae'", "strain": "P2C", "supercontigs": 3, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018127085.1", "vEuPathDbProject": "FungiDB" }, { @@ -6177,6 +6794,7 @@ "species": "Encephalitozoon hellem", "strain": "Swiss", "supercontigs": 32, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_018342045.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -6187,6 +6805,7 @@ "species": "Babesia divergens", "strain": "strain 1802A", "supercontigs": 79, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6197,6 +6816,7 @@ "species": "Chromera velia", "strain": "CCMP2878", "supercontigs": 5963, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -6207,6 +6827,7 @@ "species": "Coccidioides posadasii", "strain": "strain Silveira 2022", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -6217,6 +6838,7 @@ "species": "Entamoeba histolytica", "strain": "DS4-868", "supercontigs": 1177, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6227,6 +6849,7 @@ "species": "Phytophthora cinnamomi", "strain": "GKB4", "supercontigs": 133, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -6237,6 +6860,7 @@ "species": "Entamoeba histolytica", "strain": "KU48", "supercontigs": 1168, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6247,6 +6871,7 @@ "species": "Trypanosoma brucei", "strain": "EATRO1125", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_019096175.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6257,6 +6882,7 @@ "species": "Cryptosporidium parvum", "strain": "2022", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -6267,6 +6893,7 @@ "species": "Porospora gigantea", "strain": "A", "supercontigs": 787, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -6277,6 +6904,7 @@ "species": "Porospora gigantea", "strain": "B", "supercontigs": 933, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -6287,6 +6915,7 @@ "species": "Histomonas meleagridis", "strain": "2922-C6/04-290x", "supercontigs": 281, + "ucscBrowserUrl": null, "vEuPathDbProject": "TrichDB" }, { @@ -6297,6 +6926,7 @@ "species": "Histomonas meleagridis", "strain": "2922-C6/04-10x", "supercontigs": 187, + "ucscBrowserUrl": null, "vEuPathDbProject": "TrichDB" }, { @@ -6307,6 +6937,7 @@ "species": "Entamoeba histolytica", "strain": "KU50", "supercontigs": 1063, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6317,6 +6948,7 @@ "species": "Cytauxzoon felis", "strain": "strain Winnie", "supercontigs": 358, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6327,6 +6959,7 @@ "species": "Nakaseomyces glabratus", "strain": "BG3993", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020450195.1", "vEuPathDbProject": "FungiDB" }, { @@ -6337,6 +6970,7 @@ "species": "Blechomonas ayalai", "strain": "B08-376", "supercontigs": 545, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020509355.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6347,6 +6981,7 @@ "species": "Rhizophagus irregularis", "strain": "DAOM 181602=DAOM 197198", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716725.1", "vEuPathDbProject": "FungiDB" }, { @@ -6357,6 +6992,7 @@ "species": "Rhizophagus irregularis", "strain": "C2", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_020716745.1", "vEuPathDbProject": "FungiDB" }, { @@ -6367,6 +7003,7 @@ "species": "Phytophthora ramorum", "strain": "strain Pr102", "supercontigs": 28, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -6377,6 +7014,7 @@ "species": "Phytophthora ramorum", "strain": "14567", "supercontigs": 27, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -6387,6 +7025,7 @@ "species": "Plasmodium yoelii", "strain": "yoelii 17XNL 2023", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6397,6 +7036,7 @@ "species": "Acanthamoeba castellanii", "strain": "C3", "supercontigs": 174, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6407,6 +7047,7 @@ "species": "Acanthamoeba castellanii", "strain": "str. Neff 2021", "supercontigs": 111, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6417,6 +7058,7 @@ "species": "Aphanomyces euteiches", "strain": "MF1", "supercontigs": 7789, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -6427,6 +7069,7 @@ "species": "Nematocida major", "strain": "JUm2507", "supercontigs": 111, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021653875.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -6437,6 +7080,7 @@ "species": "Aedes aegypti", "strain": "Aag2", "supercontigs": 3752, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_021653915.1", "vEuPathDbProject": "VectorBase" }, { @@ -6447,6 +7091,7 @@ "species": "Microsporidium sp.", "strain": "FI-F-10", "supercontigs": 22, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_021821965.1", "vEuPathDbProject": "MicrosporidiaDB" }, { @@ -6457,6 +7102,7 @@ "species": "Trypanosoma melophagium", "strain": "St. Kilda", "supercontigs": 64, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -6467,6 +7113,7 @@ "species": "Xylaria arbuscula", "strain": "CBS 124340", "supercontigs": 89, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022385695.1", "vEuPathDbProject": "FungiDB" }, { @@ -6477,6 +7124,7 @@ "species": "Naegleria lovaniensis", "strain": "NL_76_15_250", "supercontigs": 199, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6487,6 +7135,7 @@ "species": "Podosphaera aphanis", "strain": "DRCT72020", "supercontigs": 12702, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022627015.2", "vEuPathDbProject": "FungiDB" }, { @@ -6497,6 +7146,7 @@ "species": "Cryptococcus neoformans", "strain": "strain:VNII", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_022832995.1", "vEuPathDbProject": "FungiDB" }, { @@ -6507,6 +7157,7 @@ "species": "Giardia Assemblage A", "strain": "isolate CIA", "supercontigs": 93, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -6517,6 +7168,7 @@ "species": "Giardia Assemblage D", "strain": "isolate DID", "supercontigs": 260, + "ucscBrowserUrl": null, "vEuPathDbProject": "GiardiaDB" }, { @@ -6527,6 +7179,7 @@ "species": "Dermacentor andersoni", "strain": "qqDerAnde1.1", "supercontigs": 8198, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023375915.1", "vEuPathDbProject": "VectorBase" }, { @@ -6537,6 +7190,7 @@ "species": "Babesia ovis", "strain": "Selcuk", "supercontigs": 78, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6547,6 +7201,7 @@ "species": "Curvularia clavata", "strain": "yc1106", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023920165.1", "vEuPathDbProject": "FungiDB" }, { @@ -6557,6 +7212,7 @@ "species": "Amblyomma maculatum", "strain": "SK-2019", "supercontigs": 125877, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_023969395.1", "vEuPathDbProject": "VectorBase" }, { @@ -6567,6 +7223,7 @@ "species": "Plasmodium brasilianum", "strain": "strain Bolivian I", "supercontigs": 29, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023973825.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -6577,6 +7234,7 @@ "species": "Pyronema omphalodes", "strain": "CBS 100304", "supercontigs": 260, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_024516155.1", "vEuPathDbProject": "FungiDB" }, { @@ -6587,6 +7245,7 @@ "species": "Babesia duncani", "strain": "strain WA1", "supercontigs": 7, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6597,6 +7256,7 @@ "species": "Babesia caballi", "strain": "USDA-D6B2", "supercontigs": 7, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6607,6 +7267,7 @@ "species": "Leishmania amazonensis", "strain": "strain PH8", "supercontigs": 42, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_025688915.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6617,6 +7278,7 @@ "species": "Trichomonas vaginalis", "strain": "G3 2022", "supercontigs": 212, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_026262505.1", "vEuPathDbProject": "TrichDB" }, { @@ -6627,6 +7289,7 @@ "species": "Acanthamoeba sp.", "strain": "SK_2022b", "supercontigs": 1790, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6637,6 +7300,7 @@ "species": "Acanthamoeba sp.", "strain": "SK_2022a", "supercontigs": 2108, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6647,6 +7311,7 @@ "species": "Acanthamoeba sp.", "strain": "SK_2022c", "supercontigs": 20778, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -6657,6 +7322,7 @@ "species": "Blastocrithidia nonstop", "strain": "P57", "supercontigs": 77, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_028554745.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6667,6 +7333,7 @@ "species": "Babesia duncani", "strain": "strain WA1 2023", "supercontigs": 160, + "ucscBrowserUrl": null, "vEuPathDbProject": "PiroplasmaDB" }, { @@ -6677,6 +7344,7 @@ "species": "Plasmodium chabaudi", "strain": "chabaudi", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002335.3", "vEuPathDbProject": "PlasmoDB" }, { @@ -6687,6 +7355,7 @@ "species": "Plasmodium berghei", "strain": "ANKA", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002375.2", "vEuPathDbProject": "PlasmoDB" }, { @@ -6697,6 +7366,7 @@ "species": "Plasmodium yoelii", "strain": "yoelii 17X", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900002385.2", "vEuPathDbProject": "PlasmoDB" }, { @@ -6707,6 +7377,7 @@ "species": "Plasmodium yoelii", "strain": "yoelii YM", "supercontigs": 181, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6717,6 +7388,7 @@ "species": "Plasmodium relictum", "strain": "SGS1-like", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005765.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -6727,6 +7399,7 @@ "species": "Plasmodium gallinaceum", "strain": "8A", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900005855.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -6737,6 +7410,7 @@ "species": "Fusarium proliferatum", "strain": "strain NRRL62905", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900029915.1", "vEuPathDbProject": "FungiDB" }, { @@ -6747,6 +7421,7 @@ "species": "Fusarium mangiferae", "strain": "MRC7560", "supercontigs": 254, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900044065.1", "vEuPathDbProject": "FungiDB" }, { @@ -6757,6 +7432,7 @@ "species": "Fusarium graminearum", "strain": "PH-1", "supercontigs": 1, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900044135.1", "vEuPathDbProject": "FungiDB" }, { @@ -6767,6 +7443,7 @@ "species": "Fusarium proliferatum", "strain": "ET1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900067095.1", "vEuPathDbProject": "FungiDB" }, { @@ -6777,6 +7454,7 @@ "species": "Fusarium fujikuroi", "strain": "IMI 58289", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900079805.1", "vEuPathDbProject": "FungiDB" }, { @@ -6787,6 +7465,7 @@ "species": "Plasmodium ovale", "strain": "wallikeri PowCR01", "supercontigs": 763, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6797,6 +7476,7 @@ "species": "Plasmodium ovale", "strain": "curtisi GH01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6807,6 +7487,7 @@ "species": "Plasmodium malariae", "strain": "UG01", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900090045.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -6817,6 +7498,7 @@ "species": "Plasmodium vivax", "strain": "P01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6827,6 +7509,7 @@ "species": "Plasmodium praefalciparum", "strain": "strain G01", "supercontigs": 39, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6837,6 +7520,7 @@ "species": "Plasmodium adleri", "strain": "G01", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900097015.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -6847,6 +7531,7 @@ "species": "Plasmodium reichenowi", "strain": "G01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6857,6 +7542,7 @@ "species": "Plasmodium blacklocki", "strain": "G01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6867,6 +7553,7 @@ "species": "Plasmodium gaboni", "strain": "strain G01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6877,6 +7564,7 @@ "species": "Hanseniaspora guilliermondii", "strain": "strain UTAD222", "supercontigs": 208, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900119595.1", "vEuPathDbProject": "FungiDB" }, { @@ -6887,6 +7575,7 @@ "species": "Malassezia sympodialis", "strain": "ATCC 42132", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900149145.1", "vEuPathDbProject": "FungiDB" }, { @@ -6897,6 +7586,7 @@ "species": "Plasmodium knowlesi", "strain": "strain A1H1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6907,6 +7597,7 @@ "species": "Plasmodium cynomolgi", "strain": "strain M", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6917,6 +7608,7 @@ "species": "Zymoseptoria tritici", "strain": "ST99CH_3D1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900184105.1", "vEuPathDbProject": "FungiDB" }, { @@ -6927,6 +7619,7 @@ "species": "Trichomonas tenax", "strain": "strain NIH4 ATCC 30207", "supercontigs": 4161, + "ucscBrowserUrl": null, "vEuPathDbProject": "TrichDB" }, { @@ -6937,6 +7630,7 @@ "species": "Blumeria hordei", "strain": "strain RACE1", "supercontigs": 99, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900237765.1", "vEuPathDbProject": "FungiDB" }, { @@ -6947,6 +7641,7 @@ "species": "Aspergillus niger", "strain": "strain N402 (ATCC64974)", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900248155.1", "vEuPathDbProject": "FungiDB" }, { @@ -6957,6 +7652,7 @@ "species": "Trypanosoma cruzi", "strain": "strain 231", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900252365.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -6967,6 +7663,7 @@ "species": "Plasmodium billcollinsi", "strain": "G01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -6977,6 +7674,7 @@ "species": "Culicoides sonorensis", "strain": "PIR-s-3", "supercontigs": 7974, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -6987,6 +7685,7 @@ "species": "Podospora comata", "strain": "strain T mat+", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900290415.1", "vEuPathDbProject": "FungiDB" }, { @@ -6997,6 +7696,7 @@ "species": "Saccharomycodes ludwigii", "strain": "UTAD17", "supercontigs": 1360, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900491785.1", "vEuPathDbProject": "FungiDB" }, { @@ -7007,6 +7707,7 @@ "species": "Trypanosoma brucei", "strain": "Lister strain 427 2018", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900497135.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -7017,6 +7718,7 @@ "species": "Leishmania infantum", "strain": "JPCM5", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900500625.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -7027,6 +7729,7 @@ "species": "Blumeria graminis", "strain": "f. sp. tritici 96224", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900519115.1", "vEuPathDbProject": "FungiDB" }, { @@ -7037,6 +7740,7 @@ "species": "Plasmodium falciparum", "strain": "CD01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7047,6 +7751,7 @@ "species": "Plasmodium falciparum", "strain": "KE01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7057,6 +7762,7 @@ "species": "Plasmodium falciparum", "strain": "HB3", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7067,6 +7773,7 @@ "species": "Plasmodium falciparum", "strain": "GN01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7077,6 +7784,7 @@ "species": "Plasmodium falciparum", "strain": "GA01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7087,6 +7795,7 @@ "species": "Plasmodium falciparum", "strain": "KH02", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7097,6 +7806,7 @@ "species": "Plasmodium falciparum", "strain": "KH01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7107,6 +7817,7 @@ "species": "Plasmodium falciparum", "strain": "GB4", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7117,6 +7828,7 @@ "species": "Plasmodium falciparum", "strain": "Dd2", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7127,6 +7839,7 @@ "species": "Plasmodium falciparum", "strain": "IT", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7137,6 +7850,7 @@ "species": "Plasmodium falciparum", "strain": "TG01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7147,6 +7861,7 @@ "species": "Plasmodium falciparum", "strain": "SN01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7157,6 +7872,7 @@ "species": "Plasmodium falciparum", "strain": "ML01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7167,6 +7883,7 @@ "species": "Plasmodium falciparum", "strain": "SD01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7177,6 +7894,7 @@ "species": "Leishmania donovani", "strain": "HU3", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_900635355.2", "vEuPathDbProject": "TriTrypDB" }, { @@ -7187,6 +7905,7 @@ "species": "Plasmodium vinckei", "strain": "vinckei CY", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_900681995.1", "vEuPathDbProject": "PlasmoDB" }, { @@ -7197,6 +7916,7 @@ "species": "Hepatocystis sp. ex Piliocolobus tephrosceles", "strain": "2019", "supercontigs": 2439, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7207,6 +7927,7 @@ "species": "Mastigamoeba balamuthi", "strain": "ATCC 30984", "supercontigs": 1925, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -7217,6 +7938,7 @@ "species": "Plasmodium vinckei", "strain": "brucechwatti DA", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7227,6 +7949,7 @@ "species": "Plasmodium vinckei", "strain": "lentum DE", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7237,6 +7960,7 @@ "species": "Plasmodium vinckei", "strain": "petteri CR 2020", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7247,6 +7971,7 @@ "species": "Plasmodium vinckei", "strain": "Cameroon EL", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7257,6 +7982,7 @@ "species": "Angomonas deanei", "strain": "strain Cavalho ATCC PRA-265", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_903995115.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -7267,6 +7993,7 @@ "species": "Blumeria graminis", "strain": "f. sp. triticale THUN-12", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_905067625.1", "vEuPathDbProject": "FungiDB" }, { @@ -7277,6 +8004,7 @@ "species": "Eimeria tenella", "strain": "Houghton 2021", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -7287,6 +8015,7 @@ "species": "Plasmodium vivax", "strain": "PvW1", "supercontigs": 19, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7297,6 +8026,7 @@ "species": "Leishmania major", "strain": "Friedlin 2021", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_916722125.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -7307,6 +8037,7 @@ "species": "Entamoeba histolytica", "strain": "Rahman", "supercontigs": 18523, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -7317,6 +8048,7 @@ "species": "Trypanosoma evansi", "strain": "strain STIB 805", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCA_917563935.1", "vEuPathDbProject": "TriTrypDB" }, { @@ -7327,6 +8059,7 @@ "species": "Plasmodium vivax", "strain": "PAM", "supercontigs": 28, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7337,6 +8070,7 @@ "species": "Dictyostelium discoideum", "strain": "AX4", "supercontigs": 33, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -7347,6 +8081,7 @@ "species": "Cryptosporidium muris", "strain": "RN66", "supercontigs": 84, + "ucscBrowserUrl": null, "vEuPathDbProject": "CryptoDB" }, { @@ -7357,6 +8092,7 @@ "species": "Toxoplasma gondii", "strain": "ME49", "supercontigs": 2248, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000006565.2", "vEuPathDbProject": "ToxoDB" }, { @@ -7367,6 +8103,7 @@ "species": "Sordaria macrospora", "strain": "k-hell", "supercontigs": 1212, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000182805.3", "vEuPathDbProject": "FungiDB" }, { @@ -7377,6 +8114,7 @@ "species": "Dictyostelium purpureum", "strain": "QSDP1", "supercontigs": 799, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -7387,6 +8125,7 @@ "species": "Entamoeba nuttalli", "strain": "P19", "supercontigs": 5233, + "ucscBrowserUrl": null, "vEuPathDbProject": "AmoebaDB" }, { @@ -7397,6 +8136,7 @@ "species": "Penicillium digitatum", "strain": "Pd1", "supercontigs": 53, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000315645.1", "vEuPathDbProject": "FungiDB" }, { @@ -7407,6 +8147,7 @@ "species": "Macaca fascicularis", "strain": "REF", "supercontigs": 7579, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_000364345.1", "vEuPathDbProject": "HostDB" }, { @@ -7417,6 +8158,7 @@ "species": "Phialophora attinorum", "strain": "CBS 131958", "supercontigs": 131, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001299255.1", "vEuPathDbProject": "FungiDB" }, { @@ -7427,6 +8169,7 @@ "species": "Kluyveromyces marxianus", "strain": "DMKU3-1042", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001417885.1", "vEuPathDbProject": "FungiDB" }, { @@ -7437,6 +8180,7 @@ "species": "Pneumocystis carinii", "strain": "B80", "supercontigs": 62, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_001477545.1", "vEuPathDbProject": "FungiDB" }, { @@ -7447,6 +8191,7 @@ "species": "Aedes albopictus", "strain": "C6/36 cell line", "supercontigs": 2434, + "ucscBrowserUrl": null, "vEuPathDbProject": "VectorBase" }, { @@ -7457,6 +8202,7 @@ "species": "Cyclospora cayetanensis", "strain": "isolate NF1_C8", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "ToxoDB" }, { @@ -7467,6 +8213,7 @@ "species": "Paecilomyces variotii", "strain": "CBS 101075", "supercontigs": 86, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_004022145.1", "vEuPathDbProject": "FungiDB" }, { @@ -7477,6 +8224,7 @@ "species": "Anopheles stephensi", "strain": "UCISS2018", "supercontigs": 491, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013141755.1", "vEuPathDbProject": "VectorBase" }, { @@ -7487,6 +8235,7 @@ "species": "Rhipicephalus sanguineus", "strain": "Rsan-2018", "supercontigs": 2316, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013339695.2", "vEuPathDbProject": "VectorBase" }, { @@ -7497,6 +8246,7 @@ "species": "Anopheles albimanus", "strain": "STECLA 2020", "supercontigs": 4, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_013758885.1", "vEuPathDbProject": "VectorBase" }, { @@ -7507,6 +8257,7 @@ "species": "Myotis myotis", "strain": "mMyoMyo1", "supercontigs": 92, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014108235.1", "vEuPathDbProject": "HostDB" }, { @@ -7517,6 +8268,7 @@ "species": "Pleurotus ostreatus", "strain": "PC9", "supercontigs": 16, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_014466165.1", "vEuPathDbProject": "FungiDB" }, { @@ -7527,6 +8279,7 @@ "species": "Gallus gallus", "strain": "isolate bGalGal1", "supercontigs": 172, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016699485.2", "vEuPathDbProject": "HostDB" }, { @@ -7537,6 +8290,7 @@ "species": "Anopheles coluzzii", "strain": "MOPTI", "supercontigs": 196, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920705.1", "vEuPathDbProject": "VectorBase" }, { @@ -7547,6 +8301,7 @@ "species": "Anopheles arabiensis", "strain": "DONGOLA 2021", "supercontigs": 98, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920715.1", "vEuPathDbProject": "VectorBase" }, { @@ -7557,6 +8312,7 @@ "species": "Ixodes scapularis", "strain": "PalLabHiFi", "supercontigs": 648, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_016920785.2", "vEuPathDbProject": "VectorBase" }, { @@ -7567,6 +8323,7 @@ "species": "Anopheles merus", "strain": "MAF 2021", "supercontigs": 1322, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_017562075.2", "vEuPathDbProject": "VectorBase" }, { @@ -7577,6 +8334,7 @@ "species": "Fusarium solani", "strain": "FSSC 5 MPI-SDFR-AT-0091", "supercontigs": 74, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_020744495.1", "vEuPathDbProject": "FungiDB" }, { @@ -7587,6 +8345,7 @@ "species": "Dermacentor andersoni", "strain": "qqDerAnde1.2", "supercontigs": 3118, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_023375885.1", "vEuPathDbProject": "VectorBase" }, { @@ -7597,6 +8356,7 @@ "species": "Lutzomyia longipalpis", "strain": "M1", "supercontigs": 0, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024334085.1", "vEuPathDbProject": "VectorBase" }, { @@ -7607,6 +8367,7 @@ "species": "Phlebotomus papatasi", "strain": "M1", "supercontigs": 640, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_024763615.1", "vEuPathDbProject": "VectorBase" }, { @@ -7617,6 +8378,7 @@ "species": "Musca domestica", "strain": "aabys 2023", "supercontigs": 339, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_030504385.1", "vEuPathDbProject": "VectorBase" }, { @@ -7627,6 +8389,7 @@ "species": "Anopheles cruzii", "strain": "AcruBR1", "supercontigs": 5085, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734635.1", "vEuPathDbProject": "VectorBase" }, { @@ -7637,6 +8400,7 @@ "species": "Sabethes cyaneus", "strain": "ScyaPA1", "supercontigs": 5, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734655.1", "vEuPathDbProject": "VectorBase" }, { @@ -7647,6 +8411,7 @@ "species": "Anopheles aquasalis", "strain": "AaquGF1", "supercontigs": 86, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734665.1", "vEuPathDbProject": "VectorBase" }, { @@ -7657,6 +8422,7 @@ "species": "Anopheles coluzzii", "strain": "AcolN3", "supercontigs": 125, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734685.1", "vEuPathDbProject": "VectorBase" }, { @@ -7667,6 +8433,7 @@ "species": "Anopheles maculipalpis", "strain": "AmacGA1", "supercontigs": 167, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734695.1", "vEuPathDbProject": "VectorBase" }, { @@ -7677,6 +8444,7 @@ "species": "Anopheles coustani", "strain": "AcouGA1", "supercontigs": 416, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734705.1", "vEuPathDbProject": "VectorBase" }, { @@ -7687,6 +8455,7 @@ "species": "Anopheles marshallii", "strain": "AmarGA1", "supercontigs": 285, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734725.1", "vEuPathDbProject": "VectorBase" }, { @@ -7697,6 +8466,7 @@ "species": "Anopheles gambiae", "strain": "Ifakara", "supercontigs": 187, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734735.2", "vEuPathDbProject": "VectorBase" }, { @@ -7707,6 +8477,7 @@ "species": "Anopheles darlingi", "strain": "AdarGF1", "supercontigs": 62, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734745.1", "vEuPathDbProject": "VectorBase" }, { @@ -7717,6 +8488,7 @@ "species": "Anopheles moucheti", "strain": "AmouCM1", "supercontigs": 342, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734755.1", "vEuPathDbProject": "VectorBase" }, { @@ -7727,6 +8499,7 @@ "species": "Anopheles ziemanni", "strain": "AzieGA1", "supercontigs": 416, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734765.1", "vEuPathDbProject": "VectorBase" }, { @@ -7737,6 +8510,7 @@ "species": "Anopheles funestus", "strain": "AfunGA1", "supercontigs": 326, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943734845.2", "vEuPathDbProject": "VectorBase" }, { @@ -7747,6 +8521,7 @@ "species": "Anopheles bellator", "strain": "AbelBR1", "supercontigs": 2982, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943735745.2", "vEuPathDbProject": "VectorBase" }, { @@ -7757,6 +8532,7 @@ "species": "Anopheles nili", "strain": "AnilCM1", "supercontigs": 153, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_943737925.1", "vEuPathDbProject": "VectorBase" }, { @@ -7767,6 +8543,7 @@ "species": "Phlebotomus argentipes", "strain": "India", "supercontigs": 64, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947086385.1", "vEuPathDbProject": "VectorBase" }, { @@ -7777,6 +8554,7 @@ "species": "Biomphalaria glabrata", "strain": "XG47", "supercontigs": 25, + "ucscBrowserUrl": "https://genome.ucsc.edu/h/GCF_947242115.1", "vEuPathDbProject": "VectorBase" }, { @@ -7787,6 +8565,7 @@ "species": "Trypanosoma brucei", "strain": "Lister strain 427", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -7797,6 +8576,7 @@ "species": "Leishmania braziliensis", "strain": "MHOM/BR/75/M2904 2019", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -7807,6 +8587,7 @@ "species": "Plasmodium vivax-like sp.", "strain": "Pvl01", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "PlasmoDB" }, { @@ -7817,6 +8598,7 @@ "species": "Leishmania tarentolae", "strain": "Parrot-TarII", "supercontigs": 4, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -7827,6 +8609,7 @@ "species": "Albugo laibachii", "strain": "Nc14", "supercontigs": 3827, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" }, { @@ -7837,6 +8620,7 @@ "species": "Trypanosoma cruzi", "strain": "Sylvio X10/1", "supercontigs": 0, + "ucscBrowserUrl": null, "vEuPathDbProject": "TriTrypDB" }, { @@ -7847,6 +8631,7 @@ "species": "Pyricularia oryzae", "strain": "BR32", "supercontigs": 111, + "ucscBrowserUrl": null, "vEuPathDbProject": "FungiDB" } ] diff --git a/data-catalog/site-config/brc-analytics-catalog/category.ts b/data-catalog/site-config/brc-analytics-catalog/category.ts index 6a16569..4793942 100644 --- a/data-catalog/site-config/brc-analytics-catalog/category.ts +++ b/data-catalog/site-config/brc-analytics-catalog/category.ts @@ -5,6 +5,7 @@ export const BRC_DATA_CATALOG_CATEGORY_KEY = { SPECIES: "species", STRAIN: "strain", SUPERCONTIGS: "supercontigs", + UCSC_BROWSER_URL: "ucscBrowserUrl", VEUPATHDB_PROJECT: "vEuPathDbProject", }; @@ -15,5 +16,6 @@ export const BRC_DATA_CATALOG_CATEGORY_LABEL = { SPECIES: "Species", STRAIN: "Strain", SUPERCONTIGS: "Supercontigs", + UCSC_BROWSER_URL: "UCSC Browser", VEUPATHDB_PROJECT: "VEuPathDB Project", }; diff --git a/data-catalog/site-config/brc-analytics-catalog/local/index/genomeEntityConfig.ts b/data-catalog/site-config/brc-analytics-catalog/local/index/genomeEntityConfig.ts index 675227b..092ec18 100644 --- a/data-catalog/site-config/brc-analytics-catalog/local/index/genomeEntityConfig.ts +++ b/data-catalog/site-config/brc-analytics-catalog/local/index/genomeEntityConfig.ts @@ -118,6 +118,15 @@ export const genomeEntityConfig: EntityConfig = { id: BRC_DATA_CATALOG_CATEGORY_KEY.CHROMOSOMES, width: { max: "0.5fr", min: "112px" }, }, + { + componentConfig: { + component: C.Link, + viewBuilder: V.buildUcscBrowserUrl, + } as ComponentConfig, + header: BRC_DATA_CATALOG_CATEGORY_LABEL.UCSC_BROWSER_URL, + id: BRC_DATA_CATALOG_CATEGORY_KEY.UCSC_BROWSER_URL, + width: { max: "1fr", min: "160px" }, + }, ], defaultSort: { desc: SORT_DIRECTION.ASCENDING,