join_transcripts {tidySingleCellExperiment} | R Documentation |
join_transcripts() extracts and joins information for specific transcripts
join_transcripts( .data, transcripts = NULL, all = FALSE, exclude_zeros = FALSE, shape = "long" )
.data |
A tidy SingleCellExperiment object |
transcripts |
A vector of transcript identifiers to join |
all |
If TRUE return all |
exclude_zeros |
If TRUE exclude zero values |
shape |
Format of the returned table "long" or "wide" |
This function extracts information for specified transcripts and returns the information in either long or wide format.
A 'tbl' containing the information.for the specified transcripts
tidySingleCellExperiment::pbmc_small %>% tidy() %>% join_transcripts(transcripts=c("HLA-DRA", "LYZ"))