forked from stephenslab/susieR
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added genlasso to Suggests; compressed data sets; other various impro…
…vements and revisions throughout.
- Loading branch information
Showing
16 changed files
with
43 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ Description: Implements methods for variable selection in linear | |
and fast, allowing the SuSiE model be fit to large data sets | ||
(thousands of samples and hundreds of thousands of variables). | ||
Date: 2020-06-30 | ||
Version: 0.9.5 | ||
Version: 0.9.6 | ||
Authors@R: c(person("Gao","Wang",role="aut",email="[email protected]"), | ||
person("Yuxin","Zou",role="aut"), | ||
person("Kaiqian","Zhang",role="aut"), | ||
|
@@ -40,7 +40,8 @@ Suggests: | |
microbenchmark, | ||
knitr, | ||
rmarkdown, | ||
L0Learn | ||
L0Learn, | ||
genlasso | ||
LazyData: true | ||
NeedsCompilation: no | ||
RoxygenNote: 7.1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ but they are too correlated to be sure which one. | |
|
||
The package is developed by Gao Wang, Peter Carbonetto, Yuxin Zou, | ||
Kaiqian Zhang, and Matthew Stephens from the | ||
[Stephens Lab](http://stephenslab.uchicago.edu/) at the University of | ||
[Stephens Lab](http://stephenslab.uchicago.edu) at the University of | ||
Chicago. | ||
|
||
This is very much work in progress. Please | ||
|
@@ -39,7 +39,7 @@ questions, get our support or provide us feedback; please | |
[send pull requests](https://github.com/stephenslab/susieR/pulls) if | ||
you have helped fixing bugs or making improvements to the source code. | ||
|
||
## Setup | ||
## Quick Start | ||
|
||
To automatically retrieve and install `susieR` from this repository, | ||
with the vignettes included, run: | ||
|
@@ -48,8 +48,6 @@ with the vignettes included, run: | |
devtools::install_github("stephenslab/[email protected]") | ||
``` | ||
|
||
## Quick Start | ||
|
||
See [here](https://stephenslab.github.io/susieR/articles/mwe.html) for | ||
a brief illustration of `susieR`. For more documentation and examples | ||
please visit https://stephenslab.github.io/susieR | ||
|
@@ -59,23 +57,15 @@ please visit https://stephenslab.github.io/susieR | |
If you find the `susieR` package or any of the source code in this | ||
repository useful for your work, please cite: | ||
|
||
> G Wang, A K Sarkar, P Carbonetto and M Stephens. A simple new approach to variable selection in regression, with application to genetic fine-mapping. | ||
> [bioRxiv](https://www.biorxiv.org/content/10.1101/501114v2) doi:10.1101/501114. | ||
> G Wang, A K Sarkar, P Carbonetto and M Stephens. [A simple new | ||
> approach to variable selection in regression, with application to | ||
> genetic fine-mapping.][susie-preprint] *bioRxiv* doi:10.1101/501114. | ||
## Developer notes | ||
|
||
+ When any changes are made to `roxygen2` markup, simply run | ||
`devtools::document()` to update package `NAMESPACE` | ||
and documentation files. | ||
|
||
+ To install and test the development version of susieR, run the | ||
following commands in the shell: | ||
|
||
```bash | ||
R CMD build --resave-data --no-build-vignettes susieR | ||
R CMD INSTALL susieR_0.9.0.tar.gz | ||
R CMD check --as-cran --ignore-vignettes susieR_0.9.0.tar.gz | ||
``` | ||
+ When any changes are made to `roxygen2` markup, run | ||
`devtools::document()` to update package `NAMESPACE` and documentation | ||
files. | ||
|
||
+ Run `pkgdown::build_site()` to build the website. Getting `pkgdown` | ||
to work properly can be frustrating due to numerous & fragile dependencies. | ||
|
@@ -87,3 +77,5 @@ docker run --rm --security-opt label:disable -t -P -w $PWD -v $PWD:$PWD \ | |
-u $UID:${GROUPS[0]} -e HOME=/home/$USER -e USER=$USER gaow/susie \ | ||
R --slave -e "pkgdown::build_site(lazy=TRUE, examples=FALSE)" | ||
``` | ||
|
||
[susie-preprint]: https://doi.org/10.1101/501114 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
to do | ||
===== | ||
|
||
+ Improve Description in DESCRIPTION. | ||
+ Update (and shorten) description in README. | ||
|
||
+ Fill out roxygen2 docs for N2finemapping data set. | ||
|
||
+ Fill out roxygen2 docs for N3finemapping data set. | ||
|
||
+ Update pkgdown site. | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.