-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYN-1520] upgrade python client version and R version (#336)
* upgraded synapseclient version to v4.4.0 * updated R version and package dependencies * added/extended reference documents for both new and modified functions * updated Github action to reflect most recent compatible R versions * resolved infinite recursion issues and package building failures on Ubuntu and Windows
- Loading branch information
Showing
38 changed files
with
914 additions
and
318 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 |
---|---|---|
|
@@ -15,12 +15,14 @@ Encoding: UTF-8 | |
License: Apache License 2.0 | ||
Imports: | ||
reticulate(>= 1.25), | ||
reticulate(<= 1.28), | ||
methods, | ||
rjson, | ||
stats, | ||
utils | ||
Depends: | ||
R(>= 4.0) | ||
R(>= 4.1.3), | ||
R(< 4.5) | ||
Remotes: | ||
[email protected] | ||
Suggests: pack, R6, testthat, knitr, rmarkdown | ||
|
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
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,39 @@ | ||
% | ||
% Auto-generated file, do not modify. | ||
% Instead, copy this file to the man/ folder, remove this warning, and edit freely. | ||
% Use Git to identify changes in this file which suggest where to change your edited copy. | ||
% | ||
\name{synCreateTeam} | ||
\alias{synCreateTeam} | ||
\docType{methods} | ||
\title{ | ||
synCreateTeam | ||
} | ||
\description{ | ||
Creates a new team. | ||
|
||
Arguments: | ||
name: The name of the team to create. | ||
description: A description of the team. | ||
icon: The FileHandleID of the icon to be used for the team. | ||
canPublicJoin: Whether the team can be joined by anyone. Defaults to False. | ||
canRequestMembership: Whether the team can request membership. Defaults to True. | ||
|
||
Returns: | ||
An object of type [synapseclient.team.Team][] | ||
} | ||
\usage{ | ||
synCreateTeam(name, description=NULL, icon=NULL, can_public_join=FALSE, can_request_membership=TRUE) | ||
} | ||
\arguments{ | ||
\item{name}{} | ||
\item{description}{} | ||
\item{icon}{} | ||
\item{can_public_join}{} | ||
\item{can_request_membership}{} | ||
} | ||
\value{ | ||
|
||
} | ||
|
||
|
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,28 @@ | ||
% | ||
% Auto-generated file, do not modify. | ||
% Instead, copy this file to the man/ folder, remove this warning, and edit freely. | ||
% Use Git to identify changes in this file which suggest where to change your edited copy. | ||
% | ||
\name{synDeleteTeam} | ||
\alias{synDeleteTeam} | ||
\docType{methods} | ||
\title{ | ||
synDeleteTeam | ||
} | ||
\description{ | ||
Deletes a team. | ||
|
||
Arguments: | ||
id: The ID of the team to delete. | ||
} | ||
\usage{ | ||
synDeleteTeam(id) | ||
} | ||
\arguments{ | ||
\item{id}{} | ||
} | ||
\value{ | ||
|
||
} | ||
|
||
|
Oops, something went wrong.