File: zzz.R

package info (click to toggle)
r-bioc-ensembldb 2.14.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,764 kB
  • sloc: perl: 331; sh: 15; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

.onLoad <- function(libname, pkgname){
    op <- options()
    ## What should be returned by default if the seqnames can not be mapped based
    ## on the style set by seqlevelsStyle<-
    ## Options:
    ## + NA or any other value: return this value for such cases.
    ## + MISSING: stop and throw an error.
    ## + ORIGINAL: return the original seqnames.
    opts.ens <- list(useFancyQuotes=FALSE,
                     ensembldb.seqnameNotFound="ORIGINAL")
    options(opts.ens)
    invisible()
}