knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)
library("easierData")

Intro to easierData

The easierData package includes an exemplary cancer dataset from @Mariathasan2018 to showcase the easier package:

The processed data is publicly available from Mariathasan et al. "TGF-B attenuates tumour response to PD-L1 blockade by contributing to exclusion of T cells", published in Nature, 2018 doi:10.1038/nature25501 via IMvigor210CoreBiologies package under the CC-BY license.

The easierData data package also includes multiple data objects so-called internal data of easier package since they are indispensable for the functional performance of the package. This includes:

Load easier Data

Starting R, this package can be installed as follows:

BiocManager::install("easierData")

The contents of the package can be seen by querying ExperimentHub for the package name:

suppressPackageStartupMessages({
    library("ExperimentHub")
    library("easierData")
})

eh <- ExperimentHub()
query(eh, "easierData")

An overview is provided also in tabular form:

list_easierData()

The individual data objects can be accessed using either their ExperimentHub accession number, or the convenience functions provided in this package - both calls are equivalent. For instance to access the Mariathasan2018_PDL1_treatment example dataset:

mariathasan_dataset <- eh[["EH6677"]]
mariathasan_dataset

mariathasan_dataset <- get_Mariathasan2018_PDL1_treatment()
mariathasan_dataset

Session info {-}

sessionInfo()

References {-}



olapuentesantana/easierData documentation built on Dec. 22, 2021, 4:19 a.m.