-
Notifications
You must be signed in to change notification settings - Fork 55
/
DESCRIPTION
60 lines (60 loc) · 2 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Package: vcfR
Title: Manipulate and Visualize VCF Data
Description: Facilitates easy manipulation of variant call format (VCF) data.
Functions are provided to rapidly read from and write to VCF files. Once
VCF data is read into R a parser function extracts matrices of data. This
information can then be used for quality control or other purposes. Additional
functions provide visualization of genomic data. Once processing is complete
data may be written to a VCF file (*.vcf.gz). It also may be converted into
other popular R objects (e.g., genlight, DNAbin). VcfR provides a link between
VCF data and familiar R software.
Version: 1.15.0
Authors@R: c(
person(c("Brian", "J."), "Knaus", role = c("cre", "aut"),
email = "[email protected]", comment = c(ORCID = "0000-0003-1665-4343")),
person(c("Niklaus", "J."), "Grunwald", role = "aut",
email = "[email protected]", comment = c(ORCID = "0000-0003-1656-7602")),
person(c("Eric", "C."), "Anderson", role = "ctb",
email = "[email protected]", comment = c(ORCID = "0000-0003-1326-0840")),
person(c("David", "J."), "Winter", role = "ctb",
email = "[email protected]"),
person(c("Zhian", "N."), "Kamvar", role = "ctb",
email = "[email protected]", comment = c(ORCID = "0000-0003-1458-7108")),
person(c("Javier", "F."), "Tabima", role = "ctb",
email = "[email protected]", comment = c(ORCID = "0000-0002-3603-2691"))
)
Maintainer: Brian J. Knaus <[email protected]>
URL: https://github.com/knausb/vcfR, https://knausb.github.io/vcfR_documentation/
Depends:
R (>= 3.0.1)
LinkingTo: Rcpp
Imports:
ape,
dplyr,
graphics,
grDevices,
magrittr,
memuse,
methods,
pinfsc50,
Rcpp,
stats,
stringr,
tibble,
utils,
vegan,
viridisLite
Suggests:
adegenet,
ggplot2,
knitr,
poppr,
reshape2,
rmarkdown,
scales,
testthat,
tidyr
VignetteBuilder: knitr
License: GPL-3
RoxygenNote: 7.2.3
Encoding: UTF-8