{
  "_id": "6a1ac1601d7bb097a09d8416",
  "Package": "orthogene",
  "Type": "Package",
  "Title": "Gene mapping made easy",
  "Version": "1.19.3",
  "Authors@R": "c(\nperson(given = \"Brian\",\nfamily = \"Schilder\",\nrole = c(\"cre\",\"fnd\"),\nemail = \"brian_schilder@alumni.brown.edu\",\ncomment = c(ORCID = \"0000-0001-5949-2191\"))\n)",
  "Description": "`orthogene` is an R package for easy mapping of\northologous genes across hundreds of species. It pulls\nup-to-date gene ortholog mappings across **700+ organisms**. It\nalso provides various utility functions to aggregate/expand\ncommon objects (e.g. data.frames, gene expression matrices,\nlists) using **1:1**, **many:1**, **1:many** or **many:many**\ngene mappings, both within- and between-species.",
  "URL": "https://github.com/neurogenomics/orthogene",
  "BugReports": "https://github.com/neurogenomics/orthogene/issues",
  "License": "GPL-3",
  "VignetteBuilder": "knitr",
  "biocViews": "Genetics, ComparativeGenomics, Preprocessing, Phylogenetics,\nTranscriptomics, GeneExpression",
  "RoxygenNote": "7.3.3",
  "Encoding": "UTF-8",
  "Config/testthat/edition": "3",
  "Config/rcmdcheck/_R_CHECK_FORCE_SUGGESTS_": "false",
  "Config/pak/sysreqs": "libcairo2-dev cmake libfontconfig1-dev\nlibfreetype6-dev make libicu-dev libpng-dev libuv1-dev\nlibssl-dev libx11-dev zlib1g-dev",
  "Repository": "https://bioc.r-universe.dev",
  "Date/Publication": "2026-04-29 20:22:42 UTC",
  "RemoteUrl": "https://github.com/bioc/orthogene",
  "RemoteRef": "HEAD",
  "RemoteSha": "9d34d75e099347b1474dc38184d1c6c6036487ce",
  "NeedsCompilation": "no",
  "Packaged": {
    "Date": "2026-05-30 07:20:07 UTC",
    "User": "root"
  },
  "Author": "Brian Schilder [cre, fnd] (ORCID:\n<https://orcid.org/0000-0001-5949-2191>)",
  "Maintainer": "Brian Schilder <brian_schilder@alumni.brown.edu>",
  "MD5sum": "b73c592253e2003814642a13382e3db3",
  "_user": "bioc",
  "_type": "src",
  "_file": "orthogene_1.19.3.tar.gz",
  "_fileid": "5ea8eabe6565dfcb3577efa70c1b2fbd015ad1309141c9b8255552e7bb71c71b",
  "_filesize": 2223762,
  "_sha256": "5ea8eabe6565dfcb3577efa70c1b2fbd015ad1309141c9b8255552e7bb71c71b",
  "_created": "2026-05-30T07:20:07.000Z",
  "_published": "2026-05-30T10:52:16.392Z",
  "_jobs": [
    {
      "job": 78633084892,
      "time": 221,
      "config": "bioc-checks",
      "r": "4.6.0",
      "check": "NOTE",
      "artifact": "7306439255"
    },
    {
      "job": 78633084905,
      "time": 1137,
      "config": "linux-devel-x86_64",
      "r": "4.7.0",
      "check": "OK",
      "artifact": "7306540159"
    },
    {
      "job": 78633084894,
      "time": 1102,
      "config": "linux-release-x86_64",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "7306536717"
    },
    {
      "job": 78633084914,
      "time": 650,
      "config": "macos-oldrel-arm64",
      "r": "4.5.3",
      "check": "OK",
      "artifact": "7307599485"
    },
    {
      "job": 78633084927,
      "time": 622,
      "config": "macos-release-arm64",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "7307597308"
    },
    {
      "job": 78632835746,
      "time": 283,
      "config": "source",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "7306415416"
    },
    {
      "job": 78633084893,
      "time": 201,
      "config": "wasm-release",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "7306437085"
    },
    {
      "job": 78633084913,
      "time": 896,
      "config": "windows-devel",
      "r": "4.7.0",
      "check": "OK",
      "artifact": "7306515351"
    },
    {
      "job": 78633084915,
      "time": 806,
      "config": "windows-oldrel",
      "r": "4.5.3",
      "check": "OK",
      "artifact": "7306504777"
    },
    {
      "job": 78633084912,
      "time": 735,
      "config": "windows-release",
      "r": "4.6.0",
      "check": "OK",
      "artifact": "7306496982"
    }
  ],
  "_bioccheck": {
    "error": 0,
    "warning": 0,
    "note": 5
  },
  "_buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898",
  "_status": "success",
  "_host": "GitHub-Actions",
  "_upstream": "https://github.com/bioc/orthogene",
  "_commit": {
    "id": "9d34d75e099347b1474dc38184d1c6c6036487ce",
    "author": "bschilder <brian_schilder@alumni.brown.edu>",
    "committer": "bschilder <brian_schilder@alumni.brown.edu>",
    "message": "Drop curl::has_internet() from gprofiler tests — unstated dep\n\nR CMD check on GHA flagged the tests added in d0949ff with:\n\n  > checking for unstated dependencies in 'tests' ... WARNING\n    '::' or ':::' import not declared from: 'curl'\n\n`curl` isn't in our Imports/Suggests, so calling `curl::has_internet()`\ndirectly in tests is incorrect. Drop the manual `skip_if_offline()`\nhelper entirely — the existing `tryCatch` + `testthat::skip()` on API\nerror already handles the offline case gracefully (and is what every\nother gprofiler-touching test in the suite uses).\n\nCo-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>\n",
    "time": 1777494162
  },
  "_maintainer": {
    "name": "Brian Schilder",
    "email": "brian_schilder@alumni.brown.edu",
    "login": "bschilder",
    "linkedin": "in/brian-schilder",
    "orcid": "0000-0001-5949-2191",
    "twitter": "@BMSchilder",
    "description": "🧠 Brains, 🧬 genes, and 👾 learning machines!",
    "uuid": 34280215
  },
  "_distro": "noble",
  "_registered": true,
  "_dependencies": [
    {
      "package": "R",
      "version": ">= 4.5.0",
      "role": "Depends"
    },
    {
      "package": "dplyr",
      "role": "Imports"
    },
    {
      "package": "methods",
      "role": "Imports"
    },
    {
      "package": "stats",
      "role": "Imports"
    },
    {
      "package": "utils",
      "role": "Imports"
    },
    {
      "package": "Matrix",
      "role": "Imports"
    },
    {
      "package": "jsonlite",
      "role": "Imports"
    },
    {
      "package": "homologene",
      "role": "Imports"
    },
    {
      "package": "gprofiler2",
      "role": "Imports"
    },
    {
      "package": "babelgene",
      "role": "Imports"
    },
    {
      "package": "data.table",
      "role": "Imports"
    },
    {
      "package": "parallel",
      "role": "Imports"
    },
    {
      "package": "ggplot2",
      "role": "Imports"
    },
    {
      "package": "ggpubr",
      "role": "Imports"
    },
    {
      "package": "patchwork",
      "role": "Imports"
    },
    {
      "package": "DelayedArray",
      "role": "Imports"
    },
    {
      "package": "repmis",
      "role": "Imports"
    },
    {
      "package": "ggtree",
      "role": "Imports"
    },
    {
      "package": "tools",
      "role": "Imports"
    },
    {
      "package": "magrittr",
      "role": "Imports"
    },
    {
      "package": "remotes",
      "role": "Suggests"
    },
    {
      "package": "knitr",
      "role": "Suggests"
    },
    {
      "package": "BiocStyle",
      "role": "Suggests"
    },
    {
      "package": "markdown",
      "role": "Suggests"
    },
    {
      "package": "rmarkdown",
      "role": "Suggests"
    },
    {
      "package": "testthat",
      "version": ">= 3.0.0",
      "role": "Suggests"
    },
    {
      "package": "piggyback",
      "role": "Suggests"
    },
    {
      "package": "magick",
      "role": "Suggests"
    },
    {
      "package": "GenomeInfoDbData",
      "role": "Suggests"
    },
    {
      "package": "ape",
      "role": "Suggests"
    },
    {
      "package": "phytools",
      "role": "Suggests"
    },
    {
      "package": "rphylopic",
      "version": ">= 1.0.0",
      "role": "Suggests"
    },
    {
      "package": "TreeTools",
      "role": "Suggests"
    },
    {
      "package": "ggimage",
      "role": "Suggests"
    },
    {
      "package": "OmaDB",
      "role": "Suggests"
    }
  ],
  "_owner": "bioc",
  "_selfowned": true,
  "_usedby": 3,
  "_updates": [
    {
      "week": "2025-39",
      "n": 5
    },
    {
      "week": "2025-44",
      "n": 1
    },
    {
      "week": "2026-01",
      "n": 8
    },
    {
      "week": "2026-02",
      "n": 2
    },
    {
      "week": "2026-04",
      "n": 3
    },
    {
      "week": "2026-17",
      "n": 2
    },
    {
      "week": "2026-18",
      "n": 7
    }
  ],
  "_tags": [],
  "_bioc": [
    {
      "branch": "devel",
      "version": "1.19.3",
      "bioc": "3.24"
    },
    {
      "branch": "release",
      "version": "1.18.1",
      "bioc": "3.23"
    }
  ],
  "_topics": [
    "genetics",
    "comparativegenomics",
    "preprocessing",
    "phylogenetics",
    "transcriptomics",
    "geneexpression",
    "animal-models",
    "bioconductor",
    "bioconductor-package",
    "bioinformatics",
    "biomedicine",
    "comparative-genomics",
    "evolutionary-biology",
    "genes",
    "genomics",
    "ontologies",
    "translational-research"
  ],
  "_stars": 56,
  "_contributors": [
    {
      "user": "bschilder",
      "count": 299,
      "uuid": 34280215
    },
    {
      "user": "jwokaty",
      "count": 16,
      "uuid": 1744257
    },
    {
      "user": "nturaga",
      "count": 4,
      "uuid": 2746443
    },
    {
      "user": "al-murphy",
      "count": 3,
      "uuid": 62257358
    }
  ],
  "_userbio": {
    "uuid": 2286807,
    "type": "organization",
    "name": "Bioconductor",
    "description": "Software for the analysis and comprehension of high-throughput genomic data"
  },
  "_downloads": {
    "count": 1032,
    "source": "https://www.bioconductor.org/packages/stats/bioc/orthogene"
  },
  "_devurl": "https://github.com/neurogenomics/orthogene",
  "_searchresults": 82,
  "_rbuild": "4.6.0",
  "_assets": [
    "extra/citation.cff",
    "extra/citation.html",
    "extra/citation.json",
    "extra/citation.txt",
    "extra/contents.json",
    "extra/NEWS.html",
    "extra/NEWS.txt",
    "extra/orthogene.html",
    "extra/readme.html",
    "extra/readme.md",
    "manual.pdf"
  ],
  "_homeurl": "https://github.com/neurogenomics/orthogene",
  "_realowner": "bioc",
  "_cranurl": false,
  "_exports": [
    "aggregate_mapped_genes",
    "all_genes",
    "all_species",
    "convert_orthologs",
    "create_background",
    "format_species",
    "get_silhouettes",
    "infer_species",
    "map_genes",
    "map_orthologs",
    "map_species",
    "plot_orthotree",
    "prepare_tree",
    "report_orthologs"
  ],
  "_datasets": [
    {
      "name": "exp_mouse",
      "title": "Gene expression data: mouse",
      "object": "exp_mouse",
      "file": "exp_mouse.rda",
      "class": [
        "dgCMatrix"
      ],
      "fields": [],
      "table": false,
      "tojson": false
    },
    {
      "name": "exp_mouse_enst",
      "title": "Transcript expression data: mouse",
      "object": "exp_mouse_enst",
      "file": "exp_mouse_enst.rda",
      "class": [
        "dgeMatrix"
      ],
      "fields": [],
      "table": false,
      "tojson": false
    }
  ],
  "_help": [
    {
      "page": "orthogene-package",
      "title": "'orthogene': Interspecies gene mapping",
      "topics": [
        "orthogene-package",
        "orthogene"
      ]
    },
    {
      "page": "aggregate_mapped_genes",
      "title": "Aggregate/expand a gene matrix by gene mappings",
      "topics": [
        "aggregate_mapped_genes"
      ]
    },
    {
      "page": "all_genes",
      "title": "Get all genes",
      "topics": [
        "all_genes"
      ]
    },
    {
      "page": "all_species",
      "title": "All species",
      "topics": [
        "all_species"
      ]
    },
    {
      "page": "convert_orthologs",
      "title": "Map genes from one species to another",
      "topics": [
        "convert_orthologs"
      ]
    },
    {
      "page": "create_background",
      "title": "Create gene background",
      "topics": [
        "create_background"
      ]
    },
    {
      "page": "exp_mouse",
      "title": "Gene expression data: mouse",
      "topics": [
        "exp_mouse"
      ]
    },
    {
      "page": "exp_mouse_enst",
      "title": "Transcript expression data: mouse",
      "topics": [
        "exp_mouse_enst"
      ]
    },
    {
      "page": "format_species",
      "title": "Format species names",
      "topics": [
        "format_species"
      ]
    },
    {
      "page": "get_silhouettes",
      "title": "Get silhouettes",
      "topics": [
        "get_silhouettes"
      ]
    },
    {
      "page": "gprofiler_namespace",
      "title": "gconvert namespaces",
      "topics": [
        "gprofiler_namespace"
      ]
    },
    {
      "page": "gprofiler_orgs",
      "title": "Reference organisms",
      "topics": [
        "gprofiler_orgs"
      ]
    },
    {
      "page": "infer_species",
      "title": "Infer species from gene names",
      "topics": [
        "infer_species"
      ]
    },
    {
      "page": "map_genes",
      "title": "Map genes",
      "topics": [
        "map_genes"
      ]
    },
    {
      "page": "map_orthologs",
      "title": "Map orthologs",
      "topics": [
        "map_orthologs"
      ]
    },
    {
      "page": "map_species",
      "title": "Standardise species names",
      "topics": [
        "map_species"
      ]
    },
    {
      "page": "plot_orthotree",
      "title": "Create a phylogenetic tree of shared orthologs",
      "topics": [
        "plot_orthotree"
      ]
    },
    {
      "page": "prepare_tree",
      "title": "Prepare a phylogenetic tree",
      "topics": [
        "prepare_tree"
      ]
    },
    {
      "page": "report_orthologs",
      "title": "Report orthologs",
      "topics": [
        "report_orthologs"
      ]
    }
  ],
  "_readme": "https://github.com/bioc/orthogene/raw/HEAD/README.md",
  "_rundeps": [
    "abind",
    "ape",
    "aplot",
    "askpass",
    "babelgene",
    "backports",
    "base64enc",
    "BiocGenerics",
    "bit",
    "bit64",
    "bitops",
    "boot",
    "broom",
    "bslib",
    "cachem",
    "car",
    "carData",
    "cli",
    "clipr",
    "colorspace",
    "corrplot",
    "cowplot",
    "cpp11",
    "crayon",
    "crosstalk",
    "curl",
    "data.table",
    "DelayedArray",
    "Deriv",
    "digest",
    "doBy",
    "dplyr",
    "evaluate",
    "farver",
    "fastmap",
    "fontawesome",
    "fontBitstreamVera",
    "fontLiberation",
    "fontquiver",
    "forecast",
    "Formula",
    "fracdiff",
    "fs",
    "gdtools",
    "generics",
    "ggfun",
    "ggiraph",
    "ggplot2",
    "ggplotify",
    "ggpubr",
    "ggrepel",
    "ggsci",
    "ggsignif",
    "ggtree",
    "glue",
    "gprofiler2",
    "gridExtra",
    "gridGraphics",
    "gtable",
    "highr",
    "hms",
    "homologene",
    "htmltools",
    "htmlwidgets",
    "httr",
    "IRanges",
    "isoband",
    "jquerylib",
    "jsonlite",
    "knitr",
    "labeling",
    "later",
    "lattice",
    "lazyeval",
    "lifecycle",
    "lme4",
    "lmtest",
    "magrittr",
    "MASS",
    "Matrix",
    "MatrixGenerics",
    "MatrixModels",
    "matrixStats",
    "memoise",
    "mgcv",
    "microbenchmark",
    "mime",
    "minqa",
    "modelr",
    "nlme",
    "nloptr",
    "nnet",
    "numDeriv",
    "openssl",
    "otel",
    "patchwork",
    "pbkrtest",
    "pillar",
    "pkgconfig",
    "plotly",
    "plyr",
    "polynom",
    "prettyunits",
    "progress",
    "promises",
    "purrr",
    "quantreg",
    "R.cache",
    "R.methodsS3",
    "R.oo",
    "R.utils",
    "R6",
    "rappdirs",
    "rbibutils",
    "RColorBrewer",
    "Rcpp",
    "RcppArmadillo",
    "RcppEigen",
    "RCurl",
    "Rdpack",
    "readr",
    "reformulas",
    "repmis",
    "rlang",
    "rmarkdown",
    "rstatix",
    "S4Arrays",
    "S4Vectors",
    "S7",
    "sass",
    "scales",
    "SparseArray",
    "SparseM",
    "stringi",
    "stringr",
    "survival",
    "sys",
    "systemfonts",
    "tibble",
    "tidyr",
    "tidyselect",
    "tidytree",
    "timeDate",
    "tinytex",
    "treeio",
    "tzdb",
    "urca",
    "utf8",
    "vctrs",
    "viridisLite",
    "vroom",
    "withr",
    "xfun",
    "XVector",
    "yaml",
    "yulab.utils",
    "zoo"
  ],
  "_vignettes": [
    {
      "source": "docker.Rmd",
      "filename": "docker.html",
      "title": "Docker/Singularity Containers",
      "author": "Authors: `r auths <- eval(parse(text = gsub(\"person\",\"c\",read.dcf(\"../DESCRIPTION\", fields = \"Authors@R\"))));paste(auths[names(auths)==\"given\"],auths[names(auths)==\"family\"], collapse = \", \")`",
      "engine": "knitr::rmarkdown",
      "headings": [
        "Installation",
        "Method 1: via Docker",
        "NOTES",
        "Method 2: via Singularity",
        "Usage",
        "Session Info"
      ],
      "created": "2021-10-27 16:46:03",
      "modified": "2023-12-21 21:21:18",
      "commits": 8
    },
    {
      "source": "infer_species.Rmd",
      "filename": "infer_species.html",
      "title": "Infer species",
      "author": "Author: Brian M. Schilder",
      "engine": "knitr::rmarkdown",
      "headings": [
        "Installation",
        "Introduction",
        "Examples",
        "Mouse genes",
        "Infer the species",
        "Rat genes",
        "Create example data",
        "Human genes",
        "Additional test_species",
        "Session Info"
      ],
      "created": "2021-10-20 06:15:39",
      "modified": "2026-01-03 18:17:47",
      "commits": 6
    },
    {
      "source": "orthogene.Rmd",
      "filename": "orthogene.html",
      "title": "orthogene: Getting Started",
      "author": "Author: Brian M. Schilder",
      "engine": "knitr::rmarkdown",
      "headings": [
        "orthogene: Interspecies gene mapping",
        "Installation",
        "Examples",
        "Convert orthologs",
        "Note on non-1:1 orthologs",
        "Map species",
        "Report orthologs",
        "Map genes",
        "Aggregate mapped genes",
        "Get all genes",
        "Session Info"
      ],
      "created": "2021-08-25 14:54:00",
      "modified": "2026-01-03 18:17:47",
      "commits": 10
    }
  ],
  "_score": 9.128234639910035,
  "_indexed": true,
  "_nocasepkg": "orthogene",
  "_universes": [
    "bioc",
    "bschilder",
    "neurogenomics"
  ],
  "_binaries": [
    {
      "r": "4.7.0",
      "os": "linux",
      "version": "1.19.3",
      "date": "2026-05-30T07:26:05.000Z",
      "distro": "noble",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "faf2bb7d5c1a052a965f4638c0e15e43cf1e06dd50ac1031f48a529b36412dd7",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.6.0",
      "os": "linux",
      "version": "1.19.3",
      "date": "2026-05-30T07:25:13.000Z",
      "distro": "noble",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "c381926cdca8fd482525b7223c013fb4a1d02e4cffbf4cc05e6a111ed91b5762",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.5.3",
      "os": "mac",
      "version": "1.19.3",
      "date": "2026-05-30T10:34:16.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "ef6410d22910c76d9241333f9608db0a69969798c63e3567b6305995d54a2296",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.6.0",
      "os": "mac",
      "version": "1.19.3",
      "date": "2026-05-30T10:34:16.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "17c3d2af2b630db350d1e756f81ba22eb641d87a3dd0efcd16040043922681ad",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.6.0",
      "os": "wasm",
      "version": "1.19.3",
      "date": "2026-05-30T07:23:52.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "9c67b80609c9c563bd16268362dab478968780c4c2bfe983b5c30dfc9557700f",
      "status": "success",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.7.0",
      "os": "win",
      "version": "1.19.3",
      "date": "2026-05-30T07:22:15.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "9ff9c05699b75f63999ab637302ac3f201b18ca9fb437913f8a71d6dd7266d3a",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.5.3",
      "os": "win",
      "version": "1.19.3",
      "date": "2026-05-30T07:22:03.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "4b603a177ad5a3b2257ef061cbdef6ba7ec73efb14f205edab9b9d4edd3bf47f",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    },
    {
      "r": "4.6.0",
      "os": "win",
      "version": "1.19.3",
      "date": "2026-05-30T07:22:06.000Z",
      "commit": "9d34d75e099347b1474dc38184d1c6c6036487ce",
      "fileid": "49a42ebb15c01c226c56e6549fe4d0d55adade17bb836f59991625520db4006d",
      "status": "success",
      "check": "OK",
      "buildurl": "https://github.com/r-universe/bioc/actions/runs/26677820898"
    }
  ]
}