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
|
citHeader("To cite package 'RSC' in publications use:")
year <- sub("-.*", "", meta$Date)
note <- sprintf("R package version %s", meta$Version)
bibentry(bibtype="Manual",
title = "RSC: robust and sparse correlation matrix estimation",
author = c(person(given="Luca", family="Coraggio"),
person(given="Pietro", family="Coretto"),
person(given="Angela", family="Serra"),
person(given="Roberto", family="Tagliaferri")),
year = year,
note = note,
textVersion =
paste("Coraggio, L., Coretto, P., Serra, A. and Tagliaferri, R. (", year,").
RSC: robust and sparse correlation matrix estimation. ",
note, "url: https://CRAN.R-project.org/package=RSC",
sep='')
)
bibentry(bibtype="Article",
title = "Robust and sparse correlation matrix estimation for the analysis
of high-dimensional genomics data",
author = c(person(given="Angela", family="Serra"),
person(given="Pietro", family="Coretto"),
person(given="Michele", family="Fratello"),
person(given="Roberto", family="Tagliaferri")
),
year = 2018,
journal = "Bioinformatics",
volume = 34,
number = 4,
pages = "625--634",
doi = "10.1093/bioinformatics/btx642",
textVersion = "Serra, A., Coretto, P., Fratello, M., and Tagliaferri, R. (2018). Robust and sparse correlation matrix estimation for the analysis of high-dimensional genomics data. Bioinformatics, 34(4), 625-634."
)
|