From d59aabd97ab367f92b31536ff5d23ab04a6892fd Mon Sep 17 00:00:00 2001 From: Alex Axthelm Date: Tue, 12 Mar 2024 18:51:44 +0100 Subject: [PATCH] `devtools::document()` --- NAMESPACE | 1 + man/export_manifest.Rd | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 man/export_manifest.Rd diff --git a/NAMESPACE b/NAMESPACE index 6ae92683..6a4bea56 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,2 +1,3 @@ # Generated by roxygen2: do not edit by hand +export(export_manifest) diff --git a/man/export_manifest.Rd b/man/export_manifest.Rd new file mode 100644 index 00000000..9a402f52 --- /dev/null +++ b/man/export_manifest.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/export_manifest.R +\name{export_manifest} +\alias{export_manifest} +\title{Export manifest file with metadata} +\usage{ +export_manifest(manifest_path, input_files, output_files) +} +\arguments{ +\item{manifest_path}{Path to the manifest file.} + +\item{input_files}{List of files that are inputs to the workflow.} + +\item{output_files}{List of files that are outputs from the workflow.} +} +\value{ +(invisible) JSON string with metadata manifest. +} +\description{ +Export manifest file with metadata +}