Skip to content

Commit 6c454e3

Browse files
author
Ludovic Claude
committed
Update doc
1 parent 3383a0e commit 6c454e3

5 files changed

Lines changed: 35 additions & 31 deletions

File tree

r-ggparci/main.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#'
2-
#' This script generates the parallel coordinates vislualization and save it as svg file.
2+
#' This script generates the parallel coordinates visualization and save it as svg file.
33
#' The data are obtained from the local databases using a specific query.
44
#' This query will be the same for all nodes.
55
#'

r-heatmaply/.bumpversion.cfg

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.1.0
33
commit = True
44
tag = True
55
tag_name = r-heatmaply-{new_version}
@@ -8,3 +8,7 @@ serialize = {major}.{minor}.{patch}
88

99
[bumpversion:file:README.md]
1010

11+
[bumpversion:file:Dockerfile]
12+
search = hbpmip/r-heatmaply:{current_version}
13+
replace = hbpmip/r-heatmaply:{new_version}
14+

r-heatmaply/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ RUN chown -R compute:compute /src/ \
118118
LABEL eu.humanbrainproject.function=heatmaply \
119119
eu.humanbrainproject.function.location=node \
120120
eu.humanbrainproject.function.version=0.1 \
121-
eu.humanbrainproject.function.author="Shay Yaacoby, Tal Galili, Loduvic Claude" \
121+
eu.humanbrainproject.function.author="Shay Yaacoby, Tal Galili, Ludovic Claude" \
122122
eu.humanbrainproject.function.organisation="" \
123123
eu.humanbrainproject.function.date="" \
124124
org.label-schema.build-date=$BUILD_DATE \

r-heatmaply/README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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

3838
The goal of this project is to create a Docker image containing the full R environment capable of:
3939

4040
1. Read parameters from the environment and connect to a database
4141
2. Query the database and prepare the data
42-
3. Run the algorithm
42+
3. Run the algorithm
4343
4. Format the results into a format that can be easily shared. Here, svg or html.
4444
5. Save the results into the result database.
4545

r-heatmaply/main.R

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@
1414
#' - JOB_ID : ID of the job
1515
#' - NODE : Node used for the execution of the script
1616
#' - IN_DBI_DRIVER : Class name of the DBI driver for input data
17-
#' - IN_DBI_DBNAME : Database name for the database connection for input data
18-
#' - IN_DBI_HOST : Host name for the database connection for input data
19-
#' - IN_DBI_PORT : Port number for the database connection for input data
20-
#' - IN_DBI_PASSWORD : Password for the database connection for input data
21-
#' - IN_DBI_USER : User for the database connection for input data
22-
#' - OUT_DBI_DRIVER : Class name of the DBI driver for output data
23-
#' - OUT_DBI_DBNAME : Database name for the database connection for output data
24-
#' - OUT_DBI_HOST : Host name for the database connection for output data
25-
#' - OUT_DBI_PORT : Port number for the database connection for output data
26-
#' - OUT_DBI_USER : User for the database connection for output data
27-
#' - OUT_DBI_PASSWORD : Password for the database connection for output data
17+
#' - IN_DATABASE : Database name for the database connection for input data
18+
#' - IN_HOST : Host name for the database connection for input data
19+
#' - IN_PORT : Port number for the database connection for input data
20+
#' - IN_PASSWORD : Password for the database connection for input data
21+
#' - IN_USER : User for the database connection for input data
22+
#' - OUT_DBI_DRIVER : Class name of the DBI driver for output data
23+
#' - OUT_DATABASE : Database name for the database connection for output data
24+
#' - OUT_HOST : Host name for the database connection for output data
25+
#' - OUT_PORT : Port number for the database connection for output data
26+
#' - OUT_USER : User for the database connection for output data
27+
#' - OUT_PASSWORD : Password for the database connection for output data
2828

2929
library(rmipadaptor)
3030
library(heatmaply)

0 commit comments

Comments
 (0)