Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
meerapatelmd committed Sep 26, 2020
0 parents commit 48018c2
Show file tree
Hide file tree
Showing 8 changed files with 991 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
^.*\.Rproj$
^\.Rproj\.user$
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
17 changes: 17 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Package: CallMeMaybe
Title: Make Calls to the UMLS REST API
Version: 0.0.0.9000
Authors@R:
person(given = "Meera",
family = "Patel, MD",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0002-3401-3948"))
Description: This package makes API calls to t
License: Apache License 2.0
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
Imports:
magrittr
512 changes: 512 additions & 0 deletions R/umls_api_call_functions.R

Large diffs are not rendered by default.

432 changes: 432 additions & 0 deletions R/umls_api_call_functions2.R

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions R/utils-pipe.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#' Pipe operator
#'
#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details.
#'
#' @name %>%
#' @rdname pipe
#' @keywords internal
#' @export
#' @importFrom magrittr %>%
#' @usage lhs \%>\% rhs
NULL
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CallMeMaybe Package
12 changes: 12 additions & 0 deletions man/hello.Rd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
\name{hello}
\alias{hello}
\title{Hello, World!}
\usage{
hello()
}
\description{
Prints 'Hello, world!'.
}
\examples{
hello()
}

0 comments on commit 48018c2

Please sign in to comment.