R/show.ncbi.R

"show.ncbi" <-
function(region) {
  qry <- ""
  if (length(region)<=1) qry <- region else {
  	qry <- region[1]
  	for (i in 2:length(region)) qry <- paste(qry,region[i],sep="+OR+");
  }
  url <- paste("http://www.ncbi.nlm.nih.gov/mapview/map_search.cgi?taxid=9606&query=",qry,"&qchr=&strain=All&advsrch=off",sep="");
  a <- try(browseURL(url));
  if (is(a,"try-error")) stop("can not invoke browser")
}

Try the GenABEL package in your browser

Any scripts or data that you put into this service are public.

GenABEL documentation built on May 30, 2017, 3:36 a.m.