pqtl_pleio {epigraphdb}R Documentation

Return information related to the pleiotropy of SNPs

Description

⁠GET /pqtl/pleio/⁠

Usage

pqtl_pleio(
  rsid = NULL,
  prflag = c("proteins", "count"),
  mode = c("table", "raw")
)

Arguments

rsid

(Required) A SNP identified by rsID which cannot be NULL.

prflag

(Optional) A flag which determines whether the number (if "count") or names (if "proteins") of the associated proteins should be returned. The DEFAULT value is "proteins".

mode

(Optional) If mode = "table", returns a data frame (a tibble as per tidyverse convention). If mode = "raw", returns a raw response from EpiGraphDB API with minimal parsing done by httr.

Value

Data from ⁠GET /pqtl/pleio/⁠

Examples


# Returns a data frame of associated proteins
## Not run: 
pqtl_pleio(rsid = "rs1260326")

## End(Not run)

# Returns a number of associated proteins
## Not run: 
pqtl_pleio(rsid = "rs1260326", prflag = "count")

## End(Not run)

[Package epigraphdb version 0.2.3 Index]