-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- generated '_pkgdown.yml' file and populated fields - performed some minor updates to vignettes & README to clean up formatting on pkgdown site - added `tibble` package to Suggests (for use in vignettes) - bumped version number
- Loading branch information
Showing
12 changed files
with
303 additions
and
52 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 |
---|---|---|
|
@@ -5,3 +5,7 @@ | |
^data-raw$ | ||
^README\.Rmd$ | ||
^LICENSE\.md$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^\.github$ |
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 @@ | ||
# Getting help with SomaScan.db | ||
|
||
Thanks for using SomaScan.db! | ||
|
||
Before filing an issue, there are a few places to explore | ||
and pieces to put together to make the process as smooth as possible. | ||
|
||
## Make a reprex | ||
|
||
If we can’t reproduce the bug, we can’t fix it! | ||
Start by making a minimal **repr**oducible **ex**ample using the [reprex](https://reprex.tidyverse.org/) package. | ||
If you haven't heard of or used `reprex` before, you're in for a treat! | ||
Seriously, `reprex` will make all of your R-question-asking endeavors easier | ||
(which is an excellent ROI for the five to ten minutes it'll take you to learn what it's all about). | ||
For additional `reprex` pointers, check out the [Get help!](https://www.tidyverse.org/help/). | ||
|
||
## Where to ask? | ||
|
||
Armed with your `reprex`, the next step is to figure out [where to ask](https://www.tidyverse.org/help/#where-to-ask). | ||
|
||
* If it's a `R` related question: start with [community.rstudio.com](https://community.rstudio.com/) | ||
and/or [StackOverflow](https://stackoverflow.com). There are more people there to answer questions. | ||
|
||
* If it's a bug with [SomaScan.db](https://github.com/SomaLogic/SomaScan.db/): you're | ||
in the right place; please [file an issue](https://github.com/SomaLogic/SomaScan.db/issues/new). | ||
|
||
* If you're not sure: let the community help you figure it out! | ||
If your problem _is_ a bug or a feature request, you can easily return | ||
[here](https://github.com/SomaLogic/SomaScan.db/issues/) and report it. | ||
|
||
* For _non_-coding related feedback or inquiries please reach out to <techsupport@somalogic.com>. | ||
|
||
Before opening a new issue, be sure to | ||
[search issues and pull requests](https://github.com/SomaLogic/SomaScan.db/issues/) | ||
to make sure the bug hasn't been reported and/or already fixed in the development version. | ||
By default, the search will be pre-populated with `is:issue is:open`. | ||
You can [edit the qualifiers](https://help.github.com/articles/searching-issues-and-pull-requests/), | ||
`is:pr`, `is:closed`, etc., as needed, e.g. you'd simply remove `is:open` to | ||
search _all_ issues in the repo, open or closed. | ||
|
||
## What happens next? | ||
|
||
We aim to respond to questions or simple bugs within 24 - 48h, particularly | ||
questions accompanied by a `reprex` can typically be addressed quickly. | ||
More complex bugs or feature requests can take longer, as they require a | ||
deeper discussion regarding the software development lifecycle of `SomaScan.db`. | ||
As mentioned above, you may always reach out to our Global Scientific Engagement | ||
team at <techsupport@somalogic.com> or for more general inquiries at <support@somalogic.com>. |
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,47 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
paths: | ||
- 'DESCRIPTION' | ||
- '_pkgdown.yml' | ||
- 'NEWS.md' | ||
- 'README.md' | ||
- 'vignettes/**' | ||
workflow_dispatch: | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: macOS-12 # macOS important Bootstrap/bslib themes | ||
|
||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- 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: Install package | ||
run: | | ||
R CMD INSTALL --use-vanilla . | ||
- name: Deploy to GitHub pages 🚀 | ||
run: | | ||
git config --local user.name "$GITHUB_ACTOR" | ||
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" | ||
Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' |
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 |
---|---|---|
|
@@ -10,3 +10,4 @@ | |
/doc/ | ||
/Meta/ | ||
.Rproj.user | ||
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
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 |
---|---|---|
@@ -0,0 +1,133 @@ | ||
url: https://somalogic.github.io/SomaScan.db | ||
|
||
development: | ||
mode: auto | ||
|
||
authors: | ||
Amanda Hiser: | ||
href: https://github.com/amanda-hi | ||
SomaLogic Operating Co., Inc.: | ||
href: http://www.somalogic.com | ||
footer: | ||
roles: [fnd] | ||
text: "was developed by the Bioinformatics Dept. at" | ||
sidebar: | ||
roles: [cre, fnd] | ||
before: "Special :pray: to:" | ||
after: ":dna:" | ||
before: "[SomaScan.db](https://github.com/SomaLogic/SomaScan.db/) is proudly brought to you by:" | ||
after: ":dna:" | ||
|
||
footer: | ||
structure: | ||
left: [package, developed_by] | ||
right: built_with | ||
components: | ||
logo: "<img src='inst/figures/logo.png' width='20'> " | ||
|
||
template: | ||
bootstrap: 5 | ||
package: tidytemplate | ||
bslib: | ||
primary: "#0054AD" | ||
border-radius: 0.5rem | ||
btn-border-radius: 0.25rem | ||
base_font: {google: "Roboto"} | ||
|
||
home: | ||
sidebar: | ||
structure: [links, help, oss, license, citation, authors, dev, toc] | ||
components: | ||
oss: | ||
title: Other Software | ||
text: > | ||
[SomaDataIO](https://somalogic.github.io/SomaDataIO/) <br /> | ||
[SomaPlotr](https://somalogic.github.io/SomaPlotr/) <br /> | ||
[Canopy](https://github.com/SomaLogic/Canopy/) <br /> | ||
[DataDelve Statistics](https://somalogic.com/datadelve-statistics/) | ||
help: | ||
title: Getting Help | ||
text: > | ||
[Ask a question](https://somalogic.github.io/SomaScan.db/SUPPORT.html) <br /> | ||
[Report a bug](https://github.com/SomaLogic/SomaScan.db/issues) | ||
links: | ||
- text: Learn more about SomaScan | ||
href: http://www.somalogic.com | ||
- text: Read SomaScan tech notes | ||
href: http://www.somalogic.com/tech-notes/ | ||
|
||
navbar: | ||
structure: | ||
left: [intro, reference, articles, news] | ||
right: [search, github] | ||
|
||
articles: | ||
- title: Getting Started | ||
navbar: ~ | ||
contents: | ||
- SomaScan-db | ||
|
||
- title: Example ADAT Workflow Using SomaScan.db | ||
navbar: ~ | ||
contents: | ||
- example_adat_workflow | ||
|
||
- title: Advanced Exploration of the SomaScan Menu | ||
navbar: ~ | ||
contents: | ||
- advanced_usage_examples | ||
|
||
reference: | ||
- title: Query the Database | ||
desc: > | ||
Methods for retrieving annotations from the SQLite database. | ||
contents: | ||
- keys | ||
- keytypes | ||
- columns | ||
- select | ||
- mapIds | ||
- SomaDb-class | ||
|
||
- title: Data Objects | ||
desc: > | ||
Objects provided with `SomaScan.db` | ||
contents: | ||
- SomaScan.db | ||
- somascan_menu | ||
|
||
- title: Mapping Objects | ||
desc: > | ||
Objects containing mappings between database keys (i.e. identifiers). | ||
contents: | ||
- SomaScanALIAS2PROBE | ||
- SomaScanENSEMBL | ||
- SomaScanENTREZID | ||
- SomaScanENZYME | ||
- SomaScanGENENAME | ||
- SomaScanGO | ||
- SomaScanMAP | ||
- SomaScanOMIM | ||
- SomaScanORGANISM | ||
- SomaScanPATH | ||
- SomaScanPMID | ||
- SomaScanREFSEQ | ||
- SomaScanSYMBOL | ||
- SomaTARGETFULLNAME | ||
- SomaScanUNIPROT | ||
|
||
- title: Helpers | ||
desc: > | ||
Miscellaneous functions for retrieving data or modifying query results. | ||
contents: | ||
- addTargetFullName | ||
|
||
- title: Accessor Functions | ||
desc: > | ||
Convenience functions for accessing the database. | ||
contents: | ||
- SomaScan_dbconn | ||
|
||
news: | ||
- one_page: true |
Oops, something went wrong.