Skip to content

Commit

Permalink
Update Makevars based on RcppArmadillo.package.skeleton. Fix png file…
Browse files Browse the repository at this point in the history
… capitalization, ubuntu is case sensitive.
  • Loading branch information
mgaynor1 authored and mgaynor1 committed Feb 17, 2024
1 parent 107a0d6 commit 67e92aa
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docs/articles/DataPreparation.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ articles:
ModelOptions: ModelOptions.html
Outliers: Outliers.html
SimulateData: SimulateData.html
last_built: 2024-02-17T22:50Z
last_built: 2024-02-17T23:55Z
urls:
reference: http://mlgaynor.com/nQuack/reference
article: http://mlgaynor.com/nQuack/articles
Expand Down
2 changes: 1 addition & 1 deletion docs/search.json

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion src/Makevars
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
CXX_STD = CXX17

PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
5 changes: 4 additions & 1 deletion src/Makevars.win
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
CXX_STD = CXX17

PKG_CXXFLAGS = $(SHLIB_OPENMP_CXXFLAGS)
PKG_LIBS = $(SHLIB_OPENMP_CXXFLAGS) $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
5 changes: 3 additions & 2 deletions vignettes/DataPreparation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resource_files:
- man/figures/FancyDenoise88069-lowtrunc.png
- man/figures/DenoiseFancy88069-highertrunc.png
- man/figures/noTruncBclean.png
- man/figures/TruncBclean.png
- man/figures/TruncBClean.png
- man/figures/AllInThisTogether.png
---

Expand Down Expand Up @@ -303,9 +303,10 @@ This is a great alternative to allele truncation. Here is an example of the `Bcl
```{r echo=FALSE, out.width="125%", fig.align='center'}
knitr::include_graphics("../man/figures/noTruncBclean.png", dpi = 5000)
```

This method can also be applied after truncation to catch any extra peak:
```{r echo=FALSE, out.width="125%", fig.align='center'}
knitr::include_graphics("../man/figures/TruncBclean.png", dpi = 5000)
knitr::include_graphics("../man/figures/TruncBClean.png", dpi = 5000)
```


Expand Down

0 comments on commit 67e92aa

Please sign in to comment.