Update a project or category in SODAR
sodar_project_update.Rd
This function updates a project or category in SODAR.
Usage
sodar_project_update(
project_uuid,
title = NULL,
parent = NULL,
description = NULL,
readme = NULL,
public_guest_access = NULL,
verbose = getOption("verbose", default = FALSE),
return_raw = FALSE,
config = NULL
)
Arguments
- project_uuid
A character string containing the UUID of the project or category.
- title
A character string containing the title of the project or category; mandatory.
- parent
A character string containing the UUID of the parent project or category; mandatory.
- description
A character string containing the description of the project or category (optional).
- readme
A character string containing the README of the project or category (optional).
- public_guest_access
A logical value indicating whether the project or category has public guest access.
- verbose
A logical value indicating whether to make verbose requests.
- return_raw
A logical value indicating whether to return the raw response.
- config
A list containing the SODAR configuration. If NULL, it tries to get it from the global options.