Skip to content

Commit

Permalink
Merge pull request #115 from hubverse-org/to-hubverse
Browse files Browse the repository at this point in the history
update organization name to 'hubverse-org'
  • Loading branch information
annakrystalli authored Jun 19, 2024
2 parents 66b648d + 1f61d72 commit 53622c6
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Our procedures for contributing bigger changes, code in particular, generally fo

### Pull request process

* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("Infectious-Disease-Modeling-Hubs/hubEnsembles", fork = TRUE)`.
* Fork the package and clone onto your computer. If you haven't done this before, we recommend using `usethis::create_from_github("hubverse-org/hubEnsembles", fork = TRUE)`.

* Install all development dependencies with `devtools::install_dev_deps()`, and then make sure the package passes R CMD check by running `devtools::check()`.
If R CMD check doesn't pass cleanly, it's a good idea to ask for help before continuing.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-example-hub.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Checkout example-simple-forecast-hub
uses: actions/checkout@v3
with:
repository: 'Infectious-Disease-Modeling-Hubs/example-simple-forecast-hub'
repository: 'hubverse-org/example-simple-forecast-hub'
ref: 'main'
path: './inst/example-data/example-simple-forecast-hub'

Expand All @@ -35,6 +35,6 @@ jobs:
git add inst/example-data/example-simple-forecast-hub
git commit -m "Github Actions build update example-simple-forecast-hub: $GITHUB_RUN_NUMBER"
echo "Pushing files..."
git push https://${GITHUB_TOKEN}@github.com/Infectious-Disease-Modeling-Hubs/hubEnsembles.git HEAD:update_example_simple_forecast_hub
git push https://${GITHUB_TOKEN}@github.com/hubverse-org/hubEnsembles.git HEAD:update_example_simple_forecast_hub
echo "Submitting pull request..."
gh pr create --fill --base main --head update_example_simple_forecast_hub
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@
/Meta/
docs
.secrets
scrap code.r
hubEnsembles.code-workspace
.Rprofile
Rplot.png
18 changes: 9 additions & 9 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: hubEnsembles
Title: Ensemble methods for combining hub model outputs
Version: 0.1.2
Version: 0.1.3
Authors@R: c(
person(given = "Evan L",
family = "Ray",
Expand Down Expand Up @@ -40,9 +40,9 @@ Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
URL: https://github.com/Infectious-Disease-Modeling-Hubs/hubEnsembles,
https://infectious-disease-modeling-hubs.github.io/hubEnsembles/
BugReports: https://github.com/Infectious-Disease-Modeling-Hubs/hubEnsembles/issues
URL: https://github.com/hubverse-org/hubEnsembles,
https://hubverse-org.github.io/hubEnsembles/
BugReports: https://github.com/hubverse-org/hubEnsembles/issues
Imports:
cli,
distfromq (>= 1.0.2),
Expand All @@ -55,12 +55,12 @@ Imports:
tidyr,
tidyselect
Remotes:
Infectious-Disease-Modeling-Hubs/hubData,
Infectious-Disease-Modeling-Hubs/hubExamples,
Infectious-Disease-Modeling-Hubs/hubUtils,
Infectious-Disease-Modeling-Hubs/hubVis,
hubverse-org/hubData,
hubverse-org/hubExamples,
hubverse-org/hubUtils,
hubverse-org/hubVis,
reichlab/distfromq
Config/Needs/website: Infectious-Disease-Modeling-Hubs/hubStyle
Config/Needs/website: hubverse-org/hubStyle
Depends:
R (>= 2.10)
LazyData: true
6 changes: 3 additions & 3 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ knitr::opts_chunk$set(
<!-- badges: start -->
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[![CRAN status](https://www.r-pkg.org/badges/version/hubEnsembles)](https://CRAN.R-project.org/package=hubEnsembles)
[![R-CMD-check](https://github.com/Infectious-Disease-Modeling-Hubs/hubEnsembles/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/Infectious-Disease-Modeling-Hubs/hubEnsembles/actions/workflows/R-CMD-check.yaml)
[![R-CMD-check](https://github.com/hubverse-org/hubEnsembles/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/hubverse-org/hubEnsembles/actions/workflows/R-CMD-check.yaml)
<!-- badges: end -->

The goal of hubEnsembles is to provide standard implementations of commonly used methods for ensembling model outputs. The hubEnsembles package is part of [the hubverse project](https://hubdocs.readthedocs.io/en/latest/) and expects all input data to the key functions to be formatted as an object of a [`model_out_tbl` class](https://infectious-disease-modeling-hubs.github.io/hubUtils/reference/as_model_out_tbl.html).
The goal of hubEnsembles is to provide standard implementations of commonly used methods for ensembling model outputs. The hubEnsembles package is part of [the hubverse project](https://hubdocs.readthedocs.io/en/latest/) and expects all input data to the key functions to be formatted as an object of a [`model_out_tbl` class](https://hubverse-org.github.io/hubUtils/reference/as_model_out_tbl.html).

## Installation

You can install the development version of hubEnsembles using this code:

``` r
remotes::install_github("infectious-disease-modeling-hubs/hubEnsembles")
remotes::install_github("hubverse-org/hubEnsembles")
```


Expand Down
2 changes: 1 addition & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
url: https://infectious-disease-modeling-hubs.github.io/hubEnsembles/
url: https://hubverse-org.github.io/hubEnsembles/
template:
package: hubStyle

0 comments on commit 53622c6

Please sign in to comment.