NCBI_synonyms: Automatic NCBI annotation for human gene lists

Description Usage Arguments Value Author(s) References Examples

View source: R/NCBI_synonyms.R

Description

This function uses NCBI nomenclature which allows merging diffrent human gene lists using identical gene names. It also provides Entrez genes IDs and ENSEMBL gene IDs. It utilizez pre-processed annotation file downloaded from ftp://ftp.ncbi.nlm.nih.gov/gene/DATA/GENE_INFO/Mammalia/Homo_sapiens.gene_info.gz .

Usage

1
NCBI_synonyms(inputDF, input_col)

Arguments

inputDF

data frame with column containing gene symbols

input_col

name of the column containing gene symbols

Value

output is a original data frame with additional columns "SymbolNCBI" ,"EntrezID" , "ENSG_ID"

Author(s)

Zofia Wicik

References

ftp://ftp.ncbi.nlm.nih.gov/gene/DATA/GENE_INFO/Mammalia/Homo_sapiens.gene_info.gz

Examples

1
2
3
4
5
6
inputDF<- data.frame(
symbols=c('ONECUT2','NEBL','SNTB2','USP9Y','KAT6A','CRIM1','IGSF10'),
values=c(0.01,0.5,0.05,0.001,0.9,0.03,0.06))
input_col<- "symbols"
output<-wizbionet::NCBI_synonyms(inputDF, input_col)
names(output)

wizbionet/wizbionet documentation built on Sept. 9, 2020, 12:45 a.m.