Given a SRA study id get the url to browse the study using the SRA website.
browse_study(project, browse = interactive())
A character vector with at least one SRA study id.
Whether to open the resulting URL in the browser.
Returns invisibly the URL for exploring the study in the SRA website.
## 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"