#' @title Shiny example module `Pipeline A`
#'
#' @description
#' This module contains the configuration informations for the corresponding pipeline.
#' It is called by the nav_pipeline module of the package Magellan.
#' This documentation is for developpers who want to create their own pipelines nor processes
#' to be managed with `Magellan`.
#'
#' @param id xxx
#'
#' @rdname example_mod_pipelineA
#'
#' @author Samuel Wieczorek
#'
#' @export
#'
mod_PipelineA_ui <- function(id){
ns <- NS(id)
}
#' @param id xxx
#'
#' @param dataIn The dataset
#'
#' @param steps.enabled A vector of boolean which has the same length of the steps
#' of the pipeline. This information is used to enable/disable the widgets. It is not
#' a communication variable between the caller and this module, thus there is no
#' corresponding output variable
#'
#'
#' @param remoteReset It is a remote command to reset the module. A boolean that
#' indicates is the pipeline has been reseted by a program of higher level
#' Basically, it is the program which has called this module
#'
#' @param steps.status xxx
#'
#' @param current.pos xxx
#'
#' @rdname example_mod_pipelineA
#'
#' @import shiny
#' @importFrom stats setNames
#'
#' @export
#'
mod_PipelineA_server <- function(id,
dataIn = reactive({NULL}),
steps.enabled = reactive({NULL}),
remoteReset = reactive({FALSE}),
steps.status = reactive({NULL}),
current.pos = reactive({1}),
verbose = FALSE
){
config <- list(
mode = 'pipeline',
# List of all steps of the process
# Here, each step is a workflow
steps = c('PipelineA_Description', 'Process1', 'Process2', 'Process3'),
# A vector of boolean indicating if the steps are mandatory or not.
mandatory = c(TRUE, FALSE, FALSE, TRUE),
path_to_md_dir = system.file('module_examples/md/', package='Magellan')
)
# Contrary to the simple workflow, there is no widget in this module
# because all the widgets are provided by the simple workflows.
widgets.default.values <- list()
###-------------------------------------------------------------###
### ###
### ------------------- MODULE SERVER --------------------------###
### ###
###-------------------------------------------------------------###
moduleServer(id, function(input, output, session) {
ns <- session$ns
eval(str2expression(Get_Worflow_Core_Code(
w.names = names(widgets.default.values)
)))
rv.custom <- reactiveValues()
# Insert necessary code which is hosted by Magellan
# DO NOT MODIFY THIS LINE
eval(parse(text = Module_Return_Func()))
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.