R/LSPCompounds.R

Defines functions getCompound getCompounds

# Copyright 2015 GRITsystems A/S

# This file is part of LSP R Client: R package allowing access to
# LSP's data via its RESTful API.
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version, along with the following terms:
#
#   1. You may convey a work based on this program in accordance with
#      section 5, provided that you retain the above notices.
#   2. You may convey verbatim copies of this program code as you receive
#      it, in any medium, provided that you retain the above notices.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.

getCompound <- function( collaboratorId, compoundId, as.data.frame=TRUE){
  .lspGet(get( 'host', envir = lspClientEnv ), sprintf('/api/compounds/%s.json', compoundId), get( 'api_token', lspClientEnv ))
}

getCompounds <- function( collaboratorId, externalIds=list(), as.data.frame=TRUE){
  .lspGet(get( 'host', envir = lspClientEnv ), 'api/compounds.json', get( 'api_token', lspClientEnv ))
}
gritsystems/LSPRClient documentation built on May 17, 2019, 8:38 a.m.