R/methodStep.R

Defines functions methodStep

Documented in methodStep

#' methodStep 
#'
#' methodStep 
#'
#'
#' @inheritParams common_attributes 
#' @param description Description of the methods employed in collecting or generating a data set or other resource or in quality control and assurance. See [description()]
#' @param citation Literature citation relating to the methods used. See [citation()]
#' @param protocol Protocol description relating to the methods used. See [protocol()]
#' @param instrumentation Instruments used for measurement and recording data. See [instrumentation()]
#' @param software Software used in the processing of data. See [software()]
#' @param dataSource A source of data used by this methodStep. See [dataSource()]
#'
#' @return a methodStep list object
#'
#' @export

 methodStep <- function(description = NULL,
 citation = NULL,
 protocol = NULL,
 instrumentation = NULL,
 software = NULL,
 subStep = NULL,
 dataSource = NULL){ 
Filter(Negate(is.null),
 list(
description = description,
citation = citation,
protocol = protocol,
instrumentation = instrumentation,
software = software,
subStep = subStep,
dataSource = dataSource))}
cboettig/build.eml documentation built on May 8, 2019, 8:57 p.m.