Description Usage Arguments Value See Also Examples
hpaSubset()
subsets data by gene name, tissue, cell type, cancer and/or
cell line. The input is the list object generated by hpaDownload()
or
as the output of another hpaSubset()
. Use hpaListParam()
to see
the list of available parameters for a specific list object. Will not work on
isoform data.
hpaListParam()
list available variables in downloaded data that can be
used as parameters to subset the data via hpaSubset()
. This function
work with the data object generated by hpaDownload()
or a previous
call of hpaSubset()
.
1 2 3 4 5 6 7 8 9 10 |
data |
Input the list object generated by |
targetGene |
Vector of strings of HGNC gene symbols. It will be used to subset every dataset in the list object. You can also mix HGNC gene symbols and ensemnl ids (start with ENSG) and they will be converted to HGNC gene symbols. |
targetTissue |
Vector of strings of normal tissues. Will be used to
subset the |
targetCellType |
Vector of strings of normal cell types. Will be used to
subset the |
targetCancer |
Vector of strings of cancer types. Will be used to subset
the |
targetCellLine |
Vector of strings of cell lines. Will be used to subset
the |
hpaSubset
will return a list of tibbles as the result of
subsetting, depending on the input data.
The output of hpaListParam()
is a list of vectors containing
all subset parameter for the downloaded data.
Other downloadable datasets functions:
hpaDownload()
,
hpaExport()
1 2 3 4 5 6 7 8 9 10 11 12 13 | downloadedData <- hpaDownload(downloadList='all', version='example')
geneList <- c('TP53', 'EGFR')
tissueList <- c('breast', 'cerebellum', 'skin 1')
cancerList <- c('breast cancer', 'glioma', 'melanoma')
subsetData <- hpaSubset(data=downloadedData,
targetGene=geneList,
targetTissue=tissueList,
targetCancer=cancerList)
downloadedData <- hpaDownload(downloadList='all', version='example')
params <- hpaListParam(data=downloadedData)
params$normal_tissue
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.