uploadIDList: Upload an ID list to the DAVID query system...

Description Usage Arguments Value Author(s) Examples

Description

Upload an ID list to the DAVID query system

Usage

1
uploadIDList(url, curl, idList, type="UNIPROT_ACCESSION", verbose=TRUE)

Arguments

url

The url to post a request to.

curl

The RCurl handle.

idList

The list of IDs to upload.

type

The DAVID Identifier to convert from.

sessionID

The RCurl session ID to be submitted as part of ID list uploading process. If NULL the session ID is retrieved from curl handle.

verbose

If TRUE, enables diagnostic messages.

Value

A character string containing the source for a list upload html page.

Author(s)

Roger Day, Alex Lisovich

Examples

1
2
3
4
5
6
7
8
## Not run:  
myCurlHandle<-RCurl::getCurlHandle(cookiefile="DAVIDCookies.txt");
res1<-RCurl::getURL("http://david.abcc.ncifcrf.gov", curl = myCurlHandle);
url="http://david.abcc.ncifcrf.gov/summary.jsp";
idList=c("P04264", "P13645", "P35908", "P08729", "P08727", "P25705", "P06576", "Q2KHP4", "Q14764", "P14625");
res2<-uploadIDList(url,myCurlHandle,idList,type="UNIPROT_ACCESSION",verbose=TRUE);

## End(Not run)

DAVIDQuery documentation built on Sept. 12, 2016, 6:11 a.m.