Fast truncated SVD with initial pruning and that iteratively removes
long-range LD regions. Some variants are removing due to the initial clumping,
then more and more variants are removed at each iteration. You can access the
indices of the remaining variants with attr(*, "subset")
. If some of the
variants removed are contiguous, the regions are reported in attr(*, "lrldr")
.
snp_autoSVD(
G,
infos.chr,
infos.pos = NULL,
ind.row = rows_along(G),
ind.col = cols_along(G),
fun.scaling = snp_scaleBinom(),
thr.r2 = 0.2,
size = 100/thr.r2,
k = 10,
roll.size = 50,
int.min.size = 20,
alpha.tukey = 0.05,
min.mac = 10,
min.maf = 0.02,
max.iter = 5,
is.size.in.bp = NULL,
ncores = 1,
verbose = TRUE
)bed_autoSVD(
obj.bed,
ind.row = rows_along(obj.bed),
ind.col = cols_along(obj.bed),
fun.scaling = bed_scaleBinom,
thr.r2 = 0.2,
size = 100/thr.r2,
k = 10,
roll.size = 50,
int.min.size = 20,
alpha.tukey = 0.05,
min.mac = 10,
min.maf = 0.02,
max.iter = 5,
ncores = 1,
verbose = TRUE
)
A named list (an S3 class "big_SVD") of
d
, the singular values,
u
, the left singular vectors,
v
, the right singular vectors,
niter
, the number of the iteration of the algorithm,
nops
, number of Matrix-Vector multiplications used,
center
, the centering vector,
scale
, the scaling vector.
Note that to obtain the Principal Components, you must use predict on the result. See examples.
A FBM.code256
(typically <bigSNP>$genotypes
).
You shouldn't have missing values. Also, remember to do quality control,
e.g. some algorithms in this package won't work if you use SNPs with 0 MAF.
Vector of integers specifying each SNP's chromosome.
Typically <bigSNP>$map$chromosome
.
Vector of integers specifying the physical position
on a chromosome (in base pairs) of each SNP.
Typically <bigSNP>$map$physical.pos
.
An optional vector of the row indices (individuals) that
are used. If not specified, all rows are used.
Don't use negative indices.
An optional vector of the column indices (SNPs) that are used.
If not specified, all columns are used.
Don't use negative indices.
A function with parameters X
(or obj.bed
), ind.row
and
ind.col
, and that returns a data.frame with $center
and $scale
for the
columns corresponding to ind.col
, to scale each of their elements such as followed:
$$\frac{X_{i,j} - center_j}{scale_j}.$$ Default uses binomial scaling.
You can also provide your own center
and scale
by using bigstatsr::as_scaling_fun()
.
Threshold over the squared correlation between two variants.
Default is 0.2
. Use NA
if you want to skip the clumping step.
For one SNP, window size around this SNP to compute correlations.
Default is 100 / thr.r2
for clumping (0.2 -> 500; 0.1 -> 1000; 0.5 -> 200).
If not providing infos.pos
(NULL
, the default), this is a window in
number of SNPs, otherwise it is a window in kb (genetic distance).
I recommend that you provide the positions if available.
Number of singular vectors/values to compute. Default is 10
.
This algorithm should be used to compute a few singular vectors/values.
Radius of rolling windows to smooth log-p-values.
Default is 50
.
Minimum number of consecutive outlier variants
in order to be reported as long-range LD region. Default is 20
.
Default is 0.1
. The type-I error rate in outlier
detection (that is further corrected for multiple testing).
Minimum minor allele count (MAC) for variants to be included.
Default is 10
. Can actually be higher because of min.maf
.
Minimum minor allele frequency (MAF) for variants to be included.
Default is 0.02
. Can actually be higher because of min.mac
.
Maximum number of iterations of outlier detection.
Default is 5
.
Deprecated.
Number of cores used. Default doesn't use parallelism.
You may use bigstatsr::nb_cores()
.
Output some information on the iterations? Default is TRUE
.
Object of type bed, which is the mapping of some bed file.
Use obj.bed <- bed(bedfile)
to get this object.
If you don't have any information about variants, you can try using
infos.chr = rep(1, ncol(G))
,
size = ncol(G)
(if variants are not sorted),
roll.size = 0
(if variants are not sorted).
ex <- snp_attachExtdata()
G <- ex$genotypes
obj.svd <- snp_autoSVD(G,
infos.chr = ex$map$chromosome,
infos.pos = ex$map$physical.position)
str(obj.svd)
Run the code above in your browser using DataLab