DECODE_PQTL_FILE_NAME
decode_pqtl_file_name.RdDECODE_PQTL_FILE_NAME
Examples
if (FALSE) { # \dontrun{
# Assuming you have a linker file and the deCODE data directory
linker_file <- "path/to/your/decode_linker.csv"
decode_data_dir <- "path/to/decode_summary_stats/"
# Get the first unique ID from the linker for demonstration
unique_protein_id <- data.table::fread(linker_file)$seqID[1]
file_paths <- decode_pqtl_file_name(unique_id = unique_protein_id,
decode_linker_file = linker_file,
decode_dir = decode_data_dir)
print(file_paths)
} # }