01/21/2020
This is my very first R package. The purpose of this package is to provide a framework of PHUSE script web application based on script metadata for sharing. See the paper Defining Script Metadata for Sharing: Using phuse R package as an example and presenation about this framework. Here is a list of people who work on this project.
It has the following tabs in the framework:
install.packages(“phuse”)
install.packages("devtools")
library(devtools)
install_github(”TuCai/phuse")
library(phuse)
start_app() # start with default settings
start_app(msg_lvl = 3) # start and display detailed message at level 3
start_app(n=7) # to start an application
It will try to conduct the following tasks: * Build a YML file index and stored the file to your local computer if you are the first time to start the interface or the local YML file is too old (older than 7 days) * Build a data frame to hold the information for all YML files * Write the data frame to the local file if there are new YML files added * Populate the “Select Script” dropdown list
After you install phuse package, you can start it as start_app(n=7) or access the published app at Creating TS Domain.
To view source code, you can go to the app 07 source.