-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDESCRIPTION
executable file
·28 lines (28 loc) · 1.5 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Package: SumTool
Title: Summary Statistics Analysis Tool
Version: 1.0.0
Date: 2020-10-01
Authors@R: c(
person("Lilin", "Yin", email = "[email protected]",
role = c("aut", "cre", "cph")),
person("Jian", "Zeng", email = "[email protected]",
role = c("aut", "cph")),
person("Jian", "Yang", email = "[email protected]",
role = c("aut", "cph"))
)
Maintainer: Lilin Yin <[email protected]>
Description: A tool for Summary data based analysis. It can do ld, ldscore computation, Zscore, Marginal effect imputation, summary data based SNP BLUP (SBLUP) solution, as well as LD regression for heritability and genetic correlation estimation. It featured with memory efficiency and parallel calculation. By the aid of package 'bigmemory', SumTool constructs memory-mapped files for genotype panel on disk instead of loading it all into Random Access Memory (RAM), which makes it possible to handle big data with limited computation resources. Additionally, all parallel processes are accelerated as fast as possible by OpenMP technology.
License: GPL (>= 2)
URL: https://github.com/YinLiLin/SumTool
BugReports: https://github.com/YinLiLin/SumTool/issues
Encoding: UTF-8
Imports: utils, stats, methods, Rcpp, bigmemory
Depends: R (>= 3.3.0)
LinkingTo: Rcpp, RcppArmadillo (>= 0.8.400.0.0), RcppProgress, BH, bigmemory
RoxygenNote: 7.1.1
Roxygen: list(markdown = TRUE)
SystemRequirements: C++11
NeedsCompilation: yes
Author: Lilin Yin [aut, cre, cph],
Jian Zeng [aut, cph],
Jian Yang [aut, cph]