Skip to content

Commit

Permalink
minor text edits
Browse files Browse the repository at this point in the history
  • Loading branch information
grlloyd committed Jun 27, 2024
1 parent d29c876 commit 36c0820
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Changes in 1.11.1
Changes in 1.11.2
+ further vignette cache improvements

Changes in 1.11.1
Expand Down
20 changes: 10 additions & 10 deletions R/constants.R
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#' Output items
#'
#' A predefined list of mw_output_item objects. The items have been created to
#' mirror the Metabolomics Workbench API documentation output items as closely
#' mirror the Metabolomics Workbench API documentation output items as closely
#' as possible.
#' @examples
#' # list available output_items
#' names(output_item)
#'
#'
#' # get the output item 'summary'
#' output_item$summary
#'
#'
#' @rdname output_item
#' @include generics.R class_def.R parse_fcns.R
#'
Expand All @@ -19,31 +19,31 @@ output_item = list()
#' Input items
#'
#' A predefined list of mw_input_item objects. The items have been created to
#' mirror the Metabolomics Workbench API documentation input items as closely
#' mirror the Metabolomics Workbench API documentation input items as closely
#' as possible.
#' @examples
#' # list available input_items
#' names(input_item)
#'
#'
#' # get the input item 'study_id'
#' input_item$study_id
#'
#'
#' @rdname input_item
#' @export
input_item = list()

#' Contexts
#'
#' A predefined list of mw_context objects. The context have been created to
#' mirror the metabolomics workbench API documentation contexts as closely
#' mirror the metabolomics workbench API documentation contexts as closely
#' as possible.
#' @examples
#' # list available contexts
#' names(context)
#'
#'
#' # get the context 'study'
#' context$study
#'
#'
#' @rdname context
#' @export
context = list()
Expand All @@ -66,7 +66,7 @@ context$compound = mw_context(
input_items = c('regno','formula','inchi_key','lm_id','pubchem_cid',
'hmdb_id','kegg_id','chebi_id','metacyc_id','abbrev'),
output_items = c('all','classification','molfile','png','compound_exact')
)
)

context$refmet = mw_context(
name = 'refmet',
Expand Down
2 changes: 1 addition & 1 deletion man/context.Rd

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

2 changes: 1 addition & 1 deletion man/input_item.Rd

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

2 changes: 1 addition & 1 deletion man/output_item.Rd

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

0 comments on commit 36c0820

Please sign in to comment.