66
77``` sh
88
9- docker run --rm --env [list of environment variables] hbpmip/r-heatmaply:latest compute
9+ docker run --rm --env [list of environment variables] hbpmip/r-heatmaply:0.1.0 compute
1010
1111```
1212
@@ -17,29 +17,29 @@ where the environment variables are:
1717 - PARAM_variables : Ignored.
1818 - PARAM_covariables : The variables to be ploted in the heatmap (as string, comma seperated, eg : "a,b,c")
1919 - PARAM_ * : any other parameters to pass to the R function. See example in the docker-compose file.
20- * Execution context:
21- - JOB_ID : ID of the job
22- - NODE : Node used for the execution of the script
23- - IN_DBI_DRIVER : Class name of the DBI driver for input data
24- - IN_DBI_DBNAME : Database name for the database connection for input data
25- - IN_DBI_HOST : Host name for the database connection for input data
26- - IN_DBI_PORT : Port number for the database connection for input data
27- - IN_DBI_PASSWORD : Password for the database connection for input data
28- - IN_DBI_USER : User for the database connection for input data
29- - OUT_DBI_DRIVER : Class name of the DBI driver for output data
30- - OUT_DBI_DBNAME : Database name for the database connection for output data
31- - OUT_DBI_HOST : Host name for the database connection for output data
32- - OUT_DBI_PORT : Port number for the database connection for output data
33- - OUT_DBI_USER : User for the database connection for output data
34- - OUT_DBI_PASSWORD : Password for the database connection for output data
20+ * Execution context:
21+ - JOB_ID : ID of the job
22+ - NODE : Node used for the execution of the script
23+ - IN_DBI_DRIVER : Class name of the DBI driver for input data
24+ - IN_DATABASE : Database name for the database connection for input data
25+ - IN_HOST : Host name for the database connection for input data
26+ - IN_PORT : Port number for the database connection for input data
27+ - IN_PASSWORD : Password for the database connection for input data
28+ - IN_USER : User for the database connection for input data
29+ - OUT_DBI_DRIVER : Class name of the DBI driver for output data
30+ - OUT_DATABASE : Database name for the database connection for output data
31+ - OUT_HOST : Host name for the database connection for output data
32+ - OUT_PORT : Port number for the database connection for output data
33+ - OUT_USER : User for the database connection for output data
34+ - OUT_PASSWORD : Password for the database connection for output data
3535
3636## Development process
3737
3838The goal of this project is to create a Docker image containing the full R environment capable of:
3939
40401 . Read parameters from the environment and connect to a database
41412 . Query the database and prepare the data
42- 3 . Run the algorithm
42+ 3 . Run the algorithm
43434 . Format the results into a format that can be easily shared. Here, svg or html.
44445 . Save the results into the result database.
4545
0 commit comments