File: zzz.R

package info (click to toggle)
r-bioc-ensembldb 2.30.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,844 kB
  • sloc: perl: 353; makefile: 5; sh: 3
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()
}