-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #307071 from Kupac/fix_immunotation
rPackages.immunotation: cache external URLs
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
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
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,47 @@ | ||
diff --git a/R/AFND_interface.R b/R/AFND_interface.R | ||
index b62e8e0..0f22d85 100644 | ||
--- a/R/AFND_interface.R | ||
+++ b/R/AFND_interface.R | ||
@@ -244,9 +244,9 @@ check_population <- function(hla_population) { | ||
#' @return list of valid countries, regions and ethnic origin | ||
#' @keywords internal | ||
get_valid_geographics <- function() { | ||
- url <- "http://www.allelefrequencies.net/hla6006a.asp?" | ||
- html_input <- getURL(url, read_method = "html") | ||
- | ||
+ # http://www.allelefrequencies.net/hla6006a.asp? | ||
+ html_input <- xml2::read_html("nix-valid-geographics") | ||
+ | ||
rvest_tables <- rvest::html_table(html_input, fill = TRUE) | ||
|
||
# country | ||
diff --git a/R/external_resources_input.R b/R/external_resources_input.R | ||
index c4b1dc1..8fc5881 100644 | ||
--- a/R/external_resources_input.R | ||
+++ b/R/external_resources_input.R | ||
@@ -74,16 +74,17 @@ getURL <- function(URL, N.TRIES=2L, | ||
# MHC I | ||
# netmhcI_input_template is an internal variable containing list of valid | ||
# NetMHCpan input alleles | ||
-netmhcI_input_template <- getURL( | ||
- URL="https://services.healthtech.dtu.dk/services/NetMHCpan-4.1/allele.list", | ||
- read_method = "delim", delim = "\t", | ||
- col_names = c("netmhc_input", "hla_chain_name", "HLA_gene")) | ||
+netmhcI_input_template <- readr::read_delim( | ||
+ # https://services.healthtech.dtu.dk/services/NetMHCpan-4.1/allele.list | ||
+ "nix-NetMHCpan-4.1-allele-list", | ||
+ delim = "\t", | ||
+ skip = 0, | ||
+ col_names = c("netmhc_input", "hla_chain_name", "HLA_gene") | ||
+ ) | ||
|
||
# MHC II | ||
-lines <- getURL( | ||
- URL = paste0("https://services.healthtech.dtu.dk/services/", | ||
- "NetMHCIIpan-4.0/alleles_name.list"), | ||
- read_method = "lines") | ||
+# https://services.healthtech.dtu.dk/services/NetMHCIIpan-4.0/alleles_name.list | ||
+lines <- readr::read_lines("nix-NETMHCIIpan-4.0-alleles-name-list") | ||
lines_rep <- stringr::str_replace_all(lines, "\t+|\\s\\s+", "\t") | ||
netmhcII_input_template <- suppressWarnings( | ||
suppressMessages(read.delim(textConnection(lines_rep), sep = "\t"))) |