2020-09-18 11:56:30 +00:00
|
|
|
# tocID <- "RPR-PROSITE_POST.R"
|
|
|
|
#
|
|
|
|
# ---------------------------------------------------------------------------- #
|
|
|
|
# PATIENCE ... #
|
|
|
|
# Do not yet work wih this code. Updates in progress. Thank you. #
|
|
|
|
# boris.steipe@utoronto.ca #
|
|
|
|
# ---------------------------------------------------------------------------- #
|
2017-10-06 12:49:43 +00:00
|
|
|
#
|
|
|
|
# Purpose: A Bioinformatics Course:
|
|
|
|
# R code accompanying the RPR-Scripting_data_downloads unit.
|
|
|
|
#
|
2019-01-08 07:11:25 +00:00
|
|
|
# Version: 1.1
|
2017-10-06 12:49:43 +00:00
|
|
|
#
|
2019-01-08 07:11:25 +00:00
|
|
|
# Date: 2017 10 - 2019 01
|
2017-10-06 12:49:43 +00:00
|
|
|
# Author: Boris Steipe (boris.steipe@utoronto.ca)
|
|
|
|
#
|
|
|
|
# Versions:
|
2019-01-08 07:11:25 +00:00
|
|
|
# 1.1 Change from require() to requireNamespace(),
|
|
|
|
# use <package>::<function>() idiom throughout,
|
2018-12-02 08:52:36 +00:00
|
|
|
# 1.0.1 Updates for slightly changed interfaces
|
2017-10-06 12:49:43 +00:00
|
|
|
# 1.0 First ABC units version
|
|
|
|
# 0.1 First code copied from 2016 material.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# TODO:
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# == DO NOT SIMPLY source() THIS FILE! =======================================
|
|
|
|
#
|
|
|
|
# If there are portions you don't understand, use R's help system, Google for an
|
|
|
|
# answer, or ask your instructor. Don't continue if you don't understand what's
|
|
|
|
# going on. That's not how it works ...
|
|
|
|
#
|
|
|
|
# ==============================================================================
|
2017-10-29 03:05:53 +00:00
|
|
|
|
|
|
|
|
2017-10-06 12:49:43 +00:00
|
|
|
#TOC> ==========================================================================
|
2020-09-18 11:56:30 +00:00
|
|
|
#TOC>
|
2019-01-08 07:11:25 +00:00
|
|
|
#TOC> Section Title Line
|
|
|
|
#TOC> ---------------------------------------------------------------------
|
|
|
|
#TOC> 1 Constructing a POST command from a Web query 42
|
|
|
|
#TOC> 1.1 Task - fetchPrositeFeatures() function 142
|
|
|
|
#TOC> 2 Task solutions 150
|
2020-09-18 11:56:30 +00:00
|
|
|
#TOC>
|
2017-10-06 12:49:43 +00:00
|
|
|
#TOC> ==========================================================================
|
|
|
|
|
|
|
|
|
|
|
|
# = 1 Constructing a POST command from a Web query ========================
|
|
|
|
|
|
|
|
|
2019-01-08 07:11:25 +00:00
|
|
|
if (! requireNamespace("httr", quietly = TRUE)) {
|
2017-10-06 12:49:43 +00:00
|
|
|
install.packages("httr")
|
|
|
|
}
|
2017-10-29 03:05:53 +00:00
|
|
|
# Package information:
|
|
|
|
# library(help = httr) # basic information
|
|
|
|
# browseVignettes("httr") # available vignettes
|
|
|
|
# data(package = "httr") # available datasets
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-10-06 12:49:43 +00:00
|
|
|
|
|
|
|
# We have reverse engineered the Web form for a ScanProsite request, and can now
|
|
|
|
# construct a POST request. The command is similar to GET(), but we need an
|
|
|
|
# explicit request body: a list of key/value pairs
|
|
|
|
|
|
|
|
UniProtID <- "P39678"
|
|
|
|
|
2018-12-02 08:52:36 +00:00
|
|
|
URL <- "https://prosite.expasy.org/cgi-bin/prosite/PSScan.cgi"
|
2017-10-06 12:49:43 +00:00
|
|
|
|
2019-01-08 07:11:25 +00:00
|
|
|
response <- httr::POST(URL,
|
|
|
|
body = list(meta = "opt1",
|
|
|
|
meta1_protein = "opt1",
|
|
|
|
seq = UniProtID,
|
|
|
|
skip = "on",
|
|
|
|
output = "tabular"))
|
2017-10-06 12:49:43 +00:00
|
|
|
|
|
|
|
# Send off this request, and you should have a response in a few
|
|
|
|
# seconds. Let's check the status first:
|
|
|
|
|
2019-01-08 07:11:25 +00:00
|
|
|
httr::status_code(response) # If this is not 200, something went wrong and it
|
|
|
|
# makes no sense to continue. If this persists, ask
|
|
|
|
# on the mailing list what to do.
|
2017-10-06 12:49:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# The text contents of the response is available with the
|
|
|
|
# content() function:
|
2019-01-08 07:11:25 +00:00
|
|
|
httr::content(response, "text")
|
2017-10-06 12:49:43 +00:00
|
|
|
|
|
|
|
# ... should show you the same as the page contents that
|
|
|
|
# you have seen in the browser. The date we need Now we need to extract
|
|
|
|
# the data from the page: we need regular expressions, but
|
|
|
|
# only simple ones. First, we strsplit() the response into
|
|
|
|
# individual lines, since each of our data elements is on
|
|
|
|
# its own line. We simply split on the "\\n" newline character.
|
|
|
|
|
2019-01-08 07:11:25 +00:00
|
|
|
lines <- unlist(strsplit(httr::content(response, "text"), "\\n"))
|
2017-10-06 12:49:43 +00:00
|
|
|
head(lines)
|
|
|
|
|
|
|
|
# Now we define a query pattern for the lines we want:
|
|
|
|
# we can use the uID, bracketed by two "|" pipe
|
|
|
|
# characters:
|
|
|
|
|
|
|
|
patt <- sprintf("\\|%s\\|", UniProtID)
|
|
|
|
|
|
|
|
# ... and select only the lines that match this
|
|
|
|
# pattern:
|
|
|
|
|
|
|
|
lines <- lines[grep(patt, lines)]
|
|
|
|
lines
|
|
|
|
|
|
|
|
# ... captures the four lines of output.
|
|
|
|
|
|
|
|
# Now we break the lines apart into tokens: this is another application of
|
|
|
|
# strsplit(), but this time we split either on "pipe" characters, "|" OR on tabs
|
|
|
|
# "\t". Look at the regex "\\t|\\|" in the strsplit() call:
|
|
|
|
|
|
|
|
unlist(strsplit(lines[1], "\\t|\\|"))
|
|
|
|
|
|
|
|
# Its parts are (\\t)=tab (|)=or (\\|)=pipe. Both "t" and "|" need to be escaped
|
|
|
|
# with a backslash. "t" has to be escaped because we want to match a tab (\t),
|
|
|
|
# not the literal character "t". And "|" has to be escaped because we mean the
|
|
|
|
# literal pipe character, not its metacharacter meaning OR. Thus sometimes the
|
|
|
|
# backslash turns a special meaning off, and sometimes it turns a special
|
|
|
|
# meaning on. Unfortunately there's no easy way to tell - you just need to
|
|
|
|
# remember the characters - or have a reference handy. The metacharacters are
|
|
|
|
# (){}[]^$?*+.|&- ... and some of them have different meanings depending on
|
|
|
|
# where in the regex they are.
|
|
|
|
|
|
|
|
# Let's put the tokens into named slots of a data frame
|
|
|
|
|
|
|
|
features <- data.frame()
|
|
|
|
for (line in lines) {
|
|
|
|
tokens <- unlist(strsplit(line, "\\t|\\|"))
|
|
|
|
features <- rbind(features,
|
|
|
|
data.frame(uID = tokens[2],
|
|
|
|
start = as.numeric(tokens[4]),
|
|
|
|
end = as.numeric(tokens[5]),
|
|
|
|
psID = tokens[6],
|
|
|
|
psName = tokens[7],
|
|
|
|
stringsAsFactors = FALSE))
|
|
|
|
}
|
|
|
|
features
|
|
|
|
|
|
|
|
# This forms the base of a function that collects the features automatically
|
|
|
|
# from a PrositeScan result. You can write this!
|
|
|
|
|
|
|
|
|
|
|
|
# == 1.1 Task - fetchPrositeFeatures() function ============================
|
|
|
|
|
|
|
|
|
|
|
|
# Task: write a function that takes as input a UniProt ID, fetches the
|
|
|
|
# features it contains from ScanProsite and returns a list as given above, or
|
|
|
|
# a list of length 0 if there is an error.
|
|
|
|
|
|
|
|
|
|
|
|
# = 2 Task solutions ======================================================
|
|
|
|
|
|
|
|
|
2018-12-02 08:52:36 +00:00
|
|
|
# I have placed such a function into the ABC-dbUtilities.R script: look it up by
|
2017-10-06 12:49:43 +00:00
|
|
|
# clicking on dbFetchPrositeFeatures() in the Environment pane.
|
|
|
|
|
|
|
|
# Test:
|
|
|
|
dbFetchPrositeFeatures("P39678")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# [END]
|