20660: Add devtools::check to run_test.R
authorPeter Amstutz <peter.amstutz@curii.com>
Wed, 21 Jun 2023 20:34:26 +0000 (16:34 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Wed, 21 Jun 2023 20:39:14 +0000 (16:39 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

sdk/R/DESCRIPTION
sdk/R/man/Arvados.Rd
sdk/R/man/ArvadosFile.Rd
sdk/R/man/ArvadosR.Rd
sdk/R/man/Collection.Rd
sdk/R/man/Subcollection.Rd
sdk/R/run_test.R

index b20675d669699cfbc71c6239d1b0758b4bdb23f2..c6c01adebd4f912678c5287fa6c0556f26cb514b 100644 (file)
@@ -11,7 +11,7 @@ URL: http://doc.arvados.org
 License: Apache-2.0
 Encoding: UTF-8
 LazyData: true
-RoxygenNote: 7.1.1
+RoxygenNote: 7.2.3
 Imports:
     R6,
     httr,
index d028d0a07856392e0d43bcf8752130f4539490ef..924bfeae9befad890ca358bfacc85a80442e8b69 100644 (file)
@@ -18,260 +18,316 @@ arv <- Arvados$new(authToken = "ARVADOS_API_TOKEN", hostName = "ARVADOS_API_HOST
 ## Method `Arvados$project_exist`\r
 ## ------------------------------------------------\r
 \r
-arv$project_exist(uuid = projectUUID)\r
+\dontrun{\r
+arv$project_exist(uuid = "projectUUID")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_get`\r
 ## ------------------------------------------------\r
 \r
-project <- arv$project_get(uuid = projectUUID)\r
+\dontrun{\r
+project <- arv$project_get(uuid = 'projectUUID')\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_create`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 Properties <- list() # should contain a list of new properties to be added\r
 new_project <- arv$project_create(name = "project name", description = "project description", owner_uuid = "project UUID", properties = NULL, ensureUniqueName = "false")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_properties_set`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 Properties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_set(Properties, uuid)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_properties_append`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 newProperties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_append(properties = newProperties, uuid)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_properties_get`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$project_properties_get(projectUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_properties_delete`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 Properties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_delete(Properties,  projectUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_update`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 newProperties <- list() # should contain a list of new properties to be added\r
 arv$project_update(name = "new project name", properties = newProperties, uuid = projectUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_list`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 listOfprojects <- arv$project_list(list(list("owner_uuid", "=", projectUUID))) # Sample query which show projects within the project of a given UUID\r
+}\r
+\r
+## ------------------------------------------------\r
+## Method `Arvados$project_delete`\r
+## ------------------------------------------------\r
+\r
+\dontrun{\r
+arv$project_delete(uuid = 'projectUUID')\r
+}\r
+\r
+## ------------------------------------------------\r
+## Method `Arvados$collections_get`\r
+## ------------------------------------------------\r
+\r
+\dontrun{\r
+collection <- arv$collections_get(uuid = collectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_create`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 Properties <- list() # should contain a list of new properties to be added\r
 arv$collections_create(name = "collectionTitle", description = "collectionDescription", ownerUUID = "collectionOwner", properties = Properties)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_update`\r
 ## ------------------------------------------------\r
 \r
-collection <- arv$collections_create(name = "newCollectionTitle", description = "newCollectionDescription", ownerUUID = "collectionOwner", properties = NULL)\r
+\dontrun{\r
+collection <- arv$collections_update(name = "newCollectionTitle", description = "newCollectionDescription", ownerUUID = "collectionOwner", properties = NULL, uuid = "collectionUUID")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_delete`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$collection_delete(collectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_provenance`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- arv$collections_provenance(collectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_trash`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$collections_trash(collectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_untrash`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$collections_untrash(collectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$collections_list`\r
 ## ------------------------------------------------\r
 \r
-collectionList <- arv$collections.list(list(list("name", "=", "Example")))\r
+\dontrun{\r
+collectionList <- arv$collections_list(list(list("name", "=", "Example")))\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_permission_give`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$project_permission_give(type = "can_read", uuid = objectUUID, user = userUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_permission_refuse`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$project_permission_refuse(type = "can_read", uuid = objectUUID, user = userUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_permission_update`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$project_permission_update(typeOld = "can_read", typeNew = "can_write", uuid = objectUUID, user = userUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Arvados$project_permission_check`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arv$project_permission_check(type = "can_read", uuid = objectUUID, user = userUUID)\r
 }\r
+}\r
 \section{Methods}{\r
 \subsection{Public methods}{\r
 \itemize{\r
-\item \href{#method-new}{\code{Arvados$new()}}\r
-\item \href{#method-project_exist}{\code{Arvados$project_exist()}}\r
-\item \href{#method-project_get}{\code{Arvados$project_get()}}\r
-\item \href{#method-project_create}{\code{Arvados$project_create()}}\r
-\item \href{#method-project_properties_set}{\code{Arvados$project_properties_set()}}\r
-\item \href{#method-project_properties_append}{\code{Arvados$project_properties_append()}}\r
-\item \href{#method-project_properties_get}{\code{Arvados$project_properties_get()}}\r
-\item \href{#method-project_properties_delete}{\code{Arvados$project_properties_delete()}}\r
-\item \href{#method-project_update}{\code{Arvados$project_update()}}\r
-\item \href{#method-project_list}{\code{Arvados$project_list()}}\r
-\item \href{#method-project_delete}{\code{Arvados$project_delete()}}\r
-\item \href{#method-api_clients_get}{\code{Arvados$api_clients_get()}}\r
-\item \href{#method-api_clients_create}{\code{Arvados$api_clients_create()}}\r
-\item \href{#method-api_clients_update}{\code{Arvados$api_clients_update()}}\r
-\item \href{#method-api_clients_delete}{\code{Arvados$api_clients_delete()}}\r
-\item \href{#method-api_clients_list}{\code{Arvados$api_clients_list()}}\r
-\item \href{#method-api_client_authorizations_get}{\code{Arvados$api_client_authorizations_get()}}\r
-\item \href{#method-api_client_authorizations_create}{\code{Arvados$api_client_authorizations_create()}}\r
-\item \href{#method-api_client_authorizations_update}{\code{Arvados$api_client_authorizations_update()}}\r
-\item \href{#method-api_client_authorizations_delete}{\code{Arvados$api_client_authorizations_delete()}}\r
-\item \href{#method-api_client_authorizations_create_system_auth}{\code{Arvados$api_client_authorizations_create_system_auth()}}\r
-\item \href{#method-api_client_authorizations_current}{\code{Arvados$api_client_authorizations_current()}}\r
-\item \href{#method-api_client_authorizations_list}{\code{Arvados$api_client_authorizations_list()}}\r
-\item \href{#method-authorized_keys_get}{\code{Arvados$authorized_keys_get()}}\r
-\item \href{#method-authorized_keys_create}{\code{Arvados$authorized_keys_create()}}\r
-\item \href{#method-authorized_keys_update}{\code{Arvados$authorized_keys_update()}}\r
-\item \href{#method-authorized_keys_delete}{\code{Arvados$authorized_keys_delete()}}\r
-\item \href{#method-authorized_keys_list}{\code{Arvados$authorized_keys_list()}}\r
-\item \href{#method-collections_get}{\code{Arvados$collections_get()}}\r
-\item \href{#method-collections_create}{\code{Arvados$collections_create()}}\r
-\item \href{#method-collections_update}{\code{Arvados$collections_update()}}\r
-\item \href{#method-collections_delete}{\code{Arvados$collections_delete()}}\r
-\item \href{#method-collections_provenance}{\code{Arvados$collections_provenance()}}\r
-\item \href{#method-collections_used_by}{\code{Arvados$collections_used_by()}}\r
-\item \href{#method-collections_trash}{\code{Arvados$collections_trash()}}\r
-\item \href{#method-collections_untrash}{\code{Arvados$collections_untrash()}}\r
-\item \href{#method-collections_list}{\code{Arvados$collections_list()}}\r
-\item \href{#method-containers_get}{\code{Arvados$containers_get()}}\r
-\item \href{#method-containers_create}{\code{Arvados$containers_create()}}\r
-\item \href{#method-containers_update}{\code{Arvados$containers_update()}}\r
-\item \href{#method-containers_delete}{\code{Arvados$containers_delete()}}\r
-\item \href{#method-containers_auth}{\code{Arvados$containers_auth()}}\r
-\item \href{#method-containers_lock}{\code{Arvados$containers_lock()}}\r
-\item \href{#method-containers_unlock}{\code{Arvados$containers_unlock()}}\r
-\item \href{#method-containers_secret_mounts}{\code{Arvados$containers_secret_mounts()}}\r
-\item \href{#method-containers_current}{\code{Arvados$containers_current()}}\r
-\item \href{#method-containers_list}{\code{Arvados$containers_list()}}\r
-\item \href{#method-container_requests_get}{\code{Arvados$container_requests_get()}}\r
-\item \href{#method-container_requests_create}{\code{Arvados$container_requests_create()}}\r
-\item \href{#method-container_requests_update}{\code{Arvados$container_requests_update()}}\r
-\item \href{#method-container_requests_delete}{\code{Arvados$container_requests_delete()}}\r
-\item \href{#method-container_requests_list}{\code{Arvados$container_requests_list()}}\r
-\item \href{#method-groups_get}{\code{Arvados$groups_get()}}\r
-\item \href{#method-groups_create}{\code{Arvados$groups_create()}}\r
-\item \href{#method-groups_update}{\code{Arvados$groups_update()}}\r
-\item \href{#method-groups_delete}{\code{Arvados$groups_delete()}}\r
-\item \href{#method-groups_contents}{\code{Arvados$groups_contents()}}\r
-\item \href{#method-groups_shared}{\code{Arvados$groups_shared()}}\r
-\item \href{#method-groups_trash}{\code{Arvados$groups_trash()}}\r
-\item \href{#method-groups_untrash}{\code{Arvados$groups_untrash()}}\r
-\item \href{#method-groups_list}{\code{Arvados$groups_list()}}\r
-\item \href{#method-keep_services_get}{\code{Arvados$keep_services_get()}}\r
-\item \href{#method-keep_services_create}{\code{Arvados$keep_services_create()}}\r
-\item \href{#method-keep_services_update}{\code{Arvados$keep_services_update()}}\r
-\item \href{#method-keep_services_delete}{\code{Arvados$keep_services_delete()}}\r
-\item \href{#method-keep_services_accessible}{\code{Arvados$keep_services_accessible()}}\r
-\item \href{#method-keep_services_list}{\code{Arvados$keep_services_list()}}\r
-\item \href{#method-project_permission_give}{\code{Arvados$project_permission_give()}}\r
-\item \href{#method-project_permission_refuse}{\code{Arvados$project_permission_refuse()}}\r
-\item \href{#method-project_permission_update}{\code{Arvados$project_permission_update()}}\r
-\item \href{#method-project_permission_check}{\code{Arvados$project_permission_check()}}\r
-\item \href{#method-links_get}{\code{Arvados$links_get()}}\r
-\item \href{#method-links_create}{\code{Arvados$links_create()}}\r
-\item \href{#method-links_update}{\code{Arvados$links_update()}}\r
-\item \href{#method-links_delete}{\code{Arvados$links_delete()}}\r
-\item \href{#method-links_list}{\code{Arvados$links_list()}}\r
-\item \href{#method-links_get_permissions}{\code{Arvados$links_get_permissions()}}\r
-\item \href{#method-logs_get}{\code{Arvados$logs_get()}}\r
-\item \href{#method-logs_create}{\code{Arvados$logs_create()}}\r
-\item \href{#method-logs_update}{\code{Arvados$logs_update()}}\r
-\item \href{#method-logs_delete}{\code{Arvados$logs_delete()}}\r
-\item \href{#method-logs_list}{\code{Arvados$logs_list()}}\r
-\item \href{#method-users_get}{\code{Arvados$users_get()}}\r
-\item \href{#method-users_create}{\code{Arvados$users_create()}}\r
-\item \href{#method-users_update}{\code{Arvados$users_update()}}\r
-\item \href{#method-users_delete}{\code{Arvados$users_delete()}}\r
-\item \href{#method-users_current}{\code{Arvados$users_current()}}\r
-\item \href{#method-users_system}{\code{Arvados$users_system()}}\r
-\item \href{#method-users_activate}{\code{Arvados$users_activate()}}\r
-\item \href{#method-users_setup}{\code{Arvados$users_setup()}}\r
-\item \href{#method-users_unsetup}{\code{Arvados$users_unsetup()}}\r
-\item \href{#method-users_merge}{\code{Arvados$users_merge()}}\r
-\item \href{#method-users_list}{\code{Arvados$users_list()}}\r
-\item \href{#method-repositories_get}{\code{Arvados$repositories_get()}}\r
-\item \href{#method-repositories_create}{\code{Arvados$repositories_create()}}\r
-\item \href{#method-repositories_update}{\code{Arvados$repositories_update()}}\r
-\item \href{#method-repositories_delete}{\code{Arvados$repositories_delete()}}\r
-\item \href{#method-repositories_get_all_permissions}{\code{Arvados$repositories_get_all_permissions()}}\r
-\item \href{#method-repositories_list}{\code{Arvados$repositories_list()}}\r
-\item \href{#method-virtual_machines_get}{\code{Arvados$virtual_machines_get()}}\r
-\item \href{#method-virtual_machines_create}{\code{Arvados$virtual_machines_create()}}\r
-\item \href{#method-virtual_machines_update}{\code{Arvados$virtual_machines_update()}}\r
-\item \href{#method-virtual_machines_delete}{\code{Arvados$virtual_machines_delete()}}\r
-\item \href{#method-virtual_machines_logins}{\code{Arvados$virtual_machines_logins()}}\r
-\item \href{#method-virtual_machines_get_all_logins}{\code{Arvados$virtual_machines_get_all_logins()}}\r
-\item \href{#method-virtual_machines_list}{\code{Arvados$virtual_machines_list()}}\r
-\item \href{#method-workflows_get}{\code{Arvados$workflows_get()}}\r
-\item \href{#method-workflows_create}{\code{Arvados$workflows_create()}}\r
-\item \href{#method-workflows_update}{\code{Arvados$workflows_update()}}\r
-\item \href{#method-workflows_delete}{\code{Arvados$workflows_delete()}}\r
-\item \href{#method-workflows_list}{\code{Arvados$workflows_list()}}\r
-\item \href{#method-user_agreements_get}{\code{Arvados$user_agreements_get()}}\r
-\item \href{#method-user_agreements_create}{\code{Arvados$user_agreements_create()}}\r
-\item \href{#method-user_agreements_update}{\code{Arvados$user_agreements_update()}}\r
-\item \href{#method-user_agreements_delete}{\code{Arvados$user_agreements_delete()}}\r
-\item \href{#method-user_agreements_signatures}{\code{Arvados$user_agreements_signatures()}}\r
-\item \href{#method-user_agreements_sign}{\code{Arvados$user_agreements_sign()}}\r
-\item \href{#method-user_agreements_list}{\code{Arvados$user_agreements_list()}}\r
-\item \href{#method-user_agreements_new}{\code{Arvados$user_agreements_new()}}\r
-\item \href{#method-configs_get}{\code{Arvados$configs_get()}}\r
-\item \href{#method-getHostName}{\code{Arvados$getHostName()}}\r
-\item \href{#method-getToken}{\code{Arvados$getToken()}}\r
-\item \href{#method-setRESTService}{\code{Arvados$setRESTService()}}\r
-\item \href{#method-getRESTService}{\code{Arvados$getRESTService()}}\r
-}\r
-}\r
-\if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-new"></a>}}\r
-\if{latex}{\out{\hypertarget{method-new}{}}}\r
+\item \href{#method-Arvados-new}{\code{Arvados$new()}}\r
+\item \href{#method-Arvados-project_exist}{\code{Arvados$project_exist()}}\r
+\item \href{#method-Arvados-project_get}{\code{Arvados$project_get()}}\r
+\item \href{#method-Arvados-project_create}{\code{Arvados$project_create()}}\r
+\item \href{#method-Arvados-project_properties_set}{\code{Arvados$project_properties_set()}}\r
+\item \href{#method-Arvados-project_properties_append}{\code{Arvados$project_properties_append()}}\r
+\item \href{#method-Arvados-project_properties_get}{\code{Arvados$project_properties_get()}}\r
+\item \href{#method-Arvados-project_properties_delete}{\code{Arvados$project_properties_delete()}}\r
+\item \href{#method-Arvados-project_update}{\code{Arvados$project_update()}}\r
+\item \href{#method-Arvados-project_list}{\code{Arvados$project_list()}}\r
+\item \href{#method-Arvados-project_delete}{\code{Arvados$project_delete()}}\r
+\item \href{#method-Arvados-api_clients_get}{\code{Arvados$api_clients_get()}}\r
+\item \href{#method-Arvados-api_clients_create}{\code{Arvados$api_clients_create()}}\r
+\item \href{#method-Arvados-api_clients_update}{\code{Arvados$api_clients_update()}}\r
+\item \href{#method-Arvados-api_clients_delete}{\code{Arvados$api_clients_delete()}}\r
+\item \href{#method-Arvados-api_clients_list}{\code{Arvados$api_clients_list()}}\r
+\item \href{#method-Arvados-api_client_authorizations_get}{\code{Arvados$api_client_authorizations_get()}}\r
+\item \href{#method-Arvados-api_client_authorizations_create}{\code{Arvados$api_client_authorizations_create()}}\r
+\item \href{#method-Arvados-api_client_authorizations_update}{\code{Arvados$api_client_authorizations_update()}}\r
+\item \href{#method-Arvados-api_client_authorizations_delete}{\code{Arvados$api_client_authorizations_delete()}}\r
+\item \href{#method-Arvados-api_client_authorizations_create_system_auth}{\code{Arvados$api_client_authorizations_create_system_auth()}}\r
+\item \href{#method-Arvados-api_client_authorizations_current}{\code{Arvados$api_client_authorizations_current()}}\r
+\item \href{#method-Arvados-api_client_authorizations_list}{\code{Arvados$api_client_authorizations_list()}}\r
+\item \href{#method-Arvados-authorized_keys_get}{\code{Arvados$authorized_keys_get()}}\r
+\item \href{#method-Arvados-authorized_keys_create}{\code{Arvados$authorized_keys_create()}}\r
+\item \href{#method-Arvados-authorized_keys_update}{\code{Arvados$authorized_keys_update()}}\r
+\item \href{#method-Arvados-authorized_keys_delete}{\code{Arvados$authorized_keys_delete()}}\r
+\item \href{#method-Arvados-authorized_keys_list}{\code{Arvados$authorized_keys_list()}}\r
+\item \href{#method-Arvados-collections_get}{\code{Arvados$collections_get()}}\r
+\item \href{#method-Arvados-collections_create}{\code{Arvados$collections_create()}}\r
+\item \href{#method-Arvados-collections_update}{\code{Arvados$collections_update()}}\r
+\item \href{#method-Arvados-collections_delete}{\code{Arvados$collections_delete()}}\r
+\item \href{#method-Arvados-collections_provenance}{\code{Arvados$collections_provenance()}}\r
+\item \href{#method-Arvados-collections_used_by}{\code{Arvados$collections_used_by()}}\r
+\item \href{#method-Arvados-collections_trash}{\code{Arvados$collections_trash()}}\r
+\item \href{#method-Arvados-collections_untrash}{\code{Arvados$collections_untrash()}}\r
+\item \href{#method-Arvados-collections_list}{\code{Arvados$collections_list()}}\r
+\item \href{#method-Arvados-containers_get}{\code{Arvados$containers_get()}}\r
+\item \href{#method-Arvados-containers_create}{\code{Arvados$containers_create()}}\r
+\item \href{#method-Arvados-containers_update}{\code{Arvados$containers_update()}}\r
+\item \href{#method-Arvados-containers_delete}{\code{Arvados$containers_delete()}}\r
+\item \href{#method-Arvados-containers_auth}{\code{Arvados$containers_auth()}}\r
+\item \href{#method-Arvados-containers_lock}{\code{Arvados$containers_lock()}}\r
+\item \href{#method-Arvados-containers_unlock}{\code{Arvados$containers_unlock()}}\r
+\item \href{#method-Arvados-containers_secret_mounts}{\code{Arvados$containers_secret_mounts()}}\r
+\item \href{#method-Arvados-containers_current}{\code{Arvados$containers_current()}}\r
+\item \href{#method-Arvados-containers_list}{\code{Arvados$containers_list()}}\r
+\item \href{#method-Arvados-container_requests_get}{\code{Arvados$container_requests_get()}}\r
+\item \href{#method-Arvados-container_requests_create}{\code{Arvados$container_requests_create()}}\r
+\item \href{#method-Arvados-container_requests_update}{\code{Arvados$container_requests_update()}}\r
+\item \href{#method-Arvados-container_requests_delete}{\code{Arvados$container_requests_delete()}}\r
+\item \href{#method-Arvados-container_requests_list}{\code{Arvados$container_requests_list()}}\r
+\item \href{#method-Arvados-groups_get}{\code{Arvados$groups_get()}}\r
+\item \href{#method-Arvados-groups_create}{\code{Arvados$groups_create()}}\r
+\item \href{#method-Arvados-groups_update}{\code{Arvados$groups_update()}}\r
+\item \href{#method-Arvados-groups_delete}{\code{Arvados$groups_delete()}}\r
+\item \href{#method-Arvados-groups_contents}{\code{Arvados$groups_contents()}}\r
+\item \href{#method-Arvados-groups_shared}{\code{Arvados$groups_shared()}}\r
+\item \href{#method-Arvados-groups_trash}{\code{Arvados$groups_trash()}}\r
+\item \href{#method-Arvados-groups_untrash}{\code{Arvados$groups_untrash()}}\r
+\item \href{#method-Arvados-groups_list}{\code{Arvados$groups_list()}}\r
+\item \href{#method-Arvados-keep_services_get}{\code{Arvados$keep_services_get()}}\r
+\item \href{#method-Arvados-keep_services_create}{\code{Arvados$keep_services_create()}}\r
+\item \href{#method-Arvados-keep_services_update}{\code{Arvados$keep_services_update()}}\r
+\item \href{#method-Arvados-keep_services_delete}{\code{Arvados$keep_services_delete()}}\r
+\item \href{#method-Arvados-keep_services_accessible}{\code{Arvados$keep_services_accessible()}}\r
+\item \href{#method-Arvados-keep_services_list}{\code{Arvados$keep_services_list()}}\r
+\item \href{#method-Arvados-project_permission_give}{\code{Arvados$project_permission_give()}}\r
+\item \href{#method-Arvados-project_permission_refuse}{\code{Arvados$project_permission_refuse()}}\r
+\item \href{#method-Arvados-project_permission_update}{\code{Arvados$project_permission_update()}}\r
+\item \href{#method-Arvados-project_permission_check}{\code{Arvados$project_permission_check()}}\r
+\item \href{#method-Arvados-links_get}{\code{Arvados$links_get()}}\r
+\item \href{#method-Arvados-links_create}{\code{Arvados$links_create()}}\r
+\item \href{#method-Arvados-links_update}{\code{Arvados$links_update()}}\r
+\item \href{#method-Arvados-links_delete}{\code{Arvados$links_delete()}}\r
+\item \href{#method-Arvados-links_list}{\code{Arvados$links_list()}}\r
+\item \href{#method-Arvados-links_get_permissions}{\code{Arvados$links_get_permissions()}}\r
+\item \href{#method-Arvados-logs_get}{\code{Arvados$logs_get()}}\r
+\item \href{#method-Arvados-logs_create}{\code{Arvados$logs_create()}}\r
+\item \href{#method-Arvados-logs_update}{\code{Arvados$logs_update()}}\r
+\item \href{#method-Arvados-logs_delete}{\code{Arvados$logs_delete()}}\r
+\item \href{#method-Arvados-logs_list}{\code{Arvados$logs_list()}}\r
+\item \href{#method-Arvados-users_get}{\code{Arvados$users_get()}}\r
+\item \href{#method-Arvados-users_create}{\code{Arvados$users_create()}}\r
+\item \href{#method-Arvados-users_update}{\code{Arvados$users_update()}}\r
+\item \href{#method-Arvados-users_delete}{\code{Arvados$users_delete()}}\r
+\item \href{#method-Arvados-users_current}{\code{Arvados$users_current()}}\r
+\item \href{#method-Arvados-users_system}{\code{Arvados$users_system()}}\r
+\item \href{#method-Arvados-users_activate}{\code{Arvados$users_activate()}}\r
+\item \href{#method-Arvados-users_setup}{\code{Arvados$users_setup()}}\r
+\item \href{#method-Arvados-users_unsetup}{\code{Arvados$users_unsetup()}}\r
+\item \href{#method-Arvados-users_merge}{\code{Arvados$users_merge()}}\r
+\item \href{#method-Arvados-users_list}{\code{Arvados$users_list()}}\r
+\item \href{#method-Arvados-repositories_get}{\code{Arvados$repositories_get()}}\r
+\item \href{#method-Arvados-repositories_create}{\code{Arvados$repositories_create()}}\r
+\item \href{#method-Arvados-repositories_update}{\code{Arvados$repositories_update()}}\r
+\item \href{#method-Arvados-repositories_delete}{\code{Arvados$repositories_delete()}}\r
+\item \href{#method-Arvados-repositories_get_all_permissions}{\code{Arvados$repositories_get_all_permissions()}}\r
+\item \href{#method-Arvados-repositories_list}{\code{Arvados$repositories_list()}}\r
+\item \href{#method-Arvados-virtual_machines_get}{\code{Arvados$virtual_machines_get()}}\r
+\item \href{#method-Arvados-virtual_machines_create}{\code{Arvados$virtual_machines_create()}}\r
+\item \href{#method-Arvados-virtual_machines_update}{\code{Arvados$virtual_machines_update()}}\r
+\item \href{#method-Arvados-virtual_machines_delete}{\code{Arvados$virtual_machines_delete()}}\r
+\item \href{#method-Arvados-virtual_machines_logins}{\code{Arvados$virtual_machines_logins()}}\r
+\item \href{#method-Arvados-virtual_machines_get_all_logins}{\code{Arvados$virtual_machines_get_all_logins()}}\r
+\item \href{#method-Arvados-virtual_machines_list}{\code{Arvados$virtual_machines_list()}}\r
+\item \href{#method-Arvados-workflows_get}{\code{Arvados$workflows_get()}}\r
+\item \href{#method-Arvados-workflows_create}{\code{Arvados$workflows_create()}}\r
+\item \href{#method-Arvados-workflows_update}{\code{Arvados$workflows_update()}}\r
+\item \href{#method-Arvados-workflows_delete}{\code{Arvados$workflows_delete()}}\r
+\item \href{#method-Arvados-workflows_list}{\code{Arvados$workflows_list()}}\r
+\item \href{#method-Arvados-user_agreements_get}{\code{Arvados$user_agreements_get()}}\r
+\item \href{#method-Arvados-user_agreements_create}{\code{Arvados$user_agreements_create()}}\r
+\item \href{#method-Arvados-user_agreements_update}{\code{Arvados$user_agreements_update()}}\r
+\item \href{#method-Arvados-user_agreements_delete}{\code{Arvados$user_agreements_delete()}}\r
+\item \href{#method-Arvados-user_agreements_signatures}{\code{Arvados$user_agreements_signatures()}}\r
+\item \href{#method-Arvados-user_agreements_sign}{\code{Arvados$user_agreements_sign()}}\r
+\item \href{#method-Arvados-user_agreements_list}{\code{Arvados$user_agreements_list()}}\r
+\item \href{#method-Arvados-user_agreements_new}{\code{Arvados$user_agreements_new()}}\r
+\item \href{#method-Arvados-configs_get}{\code{Arvados$configs_get()}}\r
+\item \href{#method-Arvados-getHostName}{\code{Arvados$getHostName()}}\r
+\item \href{#method-Arvados-getToken}{\code{Arvados$getToken()}}\r
+\item \href{#method-Arvados-setRESTService}{\code{Arvados$setRESTService()}}\r
+\item \href{#method-Arvados-getRESTService}{\code{Arvados$getRESTService()}}\r
+}\r
+}\r
+\if{html}{\out{<hr>}}\r
+\if{html}{\out{<a id="method-Arvados-new"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-new}{}}}\r
 \subsection{Method \code{new()}}{\r
 Initialize new enviroment.\r
 \subsection{Usage}{\r
@@ -302,8 +358,8 @@ A new `Arvados` object.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_exist"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_exist}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_exist"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_exist}{}}}\r
 \subsection{Method \code{project_exist()}}{\r
 project_exist enables checking if the project with such a UUID exist.\r
 \subsection{Usage}{\r
@@ -319,7 +375,9 @@ project_exist enables checking if the project with such a UUID exist.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_exist(uuid = projectUUID)\r
+\preformatted{\dontrun{\r
+arv$project_exist(uuid = "projectUUID")\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -327,8 +385,8 @@ project_exist enables checking if the project with such a UUID exist.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_get}{}}}\r
 \subsection{Method \code{project_get()}}{\r
 project_get returns the demanded project.\r
 \subsection{Usage}{\r
@@ -344,7 +402,9 @@ project_get returns the demanded project.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{project <- arv$project_get(uuid = projectUUID)\r
+\preformatted{\dontrun{\r
+project <- arv$project_get(uuid = 'projectUUID')\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -352,8 +412,8 @@ project_get returns the demanded project.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_create}{}}}\r
 \subsection{Method \code{project_create()}}{\r
 project_create creates a new project of a given name and description.\r
 \subsection{Usage}{\r
@@ -383,17 +443,19 @@ project_create creates a new project of a given name and description.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{Properties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+Properties <- list() # should contain a list of new properties to be added\r
 new_project <- arv$project_create(name = "project name", description = "project description", owner_uuid = "project UUID", properties = NULL, ensureUniqueName = "false")\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_properties_set"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_properties_set}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_properties_set"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_properties_set}{}}}\r
 \subsection{Method \code{project_properties_set()}}{\r
 project_properties_set is a method defined in Arvados class that enables setting properties. Allows to set or overwrite the properties. In case there are set already it overwrites them.\r
 \subsection{Usage}{\r
@@ -411,17 +473,19 @@ project_properties_set is a method defined in Arvados class that enables setting
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{Properties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+Properties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_set(Properties, uuid)\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_properties_append"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_properties_append}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_properties_append"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_properties_append}{}}}\r
 \subsection{Method \code{project_properties_append()}}{\r
 project_properties_append is a method defined in Arvados class that enables appending properties. Allows to add new properties.\r
 \subsection{Usage}{\r
@@ -431,25 +495,27 @@ project_properties_append is a method defined in Arvados class that enables appe
 \subsection{Arguments}{\r
 \if{html}{\out{<div class="arguments">}}\r
 \describe{\r
-\item{\code{uuid}}{The UUID of a project or a file.}\r
+\item{\code{properties}}{List of new properties.}\r
 \r
-\item{\code{listOfNewProperties}}{List of new properties.}\r
+\item{\code{uuid}}{The UUID of a project or a file.}\r
 }\r
 \if{html}{\out{</div>}}\r
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{newProperties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+newProperties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_append(properties = newProperties, uuid)\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_properties_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_properties_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_properties_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_properties_get}{}}}\r
 \subsection{Method \code{project_properties_get()}}{\r
 project_properties_get is a method defined in Arvados class that returns properties.\r
 \subsection{Usage}{\r
@@ -465,7 +531,9 @@ project_properties_get is a method defined in Arvados class that returns propert
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_properties_get(projectUUID)\r
+\preformatted{\dontrun{\r
+arv$project_properties_get(projectUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -473,8 +541,8 @@ project_properties_get is a method defined in Arvados class that returns propert
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_properties_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_properties_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_properties_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_properties_delete}{}}}\r
 \subsection{Method \code{project_properties_delete()}}{\r
 project_properties_delete is a method defined in Arvados class that deletes list of properties.\r
 \subsection{Usage}{\r
@@ -492,17 +560,19 @@ project_properties_delete is a method defined in Arvados class that deletes list
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{Properties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+Properties <- list() # should contain a list of new properties to be added\r
 arv$project_properties_delete(Properties,  projectUUID)\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_update}{}}}\r
 \subsection{Method \code{project_update()}}{\r
 project_update enables updating project. New name, description and properties may be given.\r
 \subsection{Usage}{\r
@@ -520,17 +590,19 @@ project_update enables updating project. New name, description and properties ma
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{newProperties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+newProperties <- list() # should contain a list of new properties to be added\r
 arv$project_update(name = "new project name", properties = newProperties, uuid = projectUUID)\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_list}{}}}\r
 \subsection{Method \code{project_list()}}{\r
 project_list enables listing project by its name, uuid, properties, permissions.\r
 \subsection{Usage}{\r
@@ -560,7 +632,9 @@ project_list enables listing project by its name, uuid, properties, permissions.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{listOfprojects <- arv$project_list(list(list("owner_uuid", "=", projectUUID))) # Sample query which show projects within the project of a given UUID\r
+\preformatted{\dontrun{\r
+listOfprojects <- arv$project_list(list(list("owner_uuid", "=", projectUUID))) # Sample query which show projects within the project of a given UUID\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -568,8 +642,8 @@ project_list enables listing project by its name, uuid, properties, permissions.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_delete}{}}}\r
 \subsection{Method \code{project_delete()}}{\r
 project_delete trashes project of a given uuid. It can be restored from trash or deleted permanently.\r
 \subsection{Usage}{\r
@@ -583,10 +657,20 @@ project_delete trashes project of a given uuid. It can be restored from trash or
 }\r
 \if{html}{\out{</div>}}\r
 }\r
+\subsection{Examples}{\r
+\if{html}{\out{<div class="r example copy">}}\r
+\preformatted{\dontrun{\r
+arv$project_delete(uuid = 'projectUUID')\r
+}\r
+}\r
+\if{html}{\out{</div>}}\r
+\r
+}\r
+\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_clients_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_clients_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_clients_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_clients_get}{}}}\r
 \subsection{Method \code{api_clients_get()}}{\r
 api_clients_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -602,8 +686,8 @@ api_clients_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_clients_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_clients_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_clients_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_clients_create}{}}}\r
 \subsection{Method \code{api_clients_create()}}{\r
 api_clients_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -627,8 +711,8 @@ api_clients_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_clients_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_clients_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_clients_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_clients_update}{}}}\r
 \subsection{Method \code{api_clients_update()}}{\r
 api_clients_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -646,8 +730,8 @@ api_clients_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_clients_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_clients_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_clients_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_clients_delete}{}}}\r
 \subsection{Method \code{api_clients_delete()}}{\r
 api_clients_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -663,8 +747,8 @@ api_clients_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_clients_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_clients_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_clients_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_clients_list}{}}}\r
 \subsection{Method \code{api_clients_list()}}{\r
 api_clients_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -693,8 +777,8 @@ api_clients_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_get}{}}}\r
 \subsection{Method \code{api_client_authorizations_get()}}{\r
 api_client_authorizations_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -710,8 +794,8 @@ api_client_authorizations_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_create}{}}}\r
 \subsection{Method \code{api_client_authorizations_create()}}{\r
 api_client_authorizations_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -735,8 +819,8 @@ api_client_authorizations_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_update}{}}}\r
 \subsection{Method \code{api_client_authorizations_update()}}{\r
 api_client_authorizations_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -754,8 +838,8 @@ api_client_authorizations_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_delete}{}}}\r
 \subsection{Method \code{api_client_authorizations_delete()}}{\r
 api_client_authorizations_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -771,8 +855,8 @@ api_client_authorizations_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_create_system_auth"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_create_system_auth}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_create_system_auth"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_create_system_auth}{}}}\r
 \subsection{Method \code{api_client_authorizations_create_system_auth()}}{\r
 api_client_authorizations_create_system_auth is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -784,8 +868,8 @@ api_client_authorizations_create_system_auth is a method defined in Arvados clas
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_current"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_current}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_current"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_current}{}}}\r
 \subsection{Method \code{api_client_authorizations_current()}}{\r
 api_client_authorizations_current is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -794,8 +878,8 @@ api_client_authorizations_current is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-api_client_authorizations_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-api_client_authorizations_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-api_client_authorizations_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-api_client_authorizations_list}{}}}\r
 \subsection{Method \code{api_client_authorizations_list()}}{\r
 api_client_authorizations_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -824,8 +908,8 @@ api_client_authorizations_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-authorized_keys_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-authorized_keys_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-authorized_keys_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-authorized_keys_get}{}}}\r
 \subsection{Method \code{authorized_keys_get()}}{\r
 authorized_keys_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -841,8 +925,8 @@ authorized_keys_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-authorized_keys_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-authorized_keys_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-authorized_keys_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-authorized_keys_create}{}}}\r
 \subsection{Method \code{authorized_keys_create()}}{\r
 authorized_keys_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -866,8 +950,8 @@ authorized_keys_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-authorized_keys_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-authorized_keys_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-authorized_keys_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-authorized_keys_update}{}}}\r
 \subsection{Method \code{authorized_keys_update()}}{\r
 authorized_keys_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -885,8 +969,8 @@ authorized_keys_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-authorized_keys_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-authorized_keys_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-authorized_keys_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-authorized_keys_delete}{}}}\r
 \subsection{Method \code{authorized_keys_delete()}}{\r
 authorized_keys_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -902,8 +986,8 @@ authorized_keys_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-authorized_keys_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-authorized_keys_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-authorized_keys_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-authorized_keys_list}{}}}\r
 \subsection{Method \code{authorized_keys_list()}}{\r
 authorized_keys_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -932,8 +1016,8 @@ authorized_keys_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_get}{}}}\r
 \subsection{Method \code{collections_get()}}{\r
 collections_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -943,15 +1027,24 @@ collections_get is a method defined in Arvados class.
 \subsection{Arguments}{\r
 \if{html}{\out{<div class="arguments">}}\r
 \describe{\r
-\item{\code{uuid}}{The UUID of the Collection in question.\r
-collection <- arv$collections_get(uuid = collectionUUID)}\r
+\item{\code{uuid}}{The UUID of the Collection in question.}\r
+}\r
+\if{html}{\out{</div>}}\r
+}\r
+\subsection{Examples}{\r
+\if{html}{\out{<div class="r example copy">}}\r
+\preformatted{\dontrun{\r
+collection <- arv$collections_get(uuid = collectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
+\r
 }\r
+\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_create}{}}}\r
 \subsection{Method \code{collections_create()}}{\r
 collections_create is a method defined in Arvados class that enables collections creation.\r
 \subsection{Usage}{\r
@@ -984,17 +1077,19 @@ collections_create is a method defined in Arvados class that enables collections
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{Properties <- list() # should contain a list of new properties to be added\r
+\preformatted{\dontrun{\r
+Properties <- list() # should contain a list of new properties to be added\r
 arv$collections_create(name = "collectionTitle", description = "collectionDescription", ownerUUID = "collectionOwner", properties = Properties)\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_update}{}}}\r
 \subsection{Method \code{collections_update()}}{\r
 collections_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1024,7 +1119,9 @@ collections_update is a method defined in Arvados class.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- arv$collections_create(name = "newCollectionTitle", description = "newCollectionDescription", ownerUUID = "collectionOwner", properties = NULL)\r
+\preformatted{\dontrun{\r
+collection <- arv$collections_update(name = "newCollectionTitle", description = "newCollectionDescription", ownerUUID = "collectionOwner", properties = NULL, uuid = "collectionUUID")\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1032,8 +1129,8 @@ collections_update is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_delete}{}}}\r
 \subsection{Method \code{collections_delete()}}{\r
 collections_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1049,7 +1146,9 @@ collections_delete is a method defined in Arvados class.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$collection_delete(collectionUUID)\r
+\preformatted{\dontrun{\r
+arv$collection_delete(collectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1057,8 +1156,8 @@ collections_delete is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_provenance"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_provenance}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_provenance"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_provenance}{}}}\r
 \subsection{Method \code{collections_provenance()}}{\r
 collections_provenance is a method defined in Arvados class, it returns the collection by uuid.\r
 \subsection{Usage}{\r
@@ -1074,7 +1173,9 @@ collections_provenance is a method defined in Arvados class, it returns the coll
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- arv$collections_provenance(collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- arv$collections_provenance(collectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1082,8 +1183,8 @@ collections_provenance is a method defined in Arvados class, it returns the coll
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_used_by"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_used_by}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_used_by"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_used_by}{}}}\r
 \subsection{Method \code{collections_used_by()}}{\r
 collections_used_by is a method defined in Arvados class, it returns collection by portable_data_hash.\r
 \subsection{Usage}{\r
@@ -1099,8 +1200,8 @@ collections_used_by is a method defined in Arvados class, it returns collection
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_trash"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_trash}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_trash"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_trash}{}}}\r
 \subsection{Method \code{collections_trash()}}{\r
 collections_trash is a method defined in Arvados class, it moves collection to trash.\r
 \subsection{Usage}{\r
@@ -1116,7 +1217,9 @@ collections_trash is a method defined in Arvados class, it moves collection to t
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$collections_trash(collectionUUID)\r
+\preformatted{\dontrun{\r
+arv$collections_trash(collectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1124,8 +1227,8 @@ collections_trash is a method defined in Arvados class, it moves collection to t
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_untrash"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_untrash}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_untrash"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_untrash}{}}}\r
 \subsection{Method \code{collections_untrash()}}{\r
 collections_untrash is a method defined in Arvados class, it moves collection from trash to project.\r
 \subsection{Usage}{\r
@@ -1141,7 +1244,9 @@ collections_untrash is a method defined in Arvados class, it moves collection fr
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$collections_untrash(collectionUUID)\r
+\preformatted{\dontrun{\r
+arv$collections_untrash(collectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1149,8 +1254,8 @@ collections_untrash is a method defined in Arvados class, it moves collection fr
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-collections_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-collections_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-collections_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-collections_list}{}}}\r
 \subsection{Method \code{collections_list()}}{\r
 collections_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1185,7 +1290,9 @@ collections_list is a method defined in Arvados class.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collectionList <- arv$collections.list(list(list("name", "=", "Example")))\r
+\preformatted{\dontrun{\r
+collectionList <- arv$collections_list(list(list("name", "=", "Example")))\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1193,8 +1300,8 @@ collections_list is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_get}{}}}\r
 \subsection{Method \code{containers_get()}}{\r
 containers_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1210,8 +1317,8 @@ containers_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_create}{}}}\r
 \subsection{Method \code{containers_create()}}{\r
 containers_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1235,8 +1342,8 @@ containers_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_update}{}}}\r
 \subsection{Method \code{containers_update()}}{\r
 containers_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1254,8 +1361,8 @@ containers_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_delete}{}}}\r
 \subsection{Method \code{containers_delete()}}{\r
 containers_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1271,8 +1378,8 @@ containers_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_auth"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_auth}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_auth"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_auth}{}}}\r
 \subsection{Method \code{containers_auth()}}{\r
 containers_auth is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1288,8 +1395,8 @@ containers_auth is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_lock"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_lock}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_lock"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_lock}{}}}\r
 \subsection{Method \code{containers_lock()}}{\r
 containers_lock is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1305,8 +1412,8 @@ containers_lock is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_unlock"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_unlock}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_unlock"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_unlock}{}}}\r
 \subsection{Method \code{containers_unlock()}}{\r
 containers_unlock is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1322,8 +1429,8 @@ containers_unlock is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_secret_mounts"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_secret_mounts}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_secret_mounts"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_secret_mounts}{}}}\r
 \subsection{Method \code{containers_secret_mounts()}}{\r
 containers_secret_mounts is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1339,8 +1446,8 @@ containers_secret_mounts is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_current"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_current}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_current"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_current}{}}}\r
 \subsection{Method \code{containers_current()}}{\r
 containers_current is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1349,8 +1456,8 @@ containers_current is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-containers_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-containers_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-containers_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-containers_list}{}}}\r
 \subsection{Method \code{containers_list()}}{\r
 containers_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1379,8 +1486,8 @@ containers_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-container_requests_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-container_requests_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-container_requests_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-container_requests_get}{}}}\r
 \subsection{Method \code{container_requests_get()}}{\r
 container_requests_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1396,8 +1503,8 @@ container_requests_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-container_requests_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-container_requests_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-container_requests_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-container_requests_create}{}}}\r
 \subsection{Method \code{container_requests_create()}}{\r
 container_requests_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1421,8 +1528,8 @@ container_requests_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-container_requests_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-container_requests_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-container_requests_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-container_requests_update}{}}}\r
 \subsection{Method \code{container_requests_update()}}{\r
 container_requests_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1440,8 +1547,8 @@ container_requests_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-container_requests_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-container_requests_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-container_requests_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-container_requests_delete}{}}}\r
 \subsection{Method \code{container_requests_delete()}}{\r
 container_requests_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1457,8 +1564,8 @@ container_requests_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-container_requests_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-container_requests_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-container_requests_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-container_requests_list}{}}}\r
 \subsection{Method \code{container_requests_list()}}{\r
 container_requests_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1490,8 +1597,8 @@ container_requests_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_get}{}}}\r
 \subsection{Method \code{groups_get()}}{\r
 groups_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1507,8 +1614,8 @@ groups_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_create}{}}}\r
 \subsection{Method \code{groups_create()}}{\r
 groups_create is a method defined in Arvados class that supports project creation.\r
 \subsection{Usage}{\r
@@ -1535,8 +1642,8 @@ groups_create is a method defined in Arvados class that supports project creatio
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_update}{}}}\r
 \subsection{Method \code{groups_update()}}{\r
 groups_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1556,8 +1663,8 @@ groups_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_delete}{}}}\r
 \subsection{Method \code{groups_delete()}}{\r
 groups_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1573,8 +1680,8 @@ groups_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_contents"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_contents}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_contents"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_contents}{}}}\r
 \subsection{Method \code{groups_contents()}}{\r
 groups_contents is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1612,8 +1719,8 @@ groups_contents is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_shared"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_shared}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_shared"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_shared}{}}}\r
 \subsection{Method \code{groups_shared()}}{\r
 groups_shared is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1646,8 +1753,8 @@ groups_shared is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_trash"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_trash}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_trash"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_trash}{}}}\r
 \subsection{Method \code{groups_trash()}}{\r
 groups_trash is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1663,8 +1770,8 @@ groups_trash is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_untrash"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_untrash}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_untrash"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_untrash}{}}}\r
 \subsection{Method \code{groups_untrash()}}{\r
 groups_untrash is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1680,8 +1787,8 @@ groups_untrash is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-groups_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-groups_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-groups_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-groups_list}{}}}\r
 \subsection{Method \code{groups_list()}}{\r
 groups_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1713,8 +1820,8 @@ groups_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_get}{}}}\r
 \subsection{Method \code{keep_services_get()}}{\r
 keep_services_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1730,8 +1837,8 @@ keep_services_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_create}{}}}\r
 \subsection{Method \code{keep_services_create()}}{\r
 keep_services_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1755,8 +1862,8 @@ keep_services_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_update}{}}}\r
 \subsection{Method \code{keep_services_update()}}{\r
 keep_services_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1774,8 +1881,8 @@ keep_services_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_delete}{}}}\r
 \subsection{Method \code{keep_services_delete()}}{\r
 keep_services_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1791,8 +1898,8 @@ keep_services_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_accessible"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_accessible}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_accessible"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_accessible}{}}}\r
 \subsection{Method \code{keep_services_accessible()}}{\r
 keep_services_accessible is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1801,8 +1908,8 @@ keep_services_accessible is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-keep_services_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-keep_services_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-keep_services_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-keep_services_list}{}}}\r
 \subsection{Method \code{keep_services_list()}}{\r
 keep_services_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1831,8 +1938,8 @@ keep_services_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_permission_give"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_permission_give}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_permission_give"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_permission_give}{}}}\r
 \subsection{Method \code{project_permission_give()}}{\r
 project_permission_give is a method defined in Arvados class that enables sharing files with another users.\r
 \subsection{Usage}{\r
@@ -1852,7 +1959,9 @@ project_permission_give is a method defined in Arvados class that enables sharin
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_permission_give(type = "can_read", uuid = objectUUID, user = userUUID)\r
+\preformatted{\dontrun{\r
+arv$project_permission_give(type = "can_read", uuid = objectUUID, user = userUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1860,8 +1969,8 @@ project_permission_give is a method defined in Arvados class that enables sharin
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_permission_refuse"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_permission_refuse}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_permission_refuse"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_permission_refuse}{}}}\r
 \subsection{Method \code{project_permission_refuse()}}{\r
 project_permission_refuse is a method defined in Arvados class that unables sharing files with another users.\r
 \subsection{Usage}{\r
@@ -1881,7 +1990,9 @@ project_permission_refuse is a method defined in Arvados class that unables shar
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_permission_refuse(type = "can_read", uuid = objectUUID, user = userUUID)\r
+\preformatted{\dontrun{\r
+arv$project_permission_refuse(type = "can_read", uuid = objectUUID, user = userUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1889,8 +2000,8 @@ project_permission_refuse is a method defined in Arvados class that unables shar
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_permission_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_permission_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_permission_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_permission_update}{}}}\r
 \subsection{Method \code{project_permission_update()}}{\r
 project_permission_update is a method defined in Arvados class that enables updating permissions.\r
 \subsection{Usage}{\r
@@ -1912,7 +2023,9 @@ project_permission_update is a method defined in Arvados class that enables upda
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_permission_update(typeOld = "can_read", typeNew = "can_write", uuid = objectUUID, user = userUUID)\r
+\preformatted{\dontrun{\r
+arv$project_permission_update(typeOld = "can_read", typeNew = "can_write", uuid = objectUUID, user = userUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1920,8 +2033,8 @@ project_permission_update is a method defined in Arvados class that enables upda
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-project_permission_check"></a>}}\r
-\if{latex}{\out{\hypertarget{method-project_permission_check}{}}}\r
+\if{html}{\out{<a id="method-Arvados-project_permission_check"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-project_permission_check}{}}}\r
 \subsection{Method \code{project_permission_check()}}{\r
 project_permission_check is a method defined in Arvados class that enables checking file permissions.\r
 \subsection{Usage}{\r
@@ -1941,7 +2054,9 @@ project_permission_check is a method defined in Arvados class that enables check
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arv$project_permission_check(type = "can_read", uuid = objectUUID, user = userUUID)\r
+\preformatted{\dontrun{\r
+arv$project_permission_check(type = "can_read", uuid = objectUUID, user = userUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -1949,8 +2064,8 @@ project_permission_check is a method defined in Arvados class that enables check
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_get}{}}}\r
 \subsection{Method \code{links_get()}}{\r
 links_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1966,8 +2081,8 @@ links_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_create}{}}}\r
 \subsection{Method \code{links_create()}}{\r
 links_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -1987,8 +2102,8 @@ links_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_update}{}}}\r
 \subsection{Method \code{links_update()}}{\r
 links_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2006,8 +2121,8 @@ links_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_delete}{}}}\r
 \subsection{Method \code{links_delete()}}{\r
 links_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2023,8 +2138,8 @@ links_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_list}{}}}\r
 \subsection{Method \code{links_list()}}{\r
 links_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2053,8 +2168,8 @@ links_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-links_get_permissions"></a>}}\r
-\if{latex}{\out{\hypertarget{method-links_get_permissions}{}}}\r
+\if{html}{\out{<a id="method-Arvados-links_get_permissions"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-links_get_permissions}{}}}\r
 \subsection{Method \code{links_get_permissions()}}{\r
 links_get_permissions is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2070,8 +2185,8 @@ links_get_permissions is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-logs_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-logs_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-logs_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-logs_get}{}}}\r
 \subsection{Method \code{logs_get()}}{\r
 logs_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2087,8 +2202,8 @@ logs_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-logs_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-logs_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-logs_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-logs_create}{}}}\r
 \subsection{Method \code{logs_create()}}{\r
 logs_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2108,8 +2223,8 @@ logs_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-logs_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-logs_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-logs_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-logs_update}{}}}\r
 \subsection{Method \code{logs_update()}}{\r
 logs_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2127,8 +2242,8 @@ logs_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-logs_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-logs_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-logs_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-logs_delete}{}}}\r
 \subsection{Method \code{logs_delete()}}{\r
 logs_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2144,8 +2259,8 @@ logs_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-logs_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-logs_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-logs_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-logs_list}{}}}\r
 \subsection{Method \code{logs_list()}}{\r
 logs_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2174,8 +2289,8 @@ logs_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_get}{}}}\r
 \subsection{Method \code{users_get()}}{\r
 users_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2191,8 +2306,8 @@ users_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_create}{}}}\r
 \subsection{Method \code{users_create()}}{\r
 users_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2212,8 +2327,8 @@ users_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_update}{}}}\r
 \subsection{Method \code{users_update()}}{\r
 users_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2231,8 +2346,8 @@ users_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_delete}{}}}\r
 \subsection{Method \code{users_delete()}}{\r
 users_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2248,8 +2363,8 @@ users_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_current"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_current}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_current"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_current}{}}}\r
 \subsection{Method \code{users_current()}}{\r
 users_current is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2258,8 +2373,8 @@ users_current is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_system"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_system}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_system"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_system}{}}}\r
 \subsection{Method \code{users_system()}}{\r
 users_system is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2268,8 +2383,8 @@ users_system is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_activate"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_activate}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_activate"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_activate}{}}}\r
 \subsection{Method \code{users_activate()}}{\r
 users_activate is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2285,8 +2400,8 @@ users_activate is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_setup"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_setup}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_setup"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_setup}{}}}\r
 \subsection{Method \code{users_setup()}}{\r
 users_setup is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2301,8 +2416,8 @@ users_setup is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_unsetup"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_unsetup}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_unsetup"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_unsetup}{}}}\r
 \subsection{Method \code{users_unsetup()}}{\r
 users_unsetup is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2318,8 +2433,8 @@ users_unsetup is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_merge"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_merge}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_merge"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_merge}{}}}\r
 \subsection{Method \code{users_merge()}}{\r
 users_merge is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2334,8 +2449,8 @@ users_merge is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-users_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-users_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-users_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-users_list}{}}}\r
 \subsection{Method \code{users_list()}}{\r
 users_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2364,8 +2479,8 @@ users_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_get}{}}}\r
 \subsection{Method \code{repositories_get()}}{\r
 repositories_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2381,8 +2496,8 @@ repositories_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_create}{}}}\r
 \subsection{Method \code{repositories_create()}}{\r
 repositories_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2406,8 +2521,8 @@ repositories_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_update}{}}}\r
 \subsection{Method \code{repositories_update()}}{\r
 repositories_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2425,8 +2540,8 @@ repositories_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_delete}{}}}\r
 \subsection{Method \code{repositories_delete()}}{\r
 repositories_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2442,8 +2557,8 @@ repositories_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_get_all_permissions"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_get_all_permissions}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_get_all_permissions"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_get_all_permissions}{}}}\r
 \subsection{Method \code{repositories_get_all_permissions()}}{\r
 repositories_get_all_permissions is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2452,8 +2567,8 @@ repositories_get_all_permissions is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-repositories_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-repositories_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-repositories_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-repositories_list}{}}}\r
 \subsection{Method \code{repositories_list()}}{\r
 repositories_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2482,8 +2597,8 @@ repositories_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_get}{}}}\r
 \subsection{Method \code{virtual_machines_get()}}{\r
 virtual_machines_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2499,8 +2614,8 @@ virtual_machines_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_create}{}}}\r
 \subsection{Method \code{virtual_machines_create()}}{\r
 virtual_machines_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2524,8 +2639,8 @@ virtual_machines_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_update}{}}}\r
 \subsection{Method \code{virtual_machines_update()}}{\r
 virtual_machines_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2543,8 +2658,8 @@ virtual_machines_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_delete}{}}}\r
 \subsection{Method \code{virtual_machines_delete()}}{\r
 virtual_machines_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2560,8 +2675,8 @@ virtual_machines_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_logins"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_logins}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_logins"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_logins}{}}}\r
 \subsection{Method \code{virtual_machines_logins()}}{\r
 virtual_machines_logins is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2577,8 +2692,8 @@ virtual_machines_logins is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_get_all_logins"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_get_all_logins}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_get_all_logins"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_get_all_logins}{}}}\r
 \subsection{Method \code{virtual_machines_get_all_logins()}}{\r
 virtual_machines_get_all_logins is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2587,8 +2702,8 @@ virtual_machines_get_all_logins is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-virtual_machines_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-virtual_machines_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-virtual_machines_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-virtual_machines_list}{}}}\r
 \subsection{Method \code{virtual_machines_list()}}{\r
 virtual_machines_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2617,8 +2732,8 @@ virtual_machines_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-workflows_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-workflows_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-workflows_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-workflows_get}{}}}\r
 \subsection{Method \code{workflows_get()}}{\r
 workflows_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2634,8 +2749,8 @@ workflows_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-workflows_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-workflows_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-workflows_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-workflows_create}{}}}\r
 \subsection{Method \code{workflows_create()}}{\r
 workflows_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2659,8 +2774,8 @@ workflows_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-workflows_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-workflows_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-workflows_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-workflows_update}{}}}\r
 \subsection{Method \code{workflows_update()}}{\r
 workflows_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2678,8 +2793,8 @@ workflows_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-workflows_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-workflows_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-workflows_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-workflows_delete}{}}}\r
 \subsection{Method \code{workflows_delete()}}{\r
 workflows_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2695,8 +2810,8 @@ workflows_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-workflows_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-workflows_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-workflows_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-workflows_list}{}}}\r
 \subsection{Method \code{workflows_list()}}{\r
 workflows_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2725,8 +2840,8 @@ workflows_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_get}{}}}\r
 \subsection{Method \code{user_agreements_get()}}{\r
 user_agreements_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2742,8 +2857,8 @@ user_agreements_get is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_create}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_create}{}}}\r
 \subsection{Method \code{user_agreements_create()}}{\r
 user_agreements_create is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2767,8 +2882,8 @@ user_agreements_create is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_update"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_update}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_update"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_update}{}}}\r
 \subsection{Method \code{user_agreements_update()}}{\r
 user_agreements_update is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2786,8 +2901,8 @@ user_agreements_update is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_delete"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_delete}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_delete"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_delete}{}}}\r
 \subsection{Method \code{user_agreements_delete()}}{\r
 user_agreements_delete is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2803,8 +2918,8 @@ user_agreements_delete is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_signatures"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_signatures}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_signatures"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_signatures}{}}}\r
 \subsection{Method \code{user_agreements_signatures()}}{\r
 user_agreements_signatures is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2813,8 +2928,8 @@ user_agreements_signatures is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_sign"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_sign}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_sign"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_sign}{}}}\r
 \subsection{Method \code{user_agreements_sign()}}{\r
 user_agreements_sign is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2823,8 +2938,8 @@ user_agreements_sign is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_list"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_list}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_list"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_list}{}}}\r
 \subsection{Method \code{user_agreements_list()}}{\r
 user_agreements_list is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2853,8 +2968,8 @@ user_agreements_list is a method defined in Arvados class.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-user_agreements_new"></a>}}\r
-\if{latex}{\out{\hypertarget{method-user_agreements_new}{}}}\r
+\if{html}{\out{<a id="method-Arvados-user_agreements_new"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-user_agreements_new}{}}}\r
 \subsection{Method \code{user_agreements_new()}}{\r
 user_agreements_new is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2863,8 +2978,8 @@ user_agreements_new is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-configs_get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-configs_get}{}}}\r
+\if{html}{\out{<a id="method-Arvados-configs_get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-configs_get}{}}}\r
 \subsection{Method \code{configs_get()}}{\r
 configs_get is a method defined in Arvados class.\r
 \subsection{Usage}{\r
@@ -2873,8 +2988,8 @@ configs_get is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getHostName"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getHostName}{}}}\r
+\if{html}{\out{<a id="method-Arvados-getHostName"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-getHostName}{}}}\r
 \subsection{Method \code{getHostName()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Arvados$getHostName()}\if{html}{\out{</div>}}\r
@@ -2882,8 +2997,8 @@ configs_get is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getToken"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getToken}{}}}\r
+\if{html}{\out{<a id="method-Arvados-getToken"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-getToken}{}}}\r
 \subsection{Method \code{getToken()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Arvados$getToken()}\if{html}{\out{</div>}}\r
@@ -2891,8 +3006,8 @@ configs_get is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setRESTService"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setRESTService}{}}}\r
+\if{html}{\out{<a id="method-Arvados-setRESTService"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-setRESTService}{}}}\r
 \subsection{Method \code{setRESTService()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Arvados$setRESTService(newREST)}\if{html}{\out{</div>}}\r
@@ -2900,8 +3015,8 @@ configs_get is a method defined in Arvados class.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getRESTService"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getRESTService}{}}}\r
+\if{html}{\out{<a id="method-Arvados-getRESTService"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Arvados-getRESTService}{}}}\r
 \subsection{Method \code{getRESTService()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Arvados$getRESTService()}\if{html}{\out{</div>}}\r
index 8275b7b6003fd1a540f9047f7f483d6f6267528d..81c25af5f14323f880e4f9235dbde984e5d7ac0e 100644 (file)
@@ -12,97 +12,117 @@ ArvadosFile class represents a file inside Arvados collection.
 ## Method `ArvadosFile$new`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 myFile   <- ArvadosFile$new("myFile")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$getName`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile$getName()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$getFileListing`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile$getFileListing()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$getSizeInBytes`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile$getSizeInBytes()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$read`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 fileContent <- arvadosFile$read("text")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$connection`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 arvConnection <- arvadosFile$connection("w")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$flush`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 myFile$write("This is new file content")\r
 arvadosFile$flush()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$write`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 myFile$write("This is new file content")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$move`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile$move(newPath)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `ArvadosFile$copy`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile$copy("NewName.format")\r
 }\r
+}\r
 \section{Methods}{\r
 \subsection{Public methods}{\r
 \itemize{\r
-\item \href{#method-new}{\code{ArvadosFile$new()}}\r
-\item \href{#method-getName}{\code{ArvadosFile$getName()}}\r
-\item \href{#method-getFileListing}{\code{ArvadosFile$getFileListing()}}\r
-\item \href{#method-getSizeInBytes}{\code{ArvadosFile$getSizeInBytes()}}\r
-\item \href{#method-get}{\code{ArvadosFile$get()}}\r
-\item \href{#method-getFirst}{\code{ArvadosFile$getFirst()}}\r
-\item \href{#method-getCollection}{\code{ArvadosFile$getCollection()}}\r
-\item \href{#method-setCollection}{\code{ArvadosFile$setCollection()}}\r
-\item \href{#method-getRelativePath}{\code{ArvadosFile$getRelativePath()}}\r
-\item \href{#method-getParent}{\code{ArvadosFile$getParent()}}\r
-\item \href{#method-setParent}{\code{ArvadosFile$setParent()}}\r
-\item \href{#method-read}{\code{ArvadosFile$read()}}\r
-\item \href{#method-connection}{\code{ArvadosFile$connection()}}\r
-\item \href{#method-flush}{\code{ArvadosFile$flush()}}\r
-\item \href{#method-write}{\code{ArvadosFile$write()}}\r
-\item \href{#method-move}{\code{ArvadosFile$move()}}\r
-\item \href{#method-copy}{\code{ArvadosFile$copy()}}\r
-\item \href{#method-duplicate}{\code{ArvadosFile$duplicate()}}\r
+\item \href{#method-ArvadosFile-new}{\code{ArvadosFile$new()}}\r
+\item \href{#method-ArvadosFile-getName}{\code{ArvadosFile$getName()}}\r
+\item \href{#method-ArvadosFile-getFileListing}{\code{ArvadosFile$getFileListing()}}\r
+\item \href{#method-ArvadosFile-getSizeInBytes}{\code{ArvadosFile$getSizeInBytes()}}\r
+\item \href{#method-ArvadosFile-get}{\code{ArvadosFile$get()}}\r
+\item \href{#method-ArvadosFile-getFirst}{\code{ArvadosFile$getFirst()}}\r
+\item \href{#method-ArvadosFile-getCollection}{\code{ArvadosFile$getCollection()}}\r
+\item \href{#method-ArvadosFile-setCollection}{\code{ArvadosFile$setCollection()}}\r
+\item \href{#method-ArvadosFile-getRelativePath}{\code{ArvadosFile$getRelativePath()}}\r
+\item \href{#method-ArvadosFile-getParent}{\code{ArvadosFile$getParent()}}\r
+\item \href{#method-ArvadosFile-setParent}{\code{ArvadosFile$setParent()}}\r
+\item \href{#method-ArvadosFile-read}{\code{ArvadosFile$read()}}\r
+\item \href{#method-ArvadosFile-connection}{\code{ArvadosFile$connection()}}\r
+\item \href{#method-ArvadosFile-flush}{\code{ArvadosFile$flush()}}\r
+\item \href{#method-ArvadosFile-write}{\code{ArvadosFile$write()}}\r
+\item \href{#method-ArvadosFile-move}{\code{ArvadosFile$move()}}\r
+\item \href{#method-ArvadosFile-copy}{\code{ArvadosFile$copy()}}\r
+\item \href{#method-ArvadosFile-duplicate}{\code{ArvadosFile$duplicate()}}\r
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-new"></a>}}\r
-\if{latex}{\out{\hypertarget{method-new}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-new"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-new}{}}}\r
 \subsection{Method \code{new()}}{\r
 Initialize new enviroment.\r
 \subsection{Usage}{\r
@@ -121,7 +141,9 @@ A new `ArvadosFile` object.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{myFile   <- ArvadosFile$new("myFile")\r
+\preformatted{\dontrun{\r
+myFile   <- ArvadosFile$new("myFile")\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -129,8 +151,8 @@ A new `ArvadosFile` object.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getName"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getName}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getName"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getName}{}}}\r
 \subsection{Method \code{getName()}}{\r
 Returns name of the file.\r
 \subsection{Usage}{\r
@@ -139,7 +161,9 @@ Returns name of the file.
 \r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile$getName()\r
+\preformatted{\dontrun{\r
+arvadosFile$getName()\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -147,8 +171,8 @@ Returns name of the file.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getFileListing"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getFileListing}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getFileListing"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getFileListing}{}}}\r
 \subsection{Method \code{getFileListing()}}{\r
 Returns collections file content as character vector.\r
 \subsection{Usage}{\r
@@ -164,7 +188,9 @@ Returns collections file content as character vector.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile$getFileListing()\r
+\preformatted{\dontrun{\r
+arvadosFile$getFileListing()\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -172,8 +198,8 @@ Returns collections file content as character vector.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getSizeInBytes"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getSizeInBytes}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getSizeInBytes"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getSizeInBytes}{}}}\r
 \subsection{Method \code{getSizeInBytes()}}{\r
 Returns collections content size in bytes.\r
 \subsection{Usage}{\r
@@ -182,7 +208,9 @@ Returns collections content size in bytes.
 \r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile$getSizeInBytes()\r
+\preformatted{\dontrun{\r
+arvadosFile$getSizeInBytes()\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -190,8 +218,8 @@ Returns collections content size in bytes.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-get}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-get}{}}}\r
 \subsection{Method \code{get()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{ArvadosFile$get(fileLikeObjectName)}\if{html}{\out{</div>}}\r
@@ -199,8 +227,8 @@ Returns collections content size in bytes.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getFirst"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getFirst}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getFirst"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getFirst}{}}}\r
 \subsection{Method \code{getFirst()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{ArvadosFile$getFirst()}\if{html}{\out{</div>}}\r
@@ -208,8 +236,8 @@ Returns collections content size in bytes.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getCollection"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getCollection}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getCollection"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getCollection}{}}}\r
 \subsection{Method \code{getCollection()}}{\r
 Returns collection UUID.\r
 \subsection{Usage}{\r
@@ -218,8 +246,8 @@ Returns collection UUID.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setCollection"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setCollection}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-setCollection"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-setCollection}{}}}\r
 \subsection{Method \code{setCollection()}}{\r
 Sets new collection.\r
 \subsection{Usage}{\r
@@ -228,8 +256,8 @@ Sets new collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getRelativePath"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getRelativePath}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getRelativePath"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getRelativePath}{}}}\r
 \subsection{Method \code{getRelativePath()}}{\r
 Returns file path relative to the root.\r
 \subsection{Usage}{\r
@@ -238,8 +266,8 @@ Returns file path relative to the root.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getParent"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getParent}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-getParent"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-getParent}{}}}\r
 \subsection{Method \code{getParent()}}{\r
 Returns project UUID.\r
 \subsection{Usage}{\r
@@ -248,8 +276,8 @@ Returns project UUID.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setParent"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setParent}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-setParent"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-setParent}{}}}\r
 \subsection{Method \code{setParent()}}{\r
 Sets project collection.\r
 \subsection{Usage}{\r
@@ -258,8 +286,8 @@ Sets project collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-read"></a>}}\r
-\if{latex}{\out{\hypertarget{method-read}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-read"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-read}{}}}\r
 \subsection{Method \code{read()}}{\r
 Read file content.\r
 \subsection{Usage}{\r
@@ -279,18 +307,20 @@ Read file content.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 fileContent <- arvadosFile$read("text")\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-connection"></a>}}\r
-\if{latex}{\out{\hypertarget{method-connection}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-connection"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-connection}{}}}\r
 \subsection{Method \code{connection()}}{\r
 Get connection opened in "read" or "write" mode.\r
 \subsection{Usage}{\r
@@ -306,18 +336,20 @@ Get connection opened in "read" or "write" mode.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 arvConnection <- arvadosFile$connection("w")\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-flush"></a>}}\r
-\if{latex}{\out{\hypertarget{method-flush}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-flush"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-flush}{}}}\r
 \subsection{Method \code{flush()}}{\r
 Write connections content to a file or override current content of the file.\r
 \subsection{Usage}{\r
@@ -326,19 +358,21 @@ Write connections content to a file or override current content of the file.
 \r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 myFile$write("This is new file content")\r
 arvadosFile$flush()\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-write"></a>}}\r
-\if{latex}{\out{\hypertarget{method-write}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-write"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-write}{}}}\r
 \subsection{Method \code{write()}}{\r
 Write to file or override current content of the file.\r
 \subsection{Usage}{\r
@@ -356,18 +390,20 @@ Write to file or override current content of the file.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 arvadosFile <- collection$get(fileName)\r
 myFile$write("This is new file content")\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-move"></a>}}\r
-\if{latex}{\out{\hypertarget{method-move}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-move"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-move}{}}}\r
 \subsection{Method \code{move()}}{\r
 Moves file to a new location inside collection.\r
 \subsection{Usage}{\r
@@ -383,7 +419,9 @@ Moves file to a new location inside collection.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile$move(newPath)\r
+\preformatted{\dontrun{\r
+arvadosFile$move(newPath)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -391,8 +429,8 @@ Moves file to a new location inside collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-copy"></a>}}\r
-\if{latex}{\out{\hypertarget{method-copy}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-copy"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-copy}{}}}\r
 \subsection{Method \code{copy()}}{\r
 Copies file to a new location inside collection.\r
 \subsection{Usage}{\r
@@ -408,7 +446,9 @@ Copies file to a new location inside collection.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile$copy("NewName.format")\r
+\preformatted{\dontrun{\r
+arvadosFile$copy("NewName.format")\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -416,8 +456,8 @@ Copies file to a new location inside collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-duplicate"></a>}}\r
-\if{latex}{\out{\hypertarget{method-duplicate}{}}}\r
+\if{html}{\out{<a id="method-ArvadosFile-duplicate"></a>}}\r
+\if{latex}{\out{\hypertarget{method-ArvadosFile-duplicate}{}}}\r
 \subsection{Method \code{duplicate()}}{\r
 Duplicate file and gives it a new name.\r
 \subsection{Usage}{\r
index 1432491f69d895f494a1c1b29f5b64e81622cfb7..fe6297a2796df513cff028c5eae152956fe06a9f 100644 (file)
@@ -4,7 +4,6 @@
 \alias{ArvadosR}
 \title{ArvadosR}
 \description{
-
 Arvados is an open source platform for managing, processing, and sharing genomic and other large scientific and biomedical data. With Arvados, bioinformaticians run and scale compute-intensive workflows, developers create biomedical applications, and IT administrators manage large compute and storage resources.
 }
 \seealso{
@@ -16,6 +15,8 @@ Arvados is an open source platform for managing, processing, and sharing genomic
 \itemize{
 \item Lucas Di Pentima
 \item Ward Vandewege
+\item Fuad Muhic
 \item Peter Amstutz
-\item Fuad Muhic}
+\item Aneta Stanczyk
+\item Piotr Nowosielski}
 }
index bb72cc1b3fe75e192f81c9c091c1a4d6f7a259df..8ac6fcce14ac4320e6d45b6b7e7faef39db9d687 100644 (file)
@@ -13,24 +13,29 @@ for exaplme actions like creating, updating, moving or removing are possible.
 ## Method `Collection$new`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, CollectionUUID)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$readArvFile`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 readFile <- collection$readArvFile(arvadosFile, istable = 'yes')                    # table\r
 readFile <- collection$readArvFile(arvadosFile, istable = 'no')                     # text\r
 readFile <- collection$readArvFile(arvadosFile)                                     # xlsx, csv, tsv, rds, rdata\r
-readFile <- collection$readArvFile(arvadosFile, fileclass = 'lala')                 # fasta\r
+readFile <- collection$readArvFile(arvadosFile, fileclass = 'fasta')                # fasta\r
 readFile <- collection$readArvFile(arvadosFile, Ncol= 4, Nrow = 32)                 # binary, only numbers\r
 readFile <- collection$readArvFile(arvadosFile, Ncol = 5, Nrow = 150, istable = "factor") # binary with factor or text\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$writeFile`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- Collection$new(arv, collectionUUID)\r
 writeFile <- collection$writeFile(name = "myoutput.csv", file = file, fileFormat = "csv", istable = NULL, collectionUUID = collectionUUID)             # csv\r
 writeFile <- collection$writeFile(name = "myoutput.tsv", file = file, fileFormat = "tsv", istable = NULL, collectionUUID = collectionUUID)             # tsv\r
@@ -39,49 +44,64 @@ writeFile <- collection$writeFile(name = "myoutputtable.txt", file = file, fileF
 writeFile <- collection$writeFile(name = "myoutputtext.txt", file = file, fileFormat = "txt", istable = "no", collectionUUID = collectionUUID)         # txt text\r
 writeFile <- collection$writeFile(name = "myoutputbinary.dat", file = file, fileFormat = "dat", collectionUUID = collectionUUID)                       # binary\r
 writeFile <- collection$writeFile(name = "myoutputxlsx.xlsx", file = file, fileFormat = "xlsx", collectionUUID = collectionUUID)                       # xlsx\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$create`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection <- arv$collections_create(name = collectionTitle, description = collectionDescription, owner_uuid = collectionOwner, properties = list("ROX37196928443768648" = "ROX37742976443830153"))\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$remove`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection$remove(fileName.format)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$move`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection$move("fileName.format", path)\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$copy`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 copied <- collection$copy("oldName.format", "newName.format")\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$refresh`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 collection$refresh()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$getFileListing`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 list <- collection$getFileListing()\r
+}\r
 \r
 ## ------------------------------------------------\r
 ## Method `Collection$get`\r
 ## ------------------------------------------------\r
 \r
+\dontrun{\r
 arvadosFile <- collection$get(fileName)\r
 }\r
+}\r
 \seealso{\r
 \code{\link{https://github.com/arvados/arvados/tree/main/sdk/R}}\r
 }\r
@@ -95,24 +115,24 @@ arvadosFile <- collection$get(fileName)
 \section{Methods}{\r
 \subsection{Public methods}{\r
 \itemize{\r
-\item \href{#method-new}{\code{Collection$new()}}\r
-\item \href{#method-add}{\code{Collection$add()}}\r
-\item \href{#method-readArvFile}{\code{Collection$readArvFile()}}\r
-\item \href{#method-writeFile}{\code{Collection$writeFile()}}\r
-\item \href{#method-create}{\code{Collection$create()}}\r
-\item \href{#method-remove}{\code{Collection$remove()}}\r
-\item \href{#method-move}{\code{Collection$move()}}\r
-\item \href{#method-copy}{\code{Collection$copy()}}\r
-\item \href{#method-refresh}{\code{Collection$refresh()}}\r
-\item \href{#method-getFileListing}{\code{Collection$getFileListing()}}\r
-\item \href{#method-get}{\code{Collection$get()}}\r
-\item \href{#method-getRESTService}{\code{Collection$getRESTService()}}\r
-\item \href{#method-setRESTService}{\code{Collection$setRESTService()}}\r
+\item \href{#method-Collection-new}{\code{Collection$new()}}\r
+\item \href{#method-Collection-add}{\code{Collection$add()}}\r
+\item \href{#method-Collection-readArvFile}{\code{Collection$readArvFile()}}\r
+\item \href{#method-Collection-writeFile}{\code{Collection$writeFile()}}\r
+\item \href{#method-Collection-create}{\code{Collection$create()}}\r
+\item \href{#method-Collection-remove}{\code{Collection$remove()}}\r
+\item \href{#method-Collection-move}{\code{Collection$move()}}\r
+\item \href{#method-Collection-copy}{\code{Collection$copy()}}\r
+\item \href{#method-Collection-refresh}{\code{Collection$refresh()}}\r
+\item \href{#method-Collection-getFileListing}{\code{Collection$getFileListing()}}\r
+\item \href{#method-Collection-get}{\code{Collection$get()}}\r
+\item \href{#method-Collection-getRESTService}{\code{Collection$getRESTService()}}\r
+\item \href{#method-Collection-setRESTService}{\code{Collection$setRESTService()}}\r
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-new"></a>}}\r
-\if{latex}{\out{\hypertarget{method-new}{}}}\r
+\if{html}{\out{<a id="method-Collection-new"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-new}{}}}\r
 \subsection{Method \code{new()}}{\r
 Initialize new enviroment.\r
 \subsection{Usage}{\r
@@ -133,7 +153,9 @@ A new `Collection` object.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, CollectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, CollectionUUID)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -141,8 +163,8 @@ A new `Collection` object.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-add"></a>}}\r
-\if{latex}{\out{\hypertarget{method-add}{}}}\r
+\if{html}{\out{<a id="method-Collection-add"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-add}{}}}\r
 \subsection{Method \code{add()}}{\r
 Adds ArvadosFile or Subcollection specified by content to the collection. Used only with ArvadosFile or Subcollection.\r
 \subsection{Usage}{\r
@@ -160,8 +182,8 @@ Adds ArvadosFile or Subcollection specified by content to the collection. Used o
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-readArvFile"></a>}}\r
-\if{latex}{\out{\hypertarget{method-readArvFile}{}}}\r
+\if{html}{\out{<a id="method-Collection-readArvFile"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-readArvFile}{}}}\r
 \subsection{Method \code{readArvFile()}}{\r
 Read file content.\r
 \subsection{Usage}{\r
@@ -198,22 +220,24 @@ Read file content.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 readFile <- collection$readArvFile(arvadosFile, istable = 'yes')                    # table\r
 readFile <- collection$readArvFile(arvadosFile, istable = 'no')                     # text\r
 readFile <- collection$readArvFile(arvadosFile)                                     # xlsx, csv, tsv, rds, rdata\r
-readFile <- collection$readArvFile(arvadosFile, fileclass = 'lala')                 # fasta\r
+readFile <- collection$readArvFile(arvadosFile, fileclass = 'fasta')                # fasta\r
 readFile <- collection$readArvFile(arvadosFile, Ncol= 4, Nrow = 32)                 # binary, only numbers\r
 readFile <- collection$readArvFile(arvadosFile, Ncol = 5, Nrow = 150, istable = "factor") # binary with factor or text\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-writeFile"></a>}}\r
-\if{latex}{\out{\hypertarget{method-writeFile}{}}}\r
+\if{html}{\out{<a id="method-Collection-writeFile"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-writeFile}{}}}\r
 \subsection{Method \code{writeFile()}}{\r
 Write file content\r
 \subsection{Usage}{\r
@@ -240,7 +264,8 @@ Write file content
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- Collection$new(arv, collectionUUID)\r
+\preformatted{\dontrun{\r
+collection <- Collection$new(arv, collectionUUID)\r
 writeFile <- collection$writeFile(name = "myoutput.csv", file = file, fileFormat = "csv", istable = NULL, collectionUUID = collectionUUID)             # csv\r
 writeFile <- collection$writeFile(name = "myoutput.tsv", file = file, fileFormat = "tsv", istable = NULL, collectionUUID = collectionUUID)             # tsv\r
 writeFile <- collection$writeFile(name = "myoutput.fasta", file = file, fileFormat = "fasta", istable = NULL, collectionUUID = collectionUUID)         # fasta\r
@@ -249,14 +274,15 @@ writeFile <- collection$writeFile(name = "myoutputtext.txt", file = file, fileFo
 writeFile <- collection$writeFile(name = "myoutputbinary.dat", file = file, fileFormat = "dat", collectionUUID = collectionUUID)                       # binary\r
 writeFile <- collection$writeFile(name = "myoutputxlsx.xlsx", file = file, fileFormat = "xlsx", collectionUUID = collectionUUID)                       # xlsx\r
 }\r
+}\r
 \if{html}{\out{</div>}}\r
 \r
 }\r
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-create"></a>}}\r
-\if{latex}{\out{\hypertarget{method-create}{}}}\r
+\if{html}{\out{<a id="method-Collection-create"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-create}{}}}\r
 \subsection{Method \code{create()}}{\r
 Creates one or more ArvadosFiles and adds them to the collection at specified path.\r
 \subsection{Usage}{\r
@@ -272,7 +298,9 @@ Creates one or more ArvadosFiles and adds them to the collection at specified pa
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection <- arv$collections_create(name = collectionTitle, description = collectionDescription, owner_uuid = collectionOwner, properties = list("ROX37196928443768648" = "ROX37742976443830153"))\r
+\preformatted{\dontrun{\r
+collection <- arv$collections_create(name = collectionTitle, description = collectionDescription, owner_uuid = collectionOwner, properties = list("ROX37196928443768648" = "ROX37742976443830153"))\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -280,8 +308,8 @@ Creates one or more ArvadosFiles and adds them to the collection at specified pa
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-remove"></a>}}\r
-\if{latex}{\out{\hypertarget{method-remove}{}}}\r
+\if{html}{\out{<a id="method-Collection-remove"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-remove}{}}}\r
 \subsection{Method \code{remove()}}{\r
 Remove one or more files from the collection.\r
 \subsection{Usage}{\r
@@ -297,7 +325,9 @@ Remove one or more files from the collection.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection$remove(fileName.format)\r
+\preformatted{\dontrun{\r
+collection$remove(fileName.format)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -305,8 +335,8 @@ Remove one or more files from the collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-move"></a>}}\r
-\if{latex}{\out{\hypertarget{method-move}{}}}\r
+\if{html}{\out{<a id="method-Collection-move"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-move}{}}}\r
 \subsection{Method \code{move()}}{\r
 Moves ArvadosFile or Subcollection to another location in the collection.\r
 \subsection{Usage}{\r
@@ -324,7 +354,9 @@ Moves ArvadosFile or Subcollection to another location in the collection.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection$move("fileName.format", path)\r
+\preformatted{\dontrun{\r
+collection$move("fileName.format", path)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -332,8 +364,8 @@ Moves ArvadosFile or Subcollection to another location in the collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-copy"></a>}}\r
-\if{latex}{\out{\hypertarget{method-copy}{}}}\r
+\if{html}{\out{<a id="method-Collection-copy"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-copy}{}}}\r
 \subsection{Method \code{copy()}}{\r
 Copies ArvadosFile or Subcollection to another location in the collection.\r
 \subsection{Usage}{\r
@@ -351,7 +383,9 @@ Copies ArvadosFile or Subcollection to another location in the collection.
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{copied <- collection$copy("oldName.format", "newName.format")\r
+\preformatted{\dontrun{\r
+copied <- collection$copy("oldName.format", "newName.format")\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -359,8 +393,8 @@ Copies ArvadosFile or Subcollection to another location in the collection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-refresh"></a>}}\r
-\if{latex}{\out{\hypertarget{method-refresh}{}}}\r
+\if{html}{\out{<a id="method-Collection-refresh"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-refresh}{}}}\r
 \subsection{Method \code{refresh()}}{\r
 Refreshes the environment.\r
 \subsection{Usage}{\r
@@ -369,7 +403,9 @@ Refreshes the environment.
 \r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{collection$refresh()\r
+\preformatted{\dontrun{\r
+collection$refresh()\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -377,8 +413,8 @@ Refreshes the environment.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getFileListing"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getFileListing}{}}}\r
+\if{html}{\out{<a id="method-Collection-getFileListing"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-getFileListing}{}}}\r
 \subsection{Method \code{getFileListing()}}{\r
 Returns collections file content as character vector.\r
 \subsection{Usage}{\r
@@ -387,7 +423,9 @@ Returns collections file content as character vector.
 \r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{list <- collection$getFileListing()\r
+\preformatted{\dontrun{\r
+list <- collection$getFileListing()\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -395,8 +433,8 @@ Returns collections file content as character vector.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-get}{}}}\r
+\if{html}{\out{<a id="method-Collection-get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-get}{}}}\r
 \subsection{Method \code{get()}}{\r
 If relativePath is valid, returns ArvadosFile or Subcollection specified by relativePath, else returns NULL.\r
 \subsection{Usage}{\r
@@ -412,7 +450,9 @@ If relativePath is valid, returns ArvadosFile or Subcollection specified by rela
 }\r
 \subsection{Examples}{\r
 \if{html}{\out{<div class="r example copy">}}\r
-\preformatted{arvadosFile <- collection$get(fileName)\r
+\preformatted{\dontrun{\r
+arvadosFile <- collection$get(fileName)\r
+}\r
 }\r
 \if{html}{\out{</div>}}\r
 \r
@@ -420,8 +460,8 @@ If relativePath is valid, returns ArvadosFile or Subcollection specified by rela
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getRESTService"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getRESTService}{}}}\r
+\if{html}{\out{<a id="method-Collection-getRESTService"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-getRESTService}{}}}\r
 \subsection{Method \code{getRESTService()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Collection$getRESTService()}\if{html}{\out{</div>}}\r
@@ -429,8 +469,8 @@ If relativePath is valid, returns ArvadosFile or Subcollection specified by rela
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setRESTService"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setRESTService}{}}}\r
+\if{html}{\out{<a id="method-Collection-setRESTService"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Collection-setRESTService}{}}}\r
 \subsection{Method \code{setRESTService()}}{\r
 \subsection{Usage}{\r
 \if{html}{\out{<div class="r">}}\preformatted{Collection$setRESTService(newRESTService)}\if{html}{\out{</div>}}\r
index 1c9ec96e119746b059895701f719e1a8836d00b4..9faf0c279e6544e7e73870409d24366dcb7b1e24 100644 (file)
@@ -10,27 +10,27 @@ It is essentially a composite of arvadosFiles and other subcollections.
 \section{Methods}{\r
 \subsection{Public methods}{\r
 \itemize{\r
-\item \href{#method-new}{\code{Subcollection$new()}}\r
-\item \href{#method-getName}{\code{Subcollection$getName()}}\r
-\item \href{#method-getRelativePath}{\code{Subcollection$getRelativePath()}}\r
-\item \href{#method-add}{\code{Subcollection$add()}}\r
-\item \href{#method-remove}{\code{Subcollection$remove()}}\r
-\item \href{#method-getFileListing}{\code{Subcollection$getFileListing()}}\r
-\item \href{#method-getSizeInBytes}{\code{Subcollection$getSizeInBytes()}}\r
-\item \href{#method-move}{\code{Subcollection$move()}}\r
-\item \href{#method-copy}{\code{Subcollection$copy()}}\r
-\item \href{#method-duplicate}{\code{Subcollection$duplicate()}}\r
-\item \href{#method-get}{\code{Subcollection$get()}}\r
-\item \href{#method-getFirst}{\code{Subcollection$getFirst()}}\r
-\item \href{#method-setCollection}{\code{Subcollection$setCollection()}}\r
-\item \href{#method-getCollection}{\code{Subcollection$getCollection()}}\r
-\item \href{#method-getParent}{\code{Subcollection$getParent()}}\r
-\item \href{#method-setParent}{\code{Subcollection$setParent()}}\r
-}\r
-}\r
-\if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-new"></a>}}\r
-\if{latex}{\out{\hypertarget{method-new}{}}}\r
+\item \href{#method-Subcollection-new}{\code{Subcollection$new()}}\r
+\item \href{#method-Subcollection-getName}{\code{Subcollection$getName()}}\r
+\item \href{#method-Subcollection-getRelativePath}{\code{Subcollection$getRelativePath()}}\r
+\item \href{#method-Subcollection-add}{\code{Subcollection$add()}}\r
+\item \href{#method-Subcollection-remove}{\code{Subcollection$remove()}}\r
+\item \href{#method-Subcollection-getFileListing}{\code{Subcollection$getFileListing()}}\r
+\item \href{#method-Subcollection-getSizeInBytes}{\code{Subcollection$getSizeInBytes()}}\r
+\item \href{#method-Subcollection-move}{\code{Subcollection$move()}}\r
+\item \href{#method-Subcollection-copy}{\code{Subcollection$copy()}}\r
+\item \href{#method-Subcollection-duplicate}{\code{Subcollection$duplicate()}}\r
+\item \href{#method-Subcollection-get}{\code{Subcollection$get()}}\r
+\item \href{#method-Subcollection-getFirst}{\code{Subcollection$getFirst()}}\r
+\item \href{#method-Subcollection-setCollection}{\code{Subcollection$setCollection()}}\r
+\item \href{#method-Subcollection-getCollection}{\code{Subcollection$getCollection()}}\r
+\item \href{#method-Subcollection-getParent}{\code{Subcollection$getParent()}}\r
+\item \href{#method-Subcollection-setParent}{\code{Subcollection$setParent()}}\r
+}\r
+}\r
+\if{html}{\out{<hr>}}\r
+\if{html}{\out{<a id="method-Subcollection-new"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-new}{}}}\r
 \subsection{Method \code{new()}}{\r
 Initialize new enviroment.\r
 \subsection{Usage}{\r
@@ -49,8 +49,8 @@ A new `Subcollection` object.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getName"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getName}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getName"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getName}{}}}\r
 \subsection{Method \code{getName()}}{\r
 Returns name of the file.\r
 \subsection{Usage}{\r
@@ -59,8 +59,8 @@ Returns name of the file.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getRelativePath"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getRelativePath}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getRelativePath"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getRelativePath}{}}}\r
 \subsection{Method \code{getRelativePath()}}{\r
 Returns Subcollection's path relative to the root.\r
 \subsection{Usage}{\r
@@ -69,8 +69,8 @@ Returns Subcollection's path relative to the root.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-add"></a>}}\r
-\if{latex}{\out{\hypertarget{method-add}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-add"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-add}{}}}\r
 \subsection{Method \code{add()}}{\r
 Adds ArvadosFile or Subcollection specified by content to the Subcollection.\r
 \subsection{Usage}{\r
@@ -86,8 +86,8 @@ Adds ArvadosFile or Subcollection specified by content to the Subcollection.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-remove"></a>}}\r
-\if{latex}{\out{\hypertarget{method-remove}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-remove"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-remove}{}}}\r
 \subsection{Method \code{remove()}}{\r
 Removes ArvadosFile or Subcollection specified by name from the Subcollection.\r
 \subsection{Usage}{\r
@@ -103,8 +103,8 @@ Removes ArvadosFile or Subcollection specified by name from the Subcollection.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getFileListing"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getFileListing}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getFileListing"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getFileListing}{}}}\r
 \subsection{Method \code{getFileListing()}}{\r
 Returns Subcollections file content as character vector.\r
 \subsection{Usage}{\r
@@ -120,8 +120,8 @@ Returns Subcollections file content as character vector.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getSizeInBytes"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getSizeInBytes}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getSizeInBytes"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getSizeInBytes}{}}}\r
 \subsection{Method \code{getSizeInBytes()}}{\r
 Returns subcollections content size in bytes.\r
 \subsection{Usage}{\r
@@ -130,8 +130,8 @@ Returns subcollections content size in bytes.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-move"></a>}}\r
-\if{latex}{\out{\hypertarget{method-move}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-move"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-move}{}}}\r
 \subsection{Method \code{move()}}{\r
 Moves Subcollection to a new location inside collection.\r
 \subsection{Usage}{\r
@@ -147,8 +147,8 @@ Moves Subcollection to a new location inside collection.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-copy"></a>}}\r
-\if{latex}{\out{\hypertarget{method-copy}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-copy"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-copy}{}}}\r
 \subsection{Method \code{copy()}}{\r
 Copies Subcollection to a new location inside collection.\r
 \subsection{Usage}{\r
@@ -164,8 +164,8 @@ Copies Subcollection to a new location inside collection.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-duplicate"></a>}}\r
-\if{latex}{\out{\hypertarget{method-duplicate}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-duplicate"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-duplicate}{}}}\r
 \subsection{Method \code{duplicate()}}{\r
 Duplicate Subcollection and gives it a new name.\r
 \subsection{Usage}{\r
@@ -181,8 +181,8 @@ Duplicate Subcollection and gives it a new name.
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-get"></a>}}\r
-\if{latex}{\out{\hypertarget{method-get}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-get"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-get}{}}}\r
 \subsection{Method \code{get()}}{\r
 If name is valid, returns ArvadosFile or Subcollection specified by relativePath, else returns NULL.\r
 \subsection{Usage}{\r
@@ -198,8 +198,8 @@ If name is valid, returns ArvadosFile or Subcollection specified by relativePath
 }\r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getFirst"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getFirst}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getFirst"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getFirst}{}}}\r
 \subsection{Method \code{getFirst()}}{\r
 Returns files in Subcollection.\r
 \subsection{Usage}{\r
@@ -208,8 +208,8 @@ Returns files in Subcollection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setCollection"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setCollection}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-setCollection"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-setCollection}{}}}\r
 \subsection{Method \code{setCollection()}}{\r
 Sets Collection by its UUID.\r
 \subsection{Usage}{\r
@@ -218,8 +218,8 @@ Sets Collection by its UUID.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getCollection"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getCollection}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getCollection"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getCollection}{}}}\r
 \subsection{Method \code{getCollection()}}{\r
 Returns Collection of Subcollection.\r
 \subsection{Usage}{\r
@@ -228,8 +228,8 @@ Returns Collection of Subcollection.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-getParent"></a>}}\r
-\if{latex}{\out{\hypertarget{method-getParent}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-getParent"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-getParent}{}}}\r
 \subsection{Method \code{getParent()}}{\r
 Returns Collection UUID.\r
 \subsection{Usage}{\r
@@ -238,8 +238,8 @@ Returns Collection UUID.
 \r
 }\r
 \if{html}{\out{<hr>}}\r
-\if{html}{\out{<a id="method-setParent"></a>}}\r
-\if{latex}{\out{\hypertarget{method-setParent}{}}}\r
+\if{html}{\out{<a id="method-Subcollection-setParent"></a>}}\r
+\if{latex}{\out{\hypertarget{method-Subcollection-setParent}{}}}\r
 \subsection{Method \code{setParent()}}{\r
 Sets new Collection.\r
 \subsection{Usage}{\r
index 156dde1080c5040373d55633ff8a689a8867484a..1384c1f8c1aa726920cb19b4ae472df380a46ded 100644 (file)
@@ -2,6 +2,8 @@
 #
 # SPDX-License-Identifier: Apache-2.0
 
+devtools::check()
+
 results <- devtools::test()
 any_error <- any(as.data.frame(results)$error)
 if (any_error) {