iput {rirods} | R Documentation |
Save Files and Objects in iRODS
Description
Store an object or file into iRODS. iput()
should be used to transfer
a file from the local storage to iRODS; isaveRDS()
saves an R object from
the current environment in iRODS in RDS format (see saveRDS()
).
Usage
iput(
local_path,
logical_path,
offset = 0,
count = 0,
truncate = TRUE,
verbose = FALSE,
overwrite = FALSE,
ticket = NULL
)
isaveRDS(
x,
logical_path,
offset = 0,
count = 0,
truncate = TRUE,
verbose = FALSE,
overwrite = FALSE,
ticket = NULL
)
Arguments
local_path |
Local path of file to be sent to iRODS. |
logical_path |
Destination path in iRODS. |
offset |
Offset in bytes into the data object. Deprecated. |
count |
Maximum number of bytes to write. Deprecated. |
truncate |
Whether to truncate the object when opening it. Deprecated. |
verbose |
Whether to print information about the HTTP request and
response. Defaults to |
overwrite |
Whether the file in iRODS should be overwritten if it
exists. Defaults to |
ticket |
A valid iRODS ticket string. Defaults to |
x |
R object to save in iRODS. |
Value
(Invisibly) the HTTP response.
See Also
iget()
for obtaining files,
ireadRDS()
for obtaining R objects from iRODS,
readRDS()
for an R equivalent.
Examples
is_irods_demo_running()
# connect project to server
create_irods("http://localhost:9001/irods-http-api/0.2.0")
# authenticate
iauth("rods", "rods")
# save the iris dataset as csv and send the file to iRODS
write.csv(iris, "iris.csv")
iput("iris.csv", "iris.csv")
# save with a different name
iput("iris.csv", "iris_in_irods.csv")
ils()
# send an R object to iRODS in RDS format
isaveRDS(iris, "iris_in_rds.rds")
# delete objects in iRODS
irm("iris_in_irods.csv", force = TRUE)
irm("iris_in_rds.rds", force = TRUE)
irm("iris.csv", force = TRUE)