All Projects → Bioconductor → GoogleGenomics

Bioconductor / GoogleGenomics

Licence: Apache-2.0 license
An R package for Google Genomics API queries.

Programming Languages

r
7636 projects
C++
36643 projects - #6 most used programming language
M4
1887 projects
c
50402 projects - #5 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to GoogleGenomics

RforProteomics
Using R and Bioconductor packages for the analysis and comprehension of proteomics data.
Stars: ✭ 52 (+18.18%)
Mutual labels:  bioconductor-packages
ensembldb
This is the ensembldb development repository.
Stars: ✭ 31 (-29.55%)
Mutual labels:  bioconductor-packages
S4Vectors
Foundation of vector-like and list-like containers in Bioconductor
Stars: ✭ 16 (-63.64%)
Mutual labels:  core-package
SummarizedExperiment
SummarizedExperiment container
Stars: ✭ 21 (-52.27%)
Mutual labels:  core-package
DelayedArray
A unified framework for working transparently with on-disk and in-memory array-like datasets
Stars: ✭ 20 (-54.55%)
Mutual labels:  core-package
GenomicRanges
Representation and manipulation of genomic intervals
Stars: ✭ 32 (-27.27%)
Mutual labels:  core-package

GoogleGenomics Build Status

This R client fetches reads and variants data from the Google Genomics API and provides converters to obtain Bioconductor S4 classes like GAlignments, and GRanges and VRanges.

Installing

Use the Bioconductor repositories to install this package.

If you have gRPC installed, you will be able to access the entire v1 Google Genomics API through the callGRPCMethod function provided in the package and use more performant reads and variant search methods. Without gRPC support, you will still be able to query reads and variants; see the vignettes for sample usage.

  • [Optional] Installing gRPC

    See our guide on gRPC.

  • Installing R package

    source("http://bioconductor.org/biocLite.R")
    useDevel(TRUE) # Skip this step if you do not want the devel version.
    
    biocLite("GoogleGenomics")  # If gRPC is not installed.
    biocLite("GoogleGenomics", type="source")  # If gRPC is installed.
    library(GoogleGenomics)

Authentication

Call authenticate to set up credentials. Check the function documentation for details on various available options. The function will return TRUE on successful authentication.

Examples

See the following examples for more detail:

Project status

The package is integrated with gRPC when available on the system where the package was built. With gRPC support, the entire v1 API is accessible. Without gRPC support, this package can be used to search for reads and variants, and convert them to various Bioconductor formats.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].