forked from transmart/transmartApp-Config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRModulesConfig.groovy
48 lines (42 loc) · 1.61 KB
/
RModulesConfig.groovy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/**
* This is the config file used by the RModules plugin
* @author SMunikuntla
*
*/
RModules
{
// plugin script directory
pluginScriptDirectory = "/your/tomcat/webapps/transmart/plugins/rdc-rmodules-0.3-SNAPSHOT/Rscripts/"
defaultStatusList = ["Started",
"Validating Cohort Information",
"Triggering Data-Export Job",
"Gathering Data",
"Running Conversions",
"Running Analysis",
"Rendering Output"]
/**
* Define a different statusList for each module if it varies from the defaultStatusList
* Make sure the moduleName is the jobType
*/
survivalAnalysis.StatusList = ["Started",
"Validating Cohort Information",
"Triggering Data-Export Job",
"Gathering Data",
"Running Conversions",
"Running Analysis",
"Rendering Output"]
//Configuration for plugins.
tempFolderDirectory = "/tmp/jobs/"
//I use this to do local development. It causes the analysis controller
transferImageFile = true
//This is the system path where we move the image file to so we can serve it.
temporaryImageFolder = "/your/tomcat/webapps/transmart/images/tempImages"
//This is the path that we use to render the image.
imageURL = "/transmart/images/tempImages/"
// whether or not to enable ftp
ftpFlag = "FALSE"
//Make sure there is groovy class with the name+'Definition'
//(For ex:BoxPlotDefinition) in the com.recomdata.transmart.rmodules
//Add new modules here, as module-registration will happen only if it is defined here
modules = ["SurvivalAnalysis", "BoxPlot", "ScatterPlot", "TableWithFisher","Heatmap"]
}