Examples of ESearchResult


Examples of org.molgenis.services.pubmed.ESearchResult

  List<Integer> searchPubmedIds(String term) throws JAXBException, IOException
  {
    String url = "http://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&term="
        + term.replace(" ", "%20");
    ESearchResult res = getSearchResult(new URL(url));
    return res.idList;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.