1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
\name{pmidQuery}
\alias{pmidQuery}
\title{A function to query PubMed}
\description{
Given a PMID, will create a URL which can be used to open a
browser and retrieve the specified information from PubMed.
}
\usage{
pmidQuery(query)
}
\arguments{
\item{query}{ The PubMed ID (or IDs)}
}
\details{
Using ublished details from NCBI we construct an appropriate string
for directing a web browser to the information available at the NCBI.
}
\value{
A character string containing the appropriate URL
}
\references{NCBI, \url{https://www.ncbi.nih.gov/} }
\author{Jeff Gentry}
\seealso{\code{\link{UniGeneQuery}}}
\examples{
a <- "9695952"
pmidQuery(a)
}
\keyword{interface}
|