Nothing
library(Biostrings)
library(rtracklayer)
danRer11 <- import("danRer11.2bit")
seqlevels1 <- paste0("chr", c(1:25, "M"))
tmp <- CharacterList(strsplit(names(danRer11), "_"))
npart <- lengths(tmp)
stopifnot(all(npart <= 3L))
idx1 <- which(npart == 1L)
stopifnot(setequal(names(danRer11)[idx1], seqlevels1))
idx3 <- which(npart == 3L)
m3 <- matrix(unlist(tmp[idx3]), ncol=3L, byrow=TRUE)
m31 <- match(m3[ , 1L], seqlevels1)
stopifnot(!anyNA(m31))
stopifnot(all(m3[ , 3L] == "alt"))
oo3 <- order(m31, m3[ , 2L])
seqlevels3 <- names(danRer11)[idx3[oo3]]
idx2 <- which(npart == 2L)
m2 <- matrix(unlist(tmp[idx2]), ncol=2L, byrow=TRUE)
stopifnot(all(m2[ , 1L] == "chrUn"))
oo2 <- order(m2[ , 2L])
seqlevels2 <- names(danRer11)[idx2[oo2]]
danRer11_seqlevels <- c(seqlevels1, seqlevels3, seqlevels2)
export(danRer11[danRer11_seqlevels], "danRer11.sorted.2bit")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.