Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
multimodalR/R/genesXY.R
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (18 sloc)
619 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#' Genes on the X Chromosome of Homo sapiens | |
#' | |
#' Created from gencode.v28.annotation.gtf | |
#' The result is a vector of gene names | |
#' Is used in "filterForXChromosomeGenes" function | |
#' @source \url{https://www.gencodegenes.org/releases/current.html} | |
#' @docType data | |
#' @usage data("geneNamesX") | |
"geneNamesX" | |
#' Genes on the Y Chromosome of Homo sapiens | |
#' | |
#' Created from gencode.v19.annotation.gtf | |
#' The result is a vector of gene names | |
#' Is used in "filterForYChromosomeGenes" function | |
#' @source \url{https://www.gencodegenes.org/releases/current.html} | |
#' @docType data | |
#' @usage data("geneNamesY") | |
"geneNamesY" |