R/get_default_netmhc2pan_bin_tarfile_path.R

Defines functions get_default_netmhc2pan_bin_tarfile_path

Documented in get_default_netmhc2pan_bin_tarfile_path

#' Get the default path for the NetMHCIIpan binary tarball file
#'
#' Get the default path for the NetMHCIIpan binary tarball file.
#' This is the location where it will be saved to after downloading.
#' @inheritParams default_params_doc
#' @return the default path for the NetMHCIIpan binary tarball file
#' @examples
#' get_default_netmhc2pan_bin_tarfile_path()
#' @author Richèl J.C. Bilderbeek
#' @export
get_default_netmhc2pan_bin_tarfile_path <- function( # nolint indeed a long function name
  netmhc2pan_folder_name = get_default_netmhc2pan_folder(),
  netmhc2pan_archive_filename = get_netmhc2pan_archive_filename()
) {
  file.path(
    netmhc2pan_folder_name,
    netmhc2pan_archive_filename
  )
}

Try the netmhc2pan package in your browser

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

netmhc2pan documentation built on Nov. 9, 2023, 1:08 a.m.