Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit aa7447d

Browse files
authored
Merge pull request #32 from alexmccreight/master
fixed citations + wording
2 parents 48948e6 + f1acb5f commit aa7447d

File tree

2 files changed

+109
-26
lines changed

2 files changed

+109
-26
lines changed

README.md

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ should also be useful more generally.
1414

1515
The methods are based on a new model for sparse multiple regression,
1616
which we call the "Sum of Single Effects" (SuSiE) model. This model,
17-
which will be described in a manuscript in preparation (Wang et al),
18-
lends itself to a particularly simple and intuitive fitting procedure
19-
-- effectively a Bayesian modification of simple forward selection,
20-
which we call "Iterative Bayesian Step-wise Selection".
17+
which is described in [Wang et al. (2020)](https://doi.org/10.1111/rssb.12388), lends itself to a particularly simple and intuitive fitting
18+
procedure -- effectively a Bayesian modification of simple forward
19+
selection, which we call "Iterative Bayesian Step-wise Selection".
2120

2221
The output of the fitting procedure is a number of "Credible Sets"
2322
(CSs), which are each designed to have high probability to contain a
@@ -27,10 +26,12 @@ correlated" variables that are each associated with the response: you
2726
can be confident that one of the variables has a non-zero coefficient,
2827
but they are too correlated to be sure which one.
2928

30-
The package is developed by Gao Wang, Peter Carbonetto, Yuxin Zou,
31-
Kaiqian Zhang, and Matthew Stephens from the
29+
The package was initially developed by Gao Wang, Peter Carbonetto,
30+
Yuxin Zou, Kaiqian Zhang, and Matthew Stephens from the
3231
[Stephens Lab](https://stephenslab.uchicago.edu) at the University of
33-
Chicago.
32+
Chicago. It was later extended with new methods and implementations by
33+
Alexander McCreight from the [StatFunGen Lab](https://wanggroup.org/) at
34+
Columbia University.
3435

3536
Please
3637
[post issues](https://github.com/stephenslab/susieR/issues) to ask
@@ -61,21 +62,42 @@ please visit https://stephenslab.github.io/susieR
6162
## Citing this work
6263

6364
If you find the `susieR` package or any of the source code in this
64-
repository useful for your work, please cite:
65+
repository useful for your work, please cite both:
6566

66-
> G. Wang, G., Sarkar, A., Carbonetto, P. & Stephens, M. (2020). A
67+
> Wang, G., Sarkar, A., Carbonetto, P. & Stephens, M. (2020). A
6768
> simple new approach to variable selection in regression, with
6869
> application to genetic fine mapping. *Journal of the Royal
6970
> Statistical Society, Series B* **82**, 1273–1300.
7071
> https://doi.org/10.1111/rssb.12388
7172
72-
If you use any of the summary data methods such as `susie_suff_stat`
73-
or `susie_rss`, please also cite:
73+
> McCreight, A., Cho, Y., Nachun, D., Li, R., Gan, H-Y., Stephens,
74+
> M., Carbonetto, P., Denault, W.R.P. & Wang, G. (2025). SuSiE 2.0:
75+
> improved methods and implementations for genetic fine-mapping and
76+
> phenotype prediction. Submitting to *Genome Biology*.
77+
78+
If you use any of the summary data methods such as `susie_ss` or
79+
`susie_rss`, please also cite:
7480

7581
> Zou, Y., Carbonetto, P., Wang, G. & Stephens, M. (2022). Fine-mapping
7682
> from summary data with the "Sum of Single Effects" model. *PLoS
7783
> Genetics* **18**, e1010299. https://doi.org/10.1371/journal.pgen.1010299
7884
85+
If you use the Servin-Stephens prior on residual variance estimates
86+
(`estimate_residual_method = "Servin_Stephens"`), please also cite:
87+
88+
> Denault, W.R.P., Carbonetto, P., Li, R., Consortium, A.D.F.G., Wang,
89+
> G. & Stephens, M. (2025). Accounting for uncertainty in residual
90+
> variances improves calibration of the "Sum of Single Effects" model
91+
> for small sample sizes. *bioRxiv*, 2025-05. Under review for *Nature
92+
> Methods*.
93+
94+
If you use infinitesimal effects modeling (`unmappable_effects = "inf"`),
95+
please also cite:
96+
97+
> Cui, R., Elzur, R.A., Kanai, M. et al. (2024). Improving fine-mapping
98+
> by modeling infinitesimal effects. *Nature Genetics* **56**, 162–169.
99+
> https://doi.org/10.1038/s41588-023-01597-3
100+
79101
## Developer notes
80102

81103

inst/CITATION

Lines changed: 76 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,101 @@
1-
citHeader("To cite the susieR package, please use:")
1+
citHeader("To cite the susieR package, please use both:")
22

33
bibentry(bibtype = "Article",
44
title = paste("A simple new approach to variable selection in",
55
"regression, with application to genetic fine",
66
"mapping"),
77
author = c(person("Gao","Wang"),
88
person("Abhishek","Sarkar"),
9-
person("Peter","Carbonetto"),
9+
person("Peter","Carbonetto"),
1010
person("Matthew","Stephens")),
1111
journal = "Journal of the Royal Statistical Society, Series B",
1212
year = "2020",
1313
volume = "82",
1414
pages = "1273-1300",
15-
doi = "10.1101/501114",
16-
textVersion =
17-
paste("Gao Wang, Abhishek Sarkar, Peter Carbonetto and Matthew",
18-
"Stephens (2020). A simple new approach to variable",
19-
"selection in regression, with application to genetic",
20-
"fine mapping. Journal of the Royal Statistical Society,",
21-
"Series B, 82, 1273-1300, doi:10.1101/501114"))
15+
doi = "10.1111/rssb.12388",
16+
textVersion =
17+
paste("Wang, G., Sarkar, A., Carbonetto, P. & Stephens, M. (2020).",
18+
"A simple new approach to variable selection in regression,",
19+
"with application to genetic fine mapping. Journal of the",
20+
"Royal Statistical Society, Series B 82, 1273-1300.",
21+
"https://doi.org/10.1111/rssb.12388"))
22+
23+
bibentry(bibtype = "Article",
24+
title = paste("SuSiE 2.0: improved methods and implementations for",
25+
"genetic fine-mapping and phenotype prediction"),
26+
author = c(person("Alexander", "McCreight"),
27+
person("Yanghyeon", "Cho"),
28+
person("Daniel", "Nachun"),
29+
person("Ruixi", "Li"),
30+
person("Hao-Yu", "Gan"),
31+
person("Matthew", "Stephens"),
32+
person("Peter", "Carbonetto"),
33+
person("William", "R.P. Denault"),
34+
person("Gao", "Wang")),
35+
journal = "Submitting to Genome Biology",
36+
year = "2025",
37+
textVersion =
38+
paste("McCreight, A., Cho, Y., Nachun, D., Li, R., Gan, H-Y., Stephens,",
39+
"M., Carbonetto, P., Denault, W.R.P. & Wang, G. (2025). SuSiE 2.0:",
40+
"improved methods and implementations for genetic fine-mapping and",
41+
"phenotype prediction. Submitting to Genome Biology."))
2242

2343
bibentry(header = "If susie_suff_stat or susie_rss is used, please also cite:",
2444
bibtype = "Article",
2545
title = paste('Fine-mapping from summary data with the',
2646
'"Sum of Single Effects" model'),
2747
author = c(person("Yuxin","Zou"),
28-
person("Peter","Carbonetto"),
48+
person("Peter","Carbonetto"),
2949
person("Gao","Wang"),
3050
person("Matthew","Stephens")),
3151
journal = "PLoS Genetics",
3252
volume = "18",
3353
year = "2022",
3454
pages = "e1010299",
3555
doi = "10.1371/journal.pgen.1010299",
36-
textVersion =
37-
paste('Yuxin Zou, Peter Carbonetto, Gao Wang and Matthew Stephens',
38-
'(2022). Fine-mapping from summary data with the "Sum of',
39-
'Single Effects" model. PLoS Genetics 18, e1010299',
40-
'doi:10.1371/journal.pgen.1010299'))
56+
textVersion =
57+
paste('Zou, Y., Carbonetto, P., Wang, G. & Stephens, M. (2022).',
58+
'Fine-mapping from summary data with the "Sum of Single',
59+
'Effects" model. PLoS Genetics 18, e1010299.',
60+
'https://doi.org/10.1371/journal.pgen.1010299'))
61+
62+
bibentry(header = paste("If estimate_residual_method = 'Servin_Stephens' is used,",
63+
"please also cite:"),
64+
bibtype = "Article",
65+
title = paste("Accounting for uncertainty in residual variances",
66+
"improves calibration of the 'Sum of Single Effects'",
67+
"model for small sample sizes"),
68+
author = c(person("William", "R.P. Denault"),
69+
person("Peter", "Carbonetto"),
70+
person("Ruixi", "Li"),
71+
person("A.D.F.G.", "Consortium"),
72+
person("Gao", "Wang"),
73+
person("Matthew", "Stephens")),
74+
journal = "bioRxiv",
75+
year = "2025",
76+
note = "Under review for Nature Methods",
77+
textVersion =
78+
paste("Denault, W.R.P., Carbonetto, P., Li, R., Consortium, A.D.F.G.,",
79+
"Wang, G. & Stephens, M. (2025). Accounting for uncertainty in",
80+
"residual variances improves calibration of the 'Sum of Single",
81+
"Effects' model for small sample sizes. bioRxiv, 2025-05.",
82+
"Under review for Nature Methods."))
83+
84+
bibentry(header = paste("If unmappable_effects = 'inf' is used,",
85+
"please also cite:"),
86+
bibtype = "Article",
87+
title = "Improving fine-mapping by modeling infinitesimal effects",
88+
author = c(person("Rui", "Cui"),
89+
person("R.A.", "Elzur"),
90+
person("M.", "Kanai"),
91+
person(c("et", "al."))),
92+
journal = "Nature Genetics",
93+
volume = "56",
94+
year = "2024",
95+
pages = "162-169",
96+
doi = "10.1038/s41588-023-01597-3",
97+
textVersion =
98+
paste("Cui, R., Elzur, R.A., Kanai, M. et al. (2024).",
99+
"Improving fine-mapping by modeling infinitesimal effects.",
100+
"Nature Genetics 56, 162-169.",
101+
"https://doi.org/10.1038/s41588-023-01597-3"))

0 commit comments

Comments
 (0)