a b/DESCRIPTION
1
Package: deepG
2
Title: Deep Learning for Genome Sequence Data
3
Version: 0.3.1
4
Encoding: UTF-8
5
Authors@R: c(
6
       person(given = "Philipp",
7
              family = "Münch",
8
              role = "aut",
9
              email = "philipp.muench@helmholtz-hzi.de"),
10
       person(given = "René",
11
              family = "Mreches",
12
              role = c("aut"),
13
              email = "mr.francois@gmx.de"),
14
       person(given = "Martin",
15
              family = "Binder",
16
              role = c("aut", "cre"),
17
              email = "developer.mb706@mb706.com"),
18
       person(given = "Hüseyin Anil",
19
              family = "Gündüz",
20
              role = "aut",
21
              email = "anil.guenduez@stat.uni-muenchen.de"),
22
       person(given = "Xiao-Yin",
23
              family = "To",
24
              role = "aut",
25
              email = "x.to@stat.uni-muenchen.de"),        
26
       person(given = "Alice",
27
              family = "McHardy",
28
              role = "aut",
29
              email = "alice.mchardy@helmholtz-hzi.de")
30
     )
31
Description: Training and applying deep learning models to genome sequence data.
32
  Applications include data processing, model fitting, model evaluation, model optimization and inference.
33
  A few genome datasets for testing are provided, as is the possibility to extract deep representations.
34
License: LGPL (>= 3)
35
URL: https://github.com/GenomeNet/deepG,
36
    https://deepg.de/
37
BugReports: https://github.com/GenomeNet/deepG/issues
38
Roxygen: list(markdown = TRUE)
39
Depends:
40
    R (>= 3.5.0)
41
Imports:
42
    hdf5r,
43
    keras,
44
    tensorflow,
45
    reticulate,
46
    data.table,
47
    abind,
48
    stringr,
49
    purrr,
50
    magrittr,
51
    dplyr,
52
    ggplot2,
53
    yardstick,
54
    jpeg,
55
    png,
56
    microseq,
57
    checkmate,
58
    readr
59
NeedsCompilation: yes
60
RoxygenNote: 7.3.1
61
Suggests: 
62
    testthat,
63
    circlize,
64
    pROC,
65
    PRROC,
66
    ComplexHeatmap,
67
    knitr,
68
    rmarkdown,
69
    devtools,
70
    spelling
71
VignetteBuilder: 
72
    knitr
73
Language: en-US