-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#' HUGO gene to Pfam mapping | ||
#' | ||
#' @description Generate HUGO gene symbol to Pfam mapping table from UniProt and Pfam databases | ||
|
||
message("Parsing filtered human data from UniProt ...") | ||
# === | ||
# Note: not run. | ||
# can use "UniProt.ws" to retrieve all UniProt information. | ||
# However, UniProt limits queries with a large amount of keys. | ||
# It's recommended that the select method be invoked with fewer than | ||
# 100 keys or the query may fail. | ||
# === | ||
# library(UniProt.ws) | ||
# up = UniProt.ws(taxId=9606) | ||
# up_col = c("UNIPROTKB", "GENES", "LENGTH", "VERSION") | ||
# up_keys = keys(up, keytype="UNIPROTKB") | ||
# up_all = select(up, keys=up_keys, columns=up_col, keytype="UNIPROTKB") | ||
|
||
# -------------------------- | ||
# In practice, the data were downloaded from UniProtKB | ||
# | ||
# https://wwwhttps://www.uniprot.org/uniprot/?query=*&fil=organism%3A%22Homo+sapiens+%28Human%29+%5B9606%5D%22+AND+reviewed%3Ayes | ||
# (1) select 9606 | ||
# (2) select "Reviewed" only entries | ||
# (3) select columns | ||
# - Entry | ||
# - Gene names (primary) | ||
# - Length | ||
# -------------------------- | ||
|
||
uniprot_fn = "uniprot-filtered-organism__Homo+sapiens+(Human)+[9606]_+AND+review--.tab.gz" | ||
|
||
uniprot.file <- gzcon(file(uniprot_fn, "r")) | ||
uniprot.txt <- readLines(uniprot.file) | ||
uniprot.df <- read.table(textConnection(uniprot.txt), | ||
sep = "\t", | ||
quote = "", | ||
comment.char = "#", | ||
stringsAsFactors = FALSE, | ||
header = TRUE) | ||
colnames(uniprot.df) <- c("uniprot", "length", "symbol") | ||
|
||
# split multiple entries in symbol column | ||
uniprot.single.df <- subset(uniprot.df, !grepl(";", symbol)) | ||
uniprot.to.parse.df <- subset(uniprot.df, grepl(";", symbol)) | ||
for(idx in 1:nrow(uniprot.to.parse.df)){ | ||
symbols <- strsplit(uniprot.to.parse.df[idx, "symbol"], "; ")[[1]] | ||
uniprot.single.df <- rbind(uniprot.single.df, | ||
data.frame(uniprot = uniprot.to.parse.df[idx, "uniprot"], | ||
length = uniprot.to.parse.df[idx, "length"], | ||
symbol = symbols) | ||
) | ||
} | ||
|
||
# -------------------------- | ||
# Pfam (human 9606) | ||
# Date: 2020-08-24 | ||
# Version: 33.1 | ||
message("Download Pfam data from Pfam website ...") | ||
pfam_url = "ftp://ftp.ebi.ac.uk/pub/databases/Pfam/current_release/proteomes/9606.tsv.gz" | ||
pfam_fn = "data-raw/hgnc_to_pfam/9606.tsv.gz" | ||
download.file(pfam_url, pfam_fn) | ||
|
||
# -------------------------- | ||
message("Read pfam information ...") | ||
pfam.file <- gzcon(file(pfam_fn, "r")) | ||
pfam.txt <- readLines(pfam.file) | ||
|
||
pfam.df <- read.table( | ||
file = textConnection(pfam.txt), | ||
sep = "\t", | ||
quote = "", | ||
comment.char = "#", | ||
stringsAsFactors = FALSE, | ||
header = FALSE | ||
) | ||
|
||
colnames(pfam.df) = c("id", "align.start", "align.end", "start", "end", | ||
"hmm.acc", "hmm.name", "type", "hmm.start", "hmm.end", "hmm.length", | ||
"bit.score", "e.value", "clan") | ||
pfam.sub.df = pfam.df[, c("id", "start", "end", "hmm.acc", "hmm.name", "type")] | ||
|
||
# merge by UniProt | ||
message("Generating mapping table ...") | ||
hgnc2pfam.df = merge(uniprot.single.df, pfam.sub.df, by.x="uniprot", by.y = "id", all.x=TRUE, sort = FALSE) | ||
hgnc2pfam.df = hgnc2pfam.df[with(hgnc2pfam.df, order(symbol, uniprot, start, end)), ] | ||
hgnc2pfam.df = hgnc2pfam.df[, c("symbol", "uniprot", "length", | ||
"start", "end", "hmm.acc", "hmm.name", "type")] | ||
|
||
# create Rdata, move this to "data" directory | ||
save(hgnc2pfam.df, file="hgnc2pfam.df.rda") | ||
|
Binary file not shown.
Binary file added
BIN
+183 KB
prepare_data/uniprot-filtered-organism__Homo+sapiens+(Human)+[9606]_+AND+review--.tab.gz
Binary file not shown.