Post IDs to Eutils for later use

Usage

entrez_post(db, ids, ...)

Arguments

db
character Name of the database from which the IDs were taken
ids
integer ID(s) for which data is being collected
...
character Additional terms to add to the request

Value

QueryKey integer identifier for specific query in webhistory

WebEnv character identifier for session key to use with history

Description

Post IDs to Eutils for later use

Examples

## Not run: # so_many_snails <- entrez_search(db="nuccore", "Gastropoda[Organism] AND COI[Gene]", retmax=200)# upload <- entrez_post(db="nuccore", ids=so_many_snails$ids)# cookie <- upload$WebEnv# first <- entrez_fetch(db="nuccore", ids="", file_format="fasta", WebEnv=cookie, query_key=upload$QueryKey, retend=100)# second <- entrez_fetch(db="nuccore", ids="", file_format="fasta", WebEnv=cookie, query_key=upload$QueryKey, retstart=100)# ## End(Not run)