3 This SDK focuses on providing support for accessing Arvados projects, collections, and the files within collections.
5 The API is not final and feedback is solicited from users on ways in which it could be improved.
9 1. Install the dependencies
11 > install.packages(c('R6', 'httr', 'stringr', 'jsonlite', 'curl', 'XML'))
13 If needed, you may have to install the supporting packages first. On Linux, these are:
15 libxml2-dev, libssl-dev, libcurl4-gnutls-dev or libcurl4-openssl-dev
17 2. Install the ArvardosR package
19 > install.packages('/path/to/ArvadosR_0.0.2.tar.gz', repos = NULL, type="source", dependencies = TRUE)
25 #Load Library and Initialize API:
28 arv <- Arvados$new() # uses environment variables ARVADOS_API_TOKEN and ARVADOS_API_HOST
29 arv <- Arvados$new("your Arvados token", "example.arvadosapi.com")
31 --------------------------------------------------------------------------------------------------------------------------------
35 arv$getCollection("uuid")
37 --------------------------------------------------------------------------------------------------------------------------------
40 collectionList <- arv$listCollections(list(list("name", "like", "Test%"))) # offset of 0 and default limit of 100
41 collectionList <- arv$listCollections(list(list("name", "like", "Test%")), limit = 10, offset = 2)
43 collectionList$items_available # count of total number of items (may be more than returned due to paging)
44 collectionList$items # items which match the filter criteria
46 #Next example will list all collections even when the number of items is greater than maximum API limit
48 collectionList <- arv$listAllCollections(list(list("name", "like", "Test%")))
50 --------------------------------------------------------------------------------------------------------------------------------
54 deletedCollection <- arv$deleteCollection("uuid")
56 --------------------------------------------------------------------------------------------------------------------------------
58 #Update a collection's metadata:
60 updatedCollection <- arv$updateCollection("uuid", list(name = "New name", description = "New description"))
62 --------------------------------------------------------------------------------------------------------------------------------
66 createdCollection <- arv$createCollection(list(name = "Example", description = "This is a test collection"))
69 --------------------------------------------------------------------------------------------------------------------------------
70 COLLECTION CONTENT MANIPULATION
71 --------------------------------------------------------------------------------------------------------------------------------
73 #Create collection object:
75 collection <- Collection$new(arv, "uuid")
77 --------------------------------------------------------------------------------------------------------------------------------
81 collection$getFileListing()
83 --------------------------------------------------------------------------------------------------------------------------------
85 #This will return ArvadosFile or Subcollection from internal tree-like structure.
87 arvadosFile <- collection$get("location/to/my/file.cpp")
91 arvadosSubcollection <- collection$get("location/to/my/directory/")
93 --------------------------------------------------------------------------------------------------------------------------------
97 arvadosFile <- collection$get("myinput.txt")
98 arvConnection <- arvadosFile$connection("r")
99 mytable <- read.table(arvConnection)
103 arvadosFile <- collection$create("myoutput.txt")
104 arvConnection <- arvadosFile$connection("w")
105 write.table(mytable, arvConnection)
108 --------------------------------------------------------------------------------------------------------------------------------
110 #Read whole file or just a portion of it.
112 fileContent <- arvadosFile$read()
113 fileContent <- arvadosFile$read("text")
114 fileContent <- arvadosFile$read("raw", offset = 1024, length = 512)
116 --------------------------------------------------------------------------------------------------------------------------------
118 #Get ArvadosFile or Subcollection size
120 size <- arvadosFile$getSizeInBytes()
121 size <- arvadosSubcollection$getSizeInBytes()
123 --------------------------------------------------------------------------------------------------------------------------------
125 #Create new file in a collection
127 collection$create(fileNames, optionalRelativePath)
131 mainFile <- collection$create("main.cpp", "cpp/src/")
132 fileList <- collection$create(c("main.cpp", lib.dll), "cpp/src/")
134 --------------------------------------------------------------------------------------------------------------------------------
136 #Add existing ArvadosFile or Subcollection to a collection
138 folder <- Subcollection$new("src")
139 file <- ArvadosFile$new("main.cpp")
142 collection$add(folder, "cpp")
144 #This examples will add file "main.cpp" in "./cpp/src/" folder if folder exists.
145 #If subcollection contains more files or folders they will be added recursively.
147 --------------------------------------------------------------------------------------------------------------------------------
149 #Write to existing file (Override current content of the file)
151 arvadosFile <- collection$get("location/to/my/file.cpp")
153 arvadosFile$write("This is new file content")
155 --------------------------------------------------------------------------------------------------------------------------------
157 #Delete file from a collection
159 collection$remove("location/to/my/file.cpp")
161 #You can remove both Subcollection and ArvadosFile
162 #If subcollection contains more files or folders they will be removed recursively.
164 #You can also remove multiple files
166 collection$remove(c("path/to/my/file.cpp", "path/to/other/file.cpp"))
168 #Delete file or folder from a Subcollection
170 subcollection <- collection$get("mySubcollection/")
171 subcollection$remove("fileInsideSubcollection.exe")
172 subcollection$remove("folderInsideSubcollection/")
174 --------------------------------------------------------------------------------------------------------------------------------
176 #Move file or folder inside collection
178 #Directley from collection
180 collection$move("folder/file.cpp", "file.cpp")
184 file <- collection$get("location/to/my/file.cpp")
185 file$move("newDestination/file.cpp")
187 #Or from subcollection
189 subcollection <- collection$get("location/to/folder")
190 subcollection$move("newDestination/folder")
192 #Make sure to include new file name in destination
193 #In second example file$move("newDestination/") will not work
195 --------------------------------------------------------------------------------------------------------------------------------
196 WORKING WITH ARVADOS PROJECTS
197 --------------------------------------------------------------------------------------------------------------------------------
201 arv$getProject("uuid")
203 --------------------------------------------------------------------------------------------------------------------------------
207 projects <- arv$listProjects(list(list("owner_uuid", "=", "aaaaa-j7d0g-ccccccccccccccc"))) # list subprojects of a project
208 arv$listProjects(list(list("name","like","Example%"))) # list projects which have names beginning with Example
210 #Next example will list all projects even when the number of items is greater than maximum API limit
212 collectionList <- arv$listAllProjects(list(list("name","like","Example%")))
214 --------------------------------------------------------------------------------------------------------------------------------
218 deletedProject <- arv$deleteProject("uuid")
220 --------------------------------------------------------------------------------------------------------------------------------
224 updatedProject <- arv$updateProject("uuid", list(name = "new_name", description = "new description"))
226 --------------------------------------------------------------------------------------------------------------------------------
230 createdProject <- arv$createProject(list(name = "project_name", description = "project description"))
233 --------------------------------------------------------------------------------------------------------------------------------
234 BUILDING THE ARVADOS SDK TARBALL
235 --------------------------------------------------------------------------------------------------------------------------------
241 This will create a tarball of the Arvados package in the current directory.