Nothing
"getRefflat" <-
function(genome="hg17") {
tmpfile <- tempfile()
download.file(paste('http://hgdownload.cse.ucsc.edu/goldenPath/',
genome,'/database/refFlat.txt.gz',sep=""),
tmpfile,mode='wb')
rf <- read.delim(conn <- gzfile(tmpfile, open="rt"),header=FALSE,sep="\t")
close(conn)
colnames(rf) <- c('geneName','name','chrom','strand','txStart','txEnd',
'cdsStart','cdsEnd','exonCount','exonStarts','exonEnds')
txEndNeg <- rf$txStart
txStartNeg <- rf$txEnd
cdsStartNeg <- rf$cdsEnd
cdsEndNeg <- rf$cdsStart
NegStrand <- rf$strand=='-'
## Fix negative strand stuff
rf[NegStrand,'cdsEnd'] <- cdsEndNeg[NegStrand]
rf[NegStrand,'cdsStart'] <- cdsStartNeg[NegStrand]
rf[NegStrand,'txEnd'] <- txEndNeg[NegStrand]
rf[NegStrand,'txStart'] <- txStartNeg[NegStrand]
return(rf)
}
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.