search for: efetch

Displaying 4 results from an estimated 4 matches for "efetch".

Did you mean: fetch
2017 Jun 09
1
efetch result not in character format
Hi, I want to use reutils to obtain the accession numbers of a query search in character format. When I use efetch, the accession number isn't in a character format, and I'm not sure if the number is accurate, because I get the error: Error in file.exists(destfile) : object 'destfile' not found This is what I tried: UIDs<-esearch( "Methylation" ) accession_numbers = efetch(UIDs,...
2005 May 08
2
Extract just some fields from XML
Hello! I am trying to get specific fields from an XML document and I am totally puzzled. I hope someone can help me. # URL URL<-"http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=pubmed&id=11877539,11822933,11871444&retmode=xml&rettype=citation" # download a XML file tmp <- xmlTreeParse(URL, isURL = TRUE) tmp <- xmlRoot(tmp) Now I want to extract only node 'pubdate' and its children, but I don't know how to do that unless I try to...
2007 Dec 14
6
Analyzing Publications from Pubmed via XML
I would like to track in which journals articles about a particular disease are being published. Creating a pubmed search is trivial. The search provides data but obviously not as an R dataframe. I can get the search to export the data as an xml feed and the xml package seems to be able to read it. xmlTreeParse("
2005 May 10
0
Fwd: Extract just some fields from XML]
...> print(node) > ) Gorjanc Gregor wrote: > Hello! > > I am trying to get specific fields from an XML document and I am totally > puzzled. I hope someone can help me. > > # URL > URL<-"http://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=pubmed&id=11877539,11822933,11871444&retmode=xml&rettype=citation" > # download a XML file > tmp <- xmlTreeParse(URL, isURL = TRUE) > tmp <- xmlRoot(tmp) > > Now I want to extract only node 'pubdate' and its children, but I don't > know h...