odamws: API layer for the ODAM web services

odamws-classR Documentation

API layer for the ODAM web services

Description

the class that implements the API layer for the ODAM (Open Data for Access and Mining) web services.

Provides functions to allow you to retrieve online data using ODAM Web Services. This obviously requires that data are implemented according the ODAM approach (Open Data for Access and Mining), namely that the data subsets were deposited in the suitable data repository in the form of TSV files associated with their metadata also described in TSV files.

Fields

wsURL

defines the URL of the webservice - Must be specify when creating a new instance of the odamws object.

dsname

specifies the name of the Dataset to query - Must be specify when creating a new instance of the odamws object.

auth

specifies the authentication code to access to the Dataset by this webservice (if required)

subsets

a data.frame object containing metadata related to the data subsets - Initialized during the instantiation step

subsetNames

a list of the data subset names - Initialized during the instantiation step

connectList

a matrix of the connection graph between data subsets (i.e. the links between each subset with the subset at its origin, so that links can be interpreted as 'obtained from'). The data subsets are referred by their subset number. (corresponding to the 'SetID' column in the 'subsets' field) - Initialized during the instantiation step.

msgError

contains an error message if an error occurs

maxtime

defines the maximum request time

ssl_verifypeer

defines if the peer's SSL certificate is verified

Methods

getCommonID(refID, setName1, setName2)

Returns the list of identifiers (defined by refID as an identifier attribute label) that are in common between two subsets (defined by the attribute label of the setName1 and setName2 subsets) i.e. resulting in the intersection of the two identifier sets.

getDataByName(setName, condition = "")

Returns the data of the 'setName' subset as a data.frame

getDataTree()

Returns a data.tree object filled up according to the data subset metadata

getMerged(refID, setName1, setName2)

[DEPRECATED] Returns a data.frame containing data obtained by merging two subsets (defined by the attribute label of the setName1 and setName2 subsets) that have the same identifiers in common (defined by refID as an identifier attribute label) i.e. resulting in the intersection of the two identifier sets.

getSetInCommon(setNameList)

Get the data subset in common with the data subset list 'setNameList'. Returns a list containing the elements :

* refID: Main Keyname serving as reference ID along with all data subsets defined in setNameList,

* setName : the data subset name corresponding to the refID

getSubsetByName(setNameList, condition = "", rmvars = FALSE)

Returns both data and metadatas of the subsets defined by 'setNameList' as a list of objects. 'setNameList' can contain one or more subset names. If 'setNameList' contains two or more subset names, the returned data set will correspond to the merged data subsets based on the identifiers of the first common data subset :

data - a data.frame object containing the data. The column names of this data.frame are gathered according their categories and avaivalble in embedded lists, and described below.

varnames, facnames, qualnames, - Return lists containing the 'quantitative' variables, the 'factor' variables, the 'qualitative ' variables respectively.

varsBySubset - a list containing the 'quantitative' variables by subset.

idSet - a data.frame containing the metadata about the common identifier, namely the subset name it belongings (Subset), the identifier name (Attribute), the description (Description), the type (Type), and the CVTerm (CV_Term_ID, CV_Term_Name).

idName - the identifier name (Attribute) of the first common data subset.

LABELS - a data.frame containing the metadata about all attributes - its format is the same as the 'samplename' data.frame.

WSEntry - a data.frame containing the correspondance between some attributes and their alias name, these latter serving within a query to put a constraint a or selection on this attribute. Note: a 'WSEntry' is an alias name associated with an attribute that allows user to query the data subset by putting a filter condition (i.e. a selection constraint) on the corresponding attribute. Not all attributes have a WSEntry but only few ones, especially the attributes within the identifier and factor categories. For instance, the WSEntry of the 'SampleID' attribute is 'sample'. Thus, if you want to select only samples with their ID equal to 365, you have to specify the filter condition as 'sample/365'.

getUpSetTable(setNameList)

Return an encoded dataframe in binary and set up so that columns represent data subsets present in 'setNameList', and each row represents an element (ID). If an element (ID) is in the data subset it is represented as a 1 in that position, otherwise it is represented as a 0. Useful for use with the R package UpSetR (https://cran.r-project.org/package=UpSetR)

getWS(query = "")

Low level routine allowing to retrieve data or metadata from a query formatted according the ODAM framework specifications - Returns a data.frame object. By default, i.e. with an empty query, a data.frame object containing metadata related to the data subsets is returned.

Author(s)

Daniel Jacob - INRAE UMR 1332 BFP (C) 2021

Examples

## Not run: 
dh <- new("odamws", "https://pmb-bordeaux.fr/getdata/", "frim1")
dn <- show(dh)
# Get data from 'samples' subset with a constraint
data <- dh$getDataByName('samples','sample/365')
# Get 'activome' data subset
ds <- dh$getSubsetByName('activome')
# Get the merged data of both data subsets based on their common identifiers
setNameList <- c("activome", "qNMR_metabo" )
dsMerged <- dh$getSubsetByName(setNameList)

## End(Not run)

Rodam documentation built on March 18, 2022, 6:16 p.m.