The Seven Bridges Platform is a cloud-based environment for conducting bioinformatics analysis. It is a central hub for teams to store, analyze, and jointly interpret their bioinformatic data. The Platform co-locates analysis pipelines alongside the largest genomic datasets to optimize processing, allocating storage, and compute resources on demand.
The Cancer Genomics Cloud (CGC), powered by Seven Bridges, is also a cloud-based computation environment. It was built as one of three pilot systems funded by the National Cancer Institute to explore the paradigm of colocalizing massive genomics datasets, like The Cancer Genomics Atlas (TCGA), alongside secure and scalable computational resources to analyze them. The CGC makes more than a petabyte of multi-dimensional data available immediately to authorized researchers. You can add your data to analyze alongside TCGA using predefined analytical workflows or your own tools.
Cavatica, powered by Seven Bridges, is a data analysis and sharing platform designed to accelerate discovery in a scalable, cloud-based compute environment where data, results, and workflows are shared among the world’s research community. Cavatica is built in collaboration with the Children Hospital of Philadelphia and it is focused on pediatric data.
First, check the version of R you are using with the following command (in R):
R.version.string
If you are not running the latest release version of R, install or upgrade with these instructions. If you are using RStudio, restart RStudio after installing R. RStudio will detect the new installation.
Bioconductor - Release Branch
This is recommended for most users as it is the most stable version.
You can install the package from the release branch on Bioconductor using BiocManager:
If you are developing tools under the devel branch or use the development version of R and Bioconductor, install the package from the Bioconductor devel branch. You probably also want to install R-devel first by following the directions in “Using the ‘Devel’ Version of Bioconductor”.
To install the sevenbridges package from the devel branch, use
install.packages("BiocManager")
BiocManager::install("sevenbridges", version = "devel")
Latest Development Version
To try the latest features, please install the package directly from GitHub. We push to the Bioconductor branch (release and devel) regularly.
Installing the sevenbridges package from GitHub requires you have the devtools package. If you do not have devtools, install it from CRAN first.
install.packages("devtools")
You may get an error for missing system dependecies such as curl and ssl. You probably need to do the following first in order to install devtools and to build vignettes since you need pandoc under Ubuntu.
If you have trouble with pandoc and do not want to install it, set build_vignettes = FALSE to avoid building the vignettes.
Features
The sevenbridges package includes the following features:
Flexible Authentication Methods
Multiple authentication methods support.
Direct authentication:
# Direct authentication
a <- Auth(token = "your_token", platform = "cgc")
# or use base url
a <- Auth(token = "your_token", url = "https://cgc-api.sbgenomics.com/v2")
Authentication via a user configuration file, collect and manage your credentials for multiple accounts across various Seven Bridges environments:
a <- Auth(from = "file", profile_name = "aws-us-username")
Please check vignette("api", package = "sevenbridges") for technical details about all available authentication methods.
Complete API R Client
A complete API R client with a user-friendly, object-oriented API with printing and support operations for API requests relating to users, billing, projects, files, apps, and tasks. Short examples are also included, as shown below:
# Get a project by pattern-matching its name
p <- a$project("demo")
# Get a project by its id
p <- a$project(id = "username/demo")
# Delete files from a project
p$file("sample.tz")$delete()
# Upload fies from a folder to a project and include file metadata
p$upload("folder_path", metadata = list(platform = "Illumina"))
Task Monitoring
A task monitoring hook which allows you to add a hook function to specific task statuses as you monitor a task. For example, you can opt to receive an email when the task is completed or specify to download all files produced by the task, as shown below:
A Common Workflow Language (CWL) Tool interface to directly describe your tool in R, export it to JSON or YAML, or add it to your online project. This package defines a complete set of CWL object, so you can describe tools as follows:
library("sevenbridges")
# convert a SBG CWL JSON file
t1 <- system.file("extdata/app", "tool_star.json", package = "sevenbridges")
# convert json file into a Tool object
t1 <- convert_app(t1)
# shows all input matrix
t1$input_matrix()
Tutorials
We maintain 3 different sets of documentation: the sevenbridges-r GitHub repository (latest and most up-to-date), Bioconductor release channel, and Bioconductor development channel. Below, only the GitHub version is linked to provide the latest documentation. For the other versions, please visit Bioconductor Release version or Bioconductor Development version. The tutorials below are re-generated regularly as we update the package on GitHub.
In the tutorial for IDE container above, we built a Docker container locally from which we can launch RStudio and Shiny. To launch RStudio and Shiny Server with the Seven Bridges IDE Docker container, do the following:
docker run -d -p 8787:8787 -p 3838:3838 --name rstudio_shiny_server sevenbridges/sevenbridges-r
To mount a file system, you need to use --privileged with fuse.
Check out the IP from Docker Machine if you are on a Mac OS.
docker-machine ip default
In your browser, you can see where the RStudio server is located from the path http://<url>:8787/. For example, if 192.168.99.100 is returned, visit http://192.168.99.100:8787/ for Rstudio.
For the Shiny server, each app__ is hosted at http://<url>:3838/users/<username of rstudio>/<app_dir> for the Shiny server. For example, an app called 01_hello owned by user rstudio (a default user) has the path http://<url>:3838/users/rstudio/01_hello/. To develop your Shiny apps as an Rstudio user, you can login your RStudio server and create a folder in your home folder called ~/ShinyApps. There, you can develop shiny apps in that folder. For example, you can create an app called 02_text at ~/ShinyApps/02_text/.
Log into your RStudio at http://<url>:8787. Then, try to copy an app to your home folder, as follows:
If you are logged in as user rstudio, visit http://192.168.99.100:3838/rstudio/01_hello. You should be able to see the “hello” example.
Note: Generic Shiny apps can also be hosted at http://<url>:3838/ or, for a particular app, at http://<url>:3838/<app_dir>. Inside the Docker container, it’s hosted under /srv/shiny-server/.
FAQ
The best place to ask questions about the sevenbridges package is the mailing list.
Q: Which version of the Common Workflow Language (CWL) is supported? A: We support draft 2 and are making progress on supporting draft 3.
Q: Is there a Python binding for the API? A: Yes, the official Python client is here. Recipes and tutorials using the Python bindings are here.
Q: Why do I get warning messages when I use the API R client? A: The warning only exists in Rstudio and is potentially a bug in Rstudio. To ignore, it use options(warn = -1)
Q: I still have problems despite dismissing the messages. A: Please try to use the latest package on GitHub or update installed Bioconductor packages. This usually includes the most recent bug fixes.
sevenbridges-r
BioC (Release) · BioC (Development) · GitHub (Latest)
Overview
sevenbridges-r is an R/Bioconductor package that provides an interface for the Seven Bridges Platform (US, EU, China), Cancer Genomics Cloud, Cavatica, and BioData Catalyst Powered by Seven Bridges public APIs.
The Seven Bridges Platform is a cloud-based environment for conducting bioinformatics analysis. It is a central hub for teams to store, analyze, and jointly interpret their bioinformatic data. The Platform co-locates analysis pipelines alongside the largest genomic datasets to optimize processing, allocating storage, and compute resources on demand.
The Cancer Genomics Cloud (CGC), powered by Seven Bridges, is also a cloud-based computation environment. It was built as one of three pilot systems funded by the National Cancer Institute to explore the paradigm of colocalizing massive genomics datasets, like The Cancer Genomics Atlas (TCGA), alongside secure and scalable computational resources to analyze them. The CGC makes more than a petabyte of multi-dimensional data available immediately to authorized researchers. You can add your data to analyze alongside TCGA using predefined analytical workflows or your own tools.
Cavatica, powered by Seven Bridges, is a data analysis and sharing platform designed to accelerate discovery in a scalable, cloud-based compute environment where data, results, and workflows are shared among the world’s research community. Cavatica is built in collaboration with the Children Hospital of Philadelphia and it is focused on pediatric data.
Table of Contents
Installation
Check R version
First, check the version of R you are using with the following command (in R):
If you are not running the latest release version of R, install or upgrade with these instructions. If you are using RStudio, restart RStudio after installing R. RStudio will detect the new installation.
Bioconductor - Release Branch
This is recommended for most users as it is the most stable version.
You can install the package from the
releasebranch on Bioconductor usingBiocManager:Bioconductor - Development Branch
If you are developing tools under the
develbranch or use the development version of R and Bioconductor, install the package from the Bioconductordevelbranch. You probably also want to install R-devel first by following the directions in “Using the ‘Devel’ Version of Bioconductor”.To install the
sevenbridgespackage from thedevelbranch, useLatest Development Version
To try the latest features, please install the package directly from GitHub. We push to the Bioconductor branch (
releaseanddevel) regularly.Installing the
sevenbridgespackage from GitHub requires you have thedevtoolspackage. If you do not havedevtools, install it from CRAN first.You may get an error for missing system dependecies such as curl and ssl. You probably need to do the following first in order to install
devtoolsand to build vignettes since you needpandocunder Ubuntu.After
devtoolsis installed, install the latest version ofsevenbridgesfrom GitHub:If you have trouble with
pandocand do not want to install it, setbuild_vignettes = FALSEto avoid building the vignettes.Features
The
sevenbridgespackage includes the following features:Flexible Authentication Methods
Multiple authentication methods support.
Please check
vignette("api", package = "sevenbridges")for technical details about all available authentication methods.Complete API R Client
A complete API R client with a user-friendly, object-oriented API with printing and support operations for API requests relating to users, billing, projects, files, apps, and tasks. Short examples are also included, as shown below:
Task Monitoring
A task monitoring hook which allows you to add a hook function to specific task statuses as you monitor a task. For example, you can opt to receive an email when the task is completed or specify to download all files produced by the task, as shown below:
Batch Tasks Support
Batch tasks by metadata and by item.
Cross Environment Support
Cross-platform support for Seven Bridges environments, such as Cancer Genomics Cloud or Seven Bridges Platform on either Amazon Web Services or Google Cloud Platform.
Common Workflow Language Tool Interface
A Common Workflow Language (CWL) Tool interface to directly describe your tool in R, export it to JSON or YAML, or add it to your online project. This package defines a complete set of CWL object, so you can describe tools as follows:
Utilities for Tool and Flow
Utilities for
ToolandFlow, for exampleTutorials
We maintain 3 different sets of documentation: the sevenbridges-r GitHub repository (latest and most up-to-date), Bioconductor release channel, and Bioconductor development channel. Below, only the GitHub version is linked to provide the latest documentation. For the other versions, please visit Bioconductor Release version or Bioconductor Development version. The tutorials below are re-generated regularly as we update the package on GitHub.
or the Datasets API
IDE Docker Image
In the tutorial for IDE container above, we built a Docker container locally from which we can launch RStudio and Shiny. To launch RStudio and Shiny Server with the Seven Bridges IDE Docker container, do the following:
To mount a file system, you need to use
--privilegedwith fuse.Check out the IP from Docker Machine if you are on a Mac OS.
In your browser, you can see where the RStudio server is located from the path
http://<url>:8787/. For example, if 192.168.99.100 is returned, visithttp://192.168.99.100:8787/for Rstudio.For the Shiny server, each app__ is hosted at
http://<url>:3838/users/<username of rstudio>/<app_dir>for the Shiny server. For example, an app called01_helloowned by userrstudio(a default user) has the pathhttp://<url>:3838/users/rstudio/01_hello/. To develop your Shiny apps as an Rstudio user, you can login your RStudio server and create a folder in your home folder called~/ShinyApps. There, you can develop shiny apps in that folder. For example, you can create an app called02_textat~/ShinyApps/02_text/.Log into your RStudio at
http://<url>:8787. Then, try to copy an app to your home folder, as follows:If you are logged in as user
rstudio, visithttp://192.168.99.100:3838/rstudio/01_hello. You should be able to see the “hello” example.Note: Generic Shiny apps can also be hosted at
http://<url>:3838/or, for a particular app, athttp://<url>:3838/<app_dir>. Inside the Docker container, it’s hosted under/srv/shiny-server/.FAQ
The best place to ask questions about the
sevenbridgespackage is the mailing list.Q: Which version of the Common Workflow Language (CWL) is supported?
A: We support draft 2 and are making progress on supporting draft 3.
Q: Is there a Python binding for the API?
A: Yes, the official Python client is here. Recipes and tutorials using the Python bindings are here.
Q: Why do I get warning messages when I use the API R client?
A: The warning only exists in Rstudio and is potentially a bug in Rstudio. To ignore, it use
options(warn = -1)Q: I still have problems despite dismissing the messages.
A: Please try to use the latest package on GitHub or update installed Bioconductor packages. This usually includes the most recent bug fixes.
Events
[HTML] [R Markdown Source]
Contribute
Please file bug reports/feature requests on the issue page, or create pull requests here.
Contributors should read the Seven Bridges Notice to Contributors and sign the Seven Bridges Contributor Agreement before submitting a pull request.
Copyright
© 2020 Seven Bridges Genomics, Inc. All rights reserved.
This project is licensed under the terms of the Apache License 2.0.