getOutput | R Documentation |
Download output files from Terra
getOutput(
workspaceName,
submissionId = NULL,
keyword = NULL,
dest_dir = ".",
dry = TRUE
)
workspaceName |
Name of the workspace |
submissionId |
Submission Id. If it's not provided, the most recent submission id with the 'succeeded' status will be used. |
keyword |
A character string containing a regular expression to be
matched in the output file name. Under the default |
dest_dir |
Path to the directory where downloaded files are saved |
dry |
To download the output data, set |
If "dry=TRUE"
, this function will return a data frame with
two columns named 'filename' and 'name'.
filename
: Name of the actual output files.
name
: Name of the output defined in your workflow script.
This is how configuration refers the outputs.
library(AnVILBase)
if (
gcloud_exists() && identical(avplatform_namespace(), "AnVILGCP") &&
nzchar(avworkspace_name())
) {
getOutput(workspaceName = "Bioconductor-Workflow-DESeq2")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.