Description Usage Arguments Value Author(s) Examples
Requires a data table containing a column labeled "ensembl_peptide_id" or "ensembl_transcript_id" Returns a data.table contaiining "ensembl_peptide_id", "external_gene_name", "transcription_start_site", "transcript_start", "transcript_end", "chromosome_name" for all species compiled
1 | SeqAnnotate(DT, type)
|
DT |
a data table containing a column labeled "ensembl_peptide_id" or "ensembl_transcript_id" |
type |
single character string either "protein" or "mRNA". If "protein", requires the "ensembl_peptide_id" column and returns a data table containing protein ensembl peptide id's. If "mRNA", requires the "ensembl_transcript_id" column and returns a data table containing protein ensembl transcript id's. |
A data.table contaiining "ensembl_peptide_id"/"ensembl_transcript_id", "external_gene_name", "transcription_start_site", "transcript_start", "transcript_end", "chromosome_name" for all species compiled
Brendan Gongol
1 2 3 4 5 6 7 8 9 | library(data.table)
setwd("C:/Users/Brendan/Dropbox/Brendan Documents/R programming/bioinformatics/proteomes/2016-4-29 Proteomes")
Proteome <- fread("species protein compilation.xls")
head(SeqAnnotate(DT = Proteome, type = "protein"))
library(data.table)
setwd("C:/Users/Brendan/Dropbox/Brendan Documents/R programming/bioinformatics/cDNA_transcriptome/2016-3-6 cDNA transcriptomes")
Transcriptome <- fread("species mRNA compilation.xls")
head(SeqAnnotate(Transcriptome, type = "mRNA"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.