Package 'AnVILWorkflow'

Title: Run workflows implemented in Terra/AnVIL workspace
Description: The AnVIL is a cloud computing resource developed in part by the National Human Genome Research Institute. The main cloud-based genomics platform deported by the AnVIL project is Terra. The AnVILWorkflow package allows remote access to Terra implemented workflows, enabling end-user to utilize Terra/ AnVIL provided resources - such as data, workflows, and flexible/scalble computing resources - through the conventional R functions.
Authors: Sehyun Oh [aut, cre] , Kai Gravel-Pucillo [aut]
Maintainer: Sehyun Oh <[email protected]>
License: Artistic-2.0
Version: 1.5.0
Built: 2024-07-15 04:45:08 UTC
Source: https://github.com/bioc/AnVILWorkflow

Help Index


Search keywords in a given metadata table

Description

Search keywords in a given metadata table

Usage

.search_keyword(keyword, metadata)

Arguments

keyword

A character(1). Regular expression is accepted. For example, you can search multiple keywords separated by the vertical bar ("|").

metadata

A data frame. Metadata table of workspace, workflow, or AnVIL data.

Value

A data frame. A subset of input metadata table with the rows containing the keyword.


Search AnVIL workspaces using keywords

Description

Search AnVIL workspaces using keywords

Usage

AnVILBrowse(
  keyword,
  searchFrom = "all",
  returnFrom = NULL,
  metaTables = "default",
  minAge = 0,
  maxAge = 130,
  minCount = 0,
  workspaceTable = NULL,
  workflowTable = NULL,
  dataTable = NULL
)

Arguments

keyword

A character(1). Regular expression is accepted. For example, you can search multiple keywords separated by the vertical bar ("|").

searchFrom

Under the default (all), all the workspaces containing keywords in their workspace/workflow/data will be returned. The other available options are workspace, workflow, and data.

returnFrom

Under the default (NULL), the same data type as for searchFrom will be used, while searchFrom = "all" returns workspaces.

metaTables

Under the default (default), all the publicly accessible AnVIL workspaces will be subjected for search. If you want to search in all the workspaces you have access to, set this argument as custom, and provide the inputs for workspaceTable, workflowTable, and dataTable arguments.

minAge

A number. Any data with a maximum participant age lower than this parameter will be excluded from the output. Under the default (0), no data entries will be removed due to the maximum participant age. Data entries with no maximum participant age listed will not be removed by this argument.

maxAge

A number. Any data with a minimum participant age higher than this parameter will be excluded from the output. Under the default (130), no data entries will be removed due to the minimum participant age. Data entries with no minimum participant age listed will not be removed by this argument.

minCount

A number. Any data with a participant count fewer than this parameter will be excluded from the output. Under the default (0), no data entries will be removed due to participant count. Data entries with no participant count listed will not be removed by this argument.

workspaceTable

A data frame. This argument is counted only when metaTables = "custom". Provide the output from the getWorkspaces function, to search in all the workspaces you have access to.

workflowTable

A data frame. This argument is counted only when metaTables = "custom". Provide the output from the getWorkflows function, to search in all the workflows you have access to.

dataTable

A data frame. This argument is counted only when metaTables = "custom". Provide the output from the getData function, to search in all the AnVIL data you have access to.

Value

A data frame of AnVIL resources containing keywords. Depending on the returnFrom argument, it can be workspaces, workflows, or data. Under the default returnFrom = NULL, it returns the same data type as specified in searchFrom or workspace for searchFrom = "all".

Examples

AnVILBrowse("malaria")
AnVILBrowse("resistance")
AnVILBrowse("resistance", searchFrom = "workflow")

Find the available analysis

Description

This function shows the available analyses and the brief descriptions of them.

Usage

availableAnalysis(curatedOnly = TRUE, keyword = NULL)

Arguments

curatedOnly

Default is TRUE, returning only workspaces that offer simplified input configuration by this package. If it is set to FALSE, all the workspaces

keyword

Default is NULL. When this argument is provided as a character(1), it will return only the workspaces containing the keyword and the user has an access to.

Value

A data frame. The analysis columns shows the name of the available analyses, which is the required input (analysis argument) for the functions implemented in AnVILWorkflow package.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {availableAnalysis()}

Clone template workspace

Description

This function makes your own copy of the existing workspace, selected through templateName or analysis. Your copied/cloned workspace name will be workspaceName and any computing cost will be charaged to the billing linked to your billingProjectName. You should provide at least one argument templateName or analysis.

Usage

cloneWorkspace(
  workspaceName,
  templateName = "",
  analysis = NULL,
  accountEmail = gcloud_account(),
  billingProjectName = gcloud_project()
)

Arguments

workspaceName

Name of the workspace you are creating

templateName

Character(1). Name of the template workspace name you want to clone. You can provide name or namespace/name.

analysis

Character(1). Name of the analysis you want to clone it's workspace. The list of available analyses can be found using availableAnalysis.

accountEmail

Character(1). Email linked to Terra account

billingProjectName

Character(1). Name of the billing project

Value

Name of the cloned workspace

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
cloneWorkspace(workspaceName = "salmon",
               templateName = "Bioconductor-Workflow-DESeq2")
}

Check the current input arguments

Description

Check the current input arguments

Usage

currentInput(workspaceName, config, requiredInputOnly = TRUE, analysis = NULL)

Arguments

workspaceName

Name of the workspace

config

Workflow configuration. Output from the getWorkflowConfig function.

requiredInputOnly

Under the default (TRUE), only the required inputs are returned.

analysis

If specified, only the minimally required inputs for a given workflow will be returned.

Value

A data.frame for the inputs defined in a workflow configuration.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
workspaceName <- "Bioconductor-Workflow-DESeq2"
config <- getWorkflowConfig(workspaceName)
currentInput(workspaceName = workspaceName, config = config)
}

Find the root entity name

Description

Find the root entity name

Usage

findInputName(workspaceName, rootEntity = "", nameOnly = TRUE)

Arguments

workspaceName

Name of the workspace

rootEntity

A character. Type of root entity for Terra's data model. For example, participant, participant_set, sample, etc.

nameOnly

Under the default (TRUE), only the names of a given root entity type will be returned.

Value

A character vector of input names under the given root entity.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
.findInputName(
workspaceName = "Bioconductor-Workflow-DESeq2",
rootEntity = "participant_set")
}

Get all the data tables

Description

Get all the data tables

Usage

getAllDataTables(workspaces = NULL)

Arguments

workspaces

A character vector. Under the default (NULL), all the data tables from all the workspaces user has access to will be returned. If you specify this, the data tables only from the specified workspace(s) will be returned.

Value

A Data Frame of all the data tables

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
allDataTables <- getAllDataTables()
}

Collect workflows from all workspaces a user has access to

Description

Collect workflows from all workspaces a user has access to

Usage

getAllWorkflows(workspaces = NULL)

Arguments

workspaces

Under the default (NULL), workflows from all the workspaces a user has access to will be collected.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
allWorkflows <- getAllWorkflows()
}

Get AnVIL workspaces

Description

Different from avworkspaceshttps://drive.google.com/drive/u/0/folders/1NNAzcNRBx4nPfcdqjKPeUlVE7lhxXMeL

Usage

getAllWorkspaces()

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
allWorkspaces <- getAllWorkspaces()
}

Print out Dashboard contents

Description

This function prints out the Dashboard contents of the target workspace. You can provide either workspaceName or analysis. If both values are provided, this function will use workspaceName argument over analysis argument.

Usage

getDashboard(workspaceName = "", analysis = NULL)

Arguments

workspaceName

The name of the workspace you want to get the overview provided through the Dashboard.

analysis

The name of the analysis use want to check the Dashboard of. The list of available analyses can be found with availableAnalysis().

Value

The last modified date as a message, followed by the Dashboard contents from the target workspace.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
getDashboard(analysis = "salmon")
getDashboard(workspaceName = "Bioconductor-Workflow-DESeq2")
}

Creates a metadata table of data from all workspaces provided

Description

This function usually takes a long time to run due to the large volume of AnVIL data.

Usage

getData(allWorkspaces)

Arguments

allWorkspaces

A data frame of all the workspaces you have access to. An output from the getWorkspaces function.


Download output files from Terra

Description

Download output files from Terra

Usage

getOutput(
  workspaceName,
  submissionId = NULL,
  keyword = NULL,
  dest_dir = ".",
  dry = TRUE
)

Arguments

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 NULL, all the outputs from the workflow, including log files, will be returned.

dest_dir

Path to the directory where downloaded files are saved

dry

To download the output data, set dry = FALSE.

Value

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.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
getOutput(workspaceName = "Bioconductor-Workflow-DESeq2")
}

Check the workflow configuration

Description

Check the workflow configuration

Usage

getWorkflowConfig(workspaceName, workflowName = NULL)

Arguments

workspaceName

Name of the workspace

workflowName

Name of the workflow to run. If a single workflow is available under the specified workspace, this function will check the input of that workflow under the default (NULL). If there are multiple workflows available, you should specify the workflow.

Value

A data.frame for the inputs defined in a workflow configuration.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
config <- getWorkflowConfig(workspaceName = "Bioconductor-Workflow-DESeq2")
config
}

Creates a metadata table of workflows from all workspaces provided

Description

Creates a metadata table of workflows from all workspaces provided

Usage

getWorkflows(allWorkspaces)

Arguments

allWorkspaces

A data frame of all the workspaces you have access to. An output from the getWorkspaces function.


Creates a metadata table of all workspaces

Description

Creates a metadata table of all workspaces

Usage

getWorkspaces()

Check the status of submitted jobs

Description

Check the status of submitted jobs

Usage

monitorWorkflow(workspaceName)

Arguments

workspaceName

Character(1). Name of the workspace

Value

A tibble summarizing submitted workflow jobs. Contains information such as submission Id, submission date, and submission status.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
monitorWorkflow(workspaceName = "Bioconductor-Workflow-DESeq2")
}

Launch Terra workflow

Description

Launch Terra workflow

Usage

runWorkflow(
  workspaceName,
  config,
  workflowName = NULL,
  useCallCache = TRUE,
  inputName = NULL
)

Arguments

workspaceName

Name of the workspace that contains the workflow(s) you want to launch.

config

Workflow configuration. Output from the getWorkflowConfig function.

workflowName

Name of the workflow to run. If this input is not provided but there is only a single workflow available, the function will automatically use the only workflow.

useCallCache

A logical. Under the default condition (TRUE), call cache will be used.

inputName

Name of you input entity. If the workflow is using Terra's data model, this is required. The available entities can be found using the findInputName function.

Value

This function will print out whether the call for workflow launching was successful or not.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
if ("salmon" %in% avworkspaces()$name)
runWorkflow(workspaceName = "salmon")
}

Setup Google Cloud Account and Project

Description

Setup Google Cloud Account and Project

Usage

setCloudEnv(
  accountEmail = gcloud_account(),
  billingProjectName = gcloud_project(),
  message = TRUE
)

Arguments

accountEmail

Character(1). Email linked to your Terra account.

billingProjectName

Character(1). Name of the billing project, which is the gcloud account.

message

Under the default (TRUE), this function will print out Google Cloud Account and Billing Project set in the working environment

Value

Terra/AnVIL working environment - Google Cloud billing account and the billing project name - will be printed out.

Examples

library(AnVIL)
if (gcloud_exists()) {
setCloudEnv()
}

Abort submitted job

Description

Abort submitted job

Usage

stopWorkflow(workspaceName, submissionId = NULL, dry = TRUE)

Arguments

workspaceName

Name of the workspace

submissionId

A character. Submission ID you want to abort. You can find the submission id using monitorWorkflow function. If it is not defined, the most recent submission will be aborted.

dry

Logical(1) when TRUE (default), report the consequences but do not perform the action requested. When FALSE, perform the action.

Value

This function will print out whether the call for workflow abortion was successful or not. In case it was unsuccesful, the diagnosis will be suggested as a part of the message.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
if ("salmon" %in% avworkspaces()$name)
stopWorkflow(workspaceName = "salmon")
}

Update the input

Description

Update the input

Usage

updateInput(
  workspaceName,
  inputs,
  config,
  workflowName = NULL,
  dry = TRUE,
  verbose = TRUE
)

Arguments

workspaceName

Name of the workspace

inputs

A tibble containing new input values. Provide the modified version of the current input table, which is the output from currentInput function. IMPORTANT: all the attributes should be provided as a character vector format and any string type attributes (inputType = String) should have escaped quotation mark (\").

config

Workflow configuration. Output from the getWorkflowConfig function.

workflowName

Name of the workflow to run. If a single workflow is available under the specified workspace, this function will check the input of that workflow under the default (NULL). If there are multiple workflows available, you should specify the workflow.

dry

Logical(1). When TRUE (default), report the updated configuration but do not perform the action requested in Terra. When FALSE, inputs in Terra/AnVIL will updated.

verbose

Logical(1). When TRUE (default), this function will print the updated input.

Value

With verbose=TRUE, a list of updated inputs will be printed. A successful execution of the function will update the input configuration of the target workflow in Terra/AnVIL.

Examples

library(AnVIL)
if (gcloud_exists() && nzchar(avworkspace_name())) {
if ("salmon" %in% avworkspaces()$name) {
config <- getWorkflowConfig(workspaceName = "salmon")
inputs <- currentInput("salmon", config)
## Modify the contents of 'inputs' table for your analysis
updateInput("salmon", inputs, config) 
}}