Given a SRA study id get the url to browse the study using the SRA website.

browse_study(project, browse = interactive())

Arguments

project

A character vector with at least one SRA study id.

browse

Whether to open the resulting URL in the browser.

Value

Returns invisibly the URL for exploring the study in the SRA website.

See also

Author

Leonardo Collado-Torres

Examples

## Find the Geuvadis consortium project
id <- abstract_search("Geuvadis consortium", id_only = TRUE)
id
#> [1] "ERP001942"

## Explore the Geuvadis consortium project
url <- browse_study(id)

## See the actual URL
url
#> [1] "https://trace.ncbi.nlm.nih.gov/Traces/sra/?study=ERP001942"