Skip to content

Commit 24d7959

Browse files
authored
Merge pull request #469 from datashield/docs/affiliation
Docs/authorship
2 parents e276da3 + 5873240 commit 24d7959

22 files changed

Lines changed: 33 additions & 0 deletions

R/absDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#' which is written to the serverside. The output object is of class numeric
1010
#' or integer.
1111
#' @author Demetris Avraam for DataSHIELD Development Team
12+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1213
#' @export
1314
#'
1415
absDS <- function(x) {

R/asCharacterDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#' "ascharacter.newobj") which is written to the serverside. For further
1111
#' details see help on the clientside function \code{ds.asCharacter}
1212
#' @author Amadou Gaye, Paul Burton, Demetris Avraam for DataSHIELD Development Team
13+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1314
#' @export
1415
#'
1516
asCharacterDS <- function(x.name) {

R/asDataMatrixDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#' "asdatamatrix.newobj") which is written to the serverside. For further
1616
#' details see help on the clientside function \code{ds.asDataMatrix}
1717
#' @author Paul Burton for DataSHIELD Development Team
18+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1819
#' @export
1920
asDataMatrixDS <- function(x.name) {
2021
x <- .loadServersideObject(x.name)

R/asIntegerDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#' "asinteger.newobj") which is written to the serverside. For further
1212
#' details see help on the clientside function \code{ds.asInteger}.
1313
#' @author Amadou Gaye, Paul Burton, Demetris Avraam, for DataSHIELD Development Team
14+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1415
#' @export
1516
#'
1617
asIntegerDS <- function(x.name){

R/asListDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
#' coerces objects to list depends on the class of the object, but in general
2121
#' the class of the output object should usually be 'list'
2222
#' @author Amadou Gaye, Paul Burton for DataSHIELD Development Team
23+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
2324
#' @export
2425
asListDS <- function (x.name, newobj){
2526
x <- .loadServersideObject(x.name)

R/asLogicalDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#' <x.name>.logic) which is written to the serverside. For further
1010
#' details see help on the clientside function \code{ds.asLogical}
1111
#' @author Amadou Gaye, Paul Burton for DataSHIELD Development Team
12+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1213
#' @export
1314
asLogicalDS <- function (x.name){
1415
x <- .loadServersideObject(x.name)

R/asMatrixDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#' <x.name>.mat) which is written to the serverside. For further
1010
#' details see help on the clientside function \code{ds.asMatrix}
1111
#' @author Amadou Gaye, Paul Burton for DataSHIELD Development Team
12+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1213
#' @export
1314
asMatrixDS <- function (x.name){
1415
x <- .loadServersideObject(x.name)

R/asNumericDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#' <x.name>.num) which is written to the serverside. For further
1212
#' details see help on the clientside function \code{ds.asNumeric}.
1313
#' @author Amadou Gaye, Paul Burton, Demetris Avraam, for DataSHIELD Development Team
14+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1415
#' @export
1516
#'
1617
asNumericDS <- function(x.name){

R/expDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#' of \code{ds.exp} (or default name \code{exp.newobj})
99
#' which is written to the serverside. The output object is of class numeric.
1010
#' @author DataSHIELD Development Team
11+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1112
#' @export
1213
#'
1314
expDS <- function(x) {

R/logDS.R

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#' of \code{ds.log} (or default name \code{log.newobj})
1111
#' which is written to the serverside. The output object is of class numeric.
1212
#' @author DataSHIELD Development Team
13+
#' @author Tim Cadman, Genomics Coordination Centre, UMCG, Netherlands
1314
#' @export
1415
#'
1516
logDS <- function(x, base=exp(1)) {

0 commit comments

Comments
 (0)