Skip to content

Commit

Permalink
empty functions
Browse files Browse the repository at this point in the history
  • Loading branch information
edward-burn committed Jun 22, 2024
1 parent 7dd67a6 commit ab61931
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 0 deletions.
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@

export("%>%")
export(phenotypeCohort)
export(reportPhenotype)
export(shinyPhenotype)
importFrom(magrittr,"%>%")
12 changes: 12 additions & 0 deletions R/reportPhenotype.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

#' Create a report summarising your phenotyping results
#'
#' @param result A summarised result
#'
#' @return A report
#' @export
#'
#' @examples
reportPhenotype <- function(result){

}
12 changes: 12 additions & 0 deletions R/shinyPhenotype.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

#' Create a shiny app summarising your phenotyping results
#'
#' @param result A summarised result
#'
#' @return A shiny app
#' @export
#'
#' @examples
shinyPhenotype <- function(result){

}
2 changes: 2 additions & 0 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ knitr::opts_chunk$set(

<!-- badges: start -->

> **This package is under development and not yet ready for use.**
[![R-CMD-check](https://github.com/oxford-pharmacoepi/phenotypeR/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/oxford-pharmacoepi/phenotypeR/actions/workflows/R-CMD-check.yaml)
[![Lifecycle:Experimental](https://img.shields.io/badge/Lifecycle-Experimental-339999)](https://lifecycle.r-lib.org/articles/stages.html#experimental)

Expand Down
17 changes: 17 additions & 0 deletions man/reportPhenotype.Rd

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

17 changes: 17 additions & 0 deletions man/shinyPhenotype.Rd

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

3 changes: 3 additions & 0 deletions tests/testthat/test-reportPhenotype.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test_that("multiplication works", {
expect_equal(2 * 2, 4)
})
3 changes: 3 additions & 0 deletions tests/testthat/test-shinyPhenotype.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
test_that("multiplication works", {
expect_equal(2 * 2, 4)
})

0 comments on commit ab61931

Please sign in to comment.