Description Usage Arguments Value See Also Examples
Returns a GRanges with metadata columns corresponding to the requested cell type enhancer expression (in TPM).
1 | get_fantom_tss_tpm(cell_lines = NULL, merge.FUN = NULL)
|
cell_lines |
The cell line(s) to fetch. Must be a vector of character.
The function will look for the pattern (with If The metadata columns will be named using the
Default: |
merge.FUN |
A function to merge the TPM when there is more than one column for the same cell type. Must take a vector of numeric as input and returns a single numeric value. Default: |
A GRanges
object with the metadata columns containing the
expression value in TMP for the requested cell line(s), all 1827
experiments expression values are returned if cell_line
is
NULL
. If the cell line(s) is not found, an empty GRanges
is
returned.
1 2 3 4 5 6 7 8 9 | # To get the TPM in A549 cell lines
get_fantom_tss_tpm(cell_lines = "A549")
# To get the TPM in A549 and in K562 cell lines
get_fantom_tss_tpm(cell_lines = c("A549", "K562"))
# To get the TPM K562 cell lines and merge metadata columns by returning
# their mean value
get_fantom_tss_tpm(cell_lines = "K562", merge.FUN = mean)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.