R/utils_a3.R

Defines functions aa_sub get_alphafold_pdb get_alphafold

Documented in aa_sub get_alphafold

#' Get AlphaFold info for a given UniProt ID
#'
#' @param uniprotid Character: UniProt ID.
#'
#' @return data frame with AlphaFold info.
#'
#' @author EDG
#' @export
#'
#' @examples
#' # Requires internet connection and fetches data from AlphaFold.
#' \dontrun{
#' get_alphafold("P10636")
#' }
get_alphafold <- function(uniprotid) {
  check_scalar_character(uniprotid, arg_name = "uniprotid")
  check_dependencies(c("httr", "jsonlite"))
  url <- paste0("https://www.alphafold.ebi.ac.uk/api/prediction/", uniprotid)
  headers <- c(
    "accept" = "application/json"
  )
  response <- httr::GET(url, httr::add_headers(.headers = headers))
  httr::stop_for_status(response)
  content <- httr::content(response, as = "text", encoding = "UTF-8")
  jsonlite::fromJSON(content)
}


# %% get_alphafold_pdb ----
get_alphafold_pdb <- function(uniprotid) {
  get_alphafold(uniprotid)[["pdb"]]
}


#' Perform amino acid substitutions
#'
#' @param x Character vector: Amino acid sequence. e.g. `"ARND"` or
#' `c("A", "R", "N", "D")`.
#' @param substitutions Character vector: Substitutions to perform in the format
#' "OriginalPositionNew", e.g. `c("C291A", "C322A")`.
#' @param verbosity Integer: Verbosity level.
#'
#' @return Character vector with substitutions performed.
#'
#' @author EDG
#' @export
#'
#' @examples
#' aa_sub(c("A", "R", "N", "D"), c("R2K", "N3S"))
aa_sub <- function(x, substitutions, verbosity = 1L) {
  check_inherits(x, "character")
  check_inherits(substitutions, "character")
  # Split x into characters
  if (length(x) == 1) {
    x <- unlist(strsplit(x, ""))
  }
  for (s in substitutions) {
    strngs <- strsplit(s, "")[[1]]
    from <- strngs[1]
    to <- strngs[length(strngs)]
    pos <- as.numeric(strngs[2:(length(strngs) - 1)] |> paste(collapse = ""))
    msg(
      "Substituting",
      highlight(from),
      "at position",
      highlight(pos),
      "with",
      highlight(to),
      verbosity = verbosity
    )
    x[pos] <- to
  }
  msg("All done.", verbosity = verbosity)
  x
}

Try the rtemis.a3 package in your browser

Any scripts or data that you put into this service are public.

rtemis.a3 documentation built on April 29, 2026, 1:06 a.m.