quick_peak | R Documentation |
Simple but fast function for finding peaks in genome-wide association study (GWAS) data based on setting a minimum distance between peaks.
quick_peak(
data,
npeaks = NA,
p_cutoff = 5e-08,
span = 1e+06,
min_points = 2,
chrom = NULL,
pos = NULL,
p = NULL
)
data |
GWAS dataset (data.frame or data.table) |
npeaks |
Number of peaks to find. If set to |
p_cutoff |
Specifies cut-off for p-value significance above which p-values are ignored. |
span |
Minimum genomic distance between peaks (default 1 Mb) |
min_points |
Minimum number of p-value significant points which must lie
within the span of a peak. This removes peaks with single or only a few low
p-value SNPs. To disable set |
chrom |
Determines which column in |
pos |
Determines which column in |
p |
Determines which column in |
This function is designed for speed. SNP p-values are filtered to only those
which are significant as specified by p_cutoff
. Each peak is identified as
the SNP with the lowest p-value and then SNPs in proximity to each peak
within the distance specified by span
are removed. Regions such as the HLA
whose peaks may well be broader than span
may produce multiple entries.
Vector of row indices
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.