knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

proteomicsHF

ForTheBadge built-by-developers

proteomicsHF is a package with Functions necessary to analyze and replicate results of biomarker discovery pipeline for SOMALogic 5K Assay proteins associated with incident heart failure. Results are cached and derived from the Atherosclerosis Risk in Communities (ARIC) cohort from visits three and five. Includes functions to set adjustment variables, impute missing variables, summarize data, conduct uni-protein and multi-protein analyses and visualize data. Also includes a number of utility functions for data manipulation and reporting.

Installation

Install the latest version of proteomicsHF from GitHub with:

# install.packages("devtools")
devtools::install_github("pranavdorbala/proteomicsHF")

Set Up

This is is how you set up multicore processing:

library(proteomicsHF)

set.seed(101010)

#Set number of cores according to system
doParallel::registerDoParallel(8) # 2 * system cores
future::plan(future::multisession, workers = 4) # number of system cores


pranavdorbala/proteomicsHF documentation built on March 9, 2021, 12:22 a.m.