-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
767 additions
and
688 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
Package: transmartRClient | ||
Type: Package | ||
Title: R Client for accessing the tranSMART RESTful API | ||
Version: 0.3.1 | ||
Date: 2016-04-06 | ||
Depends: RCurl, rjson, plyr, RProtoBuf, hash, reshape, XML | ||
Version: 0.3.2 | ||
Date: 2016-07-18 | ||
Depends: httr, jsonlite, plyr, RProtoBuf, hash, reshape, XML | ||
Author: Tim Dorscheidt, Jan Kanis, Rianne Jansen | ||
Maintainer: <[email protected]> | ||
Description: This package exposes tranSMART's RESTful API as a set of R functions. It uses tranSMART's OAuth authentication to access the data for which the user is authorized, and allows exploring and downloading the data. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# Copyright 2014, 2015 The Hyve B.V. | ||
# | ||
# This file is part of tranSMART R Client: R package allowing access to | ||
# tranSMART'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/>.. | ||
|
||
getPatientSet <- function(id) { | ||
if (!is.numeric(id) || id %% 1 != 0 || id < 0) { | ||
stop(paste(id, "is not a valid positive integer")) | ||
} | ||
.ensureTransmartConnection() | ||
|
||
patientSet <- .transmartGetJSON(paste0("/patient_sets/", id)) | ||
|
||
# Don't expose id, it should not be used and will be removed from a future version of rest-api | ||
# COMPAT: remove this block if support for the old rest-api is dropped. | ||
if (length(patientSet$patients) && "id" %in% names(patientSet$patients[[1]])) { | ||
for (i in seq_along(patientSet$patients)) { | ||
patientSet$patients[[i]]$id <- NULL | ||
} | ||
} | ||
|
||
names(patientSet$patients) <- sapply(patientSet$patients, function(p) {p$inTrialId}) | ||
patientSet | ||
} |
Oops, something went wrong.