getIdConversionChoices: Retrieve all possible values defining the type of the...

Description Usage Arguments Details Value Author(s) See Also Examples

Description

Retrieve all possible values defining the type of the submitted ID list as well as the type of conversion when using the ID conversion tool

Usage

1
2
getIdConversionChoices(urlBase=DAVIDURLBase,
    curl=RCurl::getCurlHandle(), verbose=TRUE)

Arguments

urlBase

the DAVID main page url. Default is DAVIDURLBase.

curl

RCurl handle. Default is getCurlHandle()

verbose

if TRUE enables diagnostic messages

Details

When the getIdConversionChoicesgets called the first time within the R session, it retrieves the set of annotation values from the DAVID web services, stores them within the DAVIDTypeChoices data structure and then reuses it in subsequent calls.

Value

the list containing two data frames, 'to' and 'from', the first representing set of possible identifiers used when submitting the ID list, and the second representing set of possible identifiers the ID list can be converted to

Author(s)

Roger Day, Alex Lisovich

See Also

getAnnotationChoices, getAffyChipTypes, convertIDList, DAVIDQuery

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
#retrieve the ID set for conversion 
idChoices<-getIdConversionChoices();
#display choice dialog
item<-menu(graphics = TRUE, title = "Select Identifier",  idChoices$from[,"name"]);
#retrieve identifier for subsequent conversion
ident<-idChoices$from[item,"value"];

## End(Not run)

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