-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Paper accepted in BMC Bioinformatics: version bump to 1.0.0, add cita…
…tion info, Github Actions for website
- Loading branch information
1 parent
ae2b10e
commit 80f403f
Showing
9 changed files
with
121 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
README.md | ||
^README\.md$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^\.github$ | ||
^CITATION\.cff$ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
*.html |
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples | ||
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
permissions: | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs |
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 |
---|---|---|
|
@@ -8,3 +8,4 @@ src/*.o | |
src/*.so | ||
src/*.dll | ||
inst/doc | ||
docs |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- family-names: Aslett | ||
given-names: L. J. M. | ||
orcid: "https://orcid.org/0000-0003-2211-233X" | ||
- family-names: Christ | ||
given-names: R. R. | ||
orcid: "https://orcid.org/0000-0002-2049-3389" | ||
title: "kalis: a modern implementation of the Li & Stephens model for local ancestry inference in R" | ||
version: 1.0.0 | ||
url: "https://github.com/louisaslett/kalis" | ||
preferred-citation: | ||
type: article | ||
title: "kalis: a modern implementation of the Li & Stephens model for local ancestry inference in R" | ||
authors: | ||
- family-names: "Aslett" | ||
given-names: "L. J. M." | ||
orcid: "https://orcid.org/0000-0003-2211-233X" | ||
- family-names: "Christ" | ||
given-names: "R. R." | ||
orcid: "https://orcid.org/0000-0002-2049-3389" | ||
journal: "BMC Bioinformatics" | ||
year: 2024 | ||
volume: 25 | ||
issue: 1 | ||
doi: "10.1186/s12859-024-05688-8" | ||
start: 1 | ||
end: 18 |
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,7 +1,7 @@ | ||
Package: kalis | ||
Type: Package | ||
Title: High Performance Li & Stephens Local Ancestry Inference | ||
Version: 0.92.0 | ||
Version: 1.0.0 | ||
Authors@R: c(person("Louis", "Aslett", role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
person("Ryan", "Christ", role = "aut", | ||
|
@@ -37,7 +37,7 @@ Imports: | |
RColorBrewer, | ||
lobstr, | ||
prettyunits | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
Roxygen: list(markdown = TRUE) | ||
Suggests: | ||
rhdf5, | ||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
bibentry( | ||
bibtype = "Article", | ||
title = "kalis: a modern implementation of the Li & Stephens model for local ancestry inference in R", | ||
author = c(person(c("Louis", "J.", "M."), "Aslett"), person(c("Ryan", "R."), "Christ")), | ||
journal = "BMC Bioinformatics", | ||
year = "2024", | ||
volume = "25", | ||
number = "1", | ||
pages = "1--18", | ||
doi = "10.1186/s12859-024-05688-8" | ||
) |