Description Usage Arguments Value Functions See Also Examples
Because creating these dataframes takes a minute or two and its likely a user will be interested in multiple seq types (whole transcript, CDS, 5'UTR, 3'UTR) it is better to create and save this dataframe once.
1 2 3 | make_longest_df(TxDb_gff)
make_median_df(TxDb_gff)
|
TxDb_gff |
A TxDb object. Using |
Both make_longest_df
and make_median_df
create a
dataframe relating Ensembl gene IDs and ensembl Transcript IDs. Because the
longest CDS and longest 3'UTR for a gene may not belong to the same
transcript, there is a column for each sequence type.
make_longest_df
: creates a dataframe of the
transcripts with the longest features for each gene in a TxDb object
make_median_df
: creates a dataframe of the
transcripts with the median length features for each gene in a TxDb object
1 2 3 | hs_filtered_TxDb <- filter_Tx("mydata/Gencodedat/gencode.v33.annotation.gff3.gz")
longest_hs <- make_longest_df(hs_filtered_TxDb)
median_hs <- make_median_df(hs_filtered_TxDb)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.