Skip to content

Commit 56e04a0

Browse files
author
Robert Chu
committed
Fixes season error in example.
1 parent 5683ca6 commit 56e04a0

4 files changed

Lines changed: 8 additions & 14 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,5 @@ terraform.tfvars
127127

128128
# This is autogenerated during CD
129129
VERSION
130+
131+
.DS_Store

config.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"--threads",
1111
"8",
1212
"--season",
13-
"$SEASON"
13+
"winter",
14+
"--skipDownload",
15+
"TRUE"
1416
],
1517
"inputs": {
1618
"path_args": [
@@ -20,12 +22,7 @@
2022
"path_regex_match_group": 1
2123
}
2224
],
23-
"query_args": [
24-
{
25-
"env_var_name": "SEASON",
26-
"query_var_name": "season"
27-
}
28-
],
25+
"query_args": [],
2926
"body_args": []
3027
},
3128
"outputs": {

docker-compose.yaml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ services:
2121
- "CELERY_RESULT_BACKEND=redis://:${REDIS_PASSWORD}@redis:6379"
2222
ports:
2323
- 5000:5000
24-
volumes:
25-
- ./:/app
2624
worker:
2725
image: labflow/script-runner-example:latest
2826
build:
@@ -37,9 +35,6 @@ services:
3735
environment:
3836
- "CELERY_BROKER_URL=redis://:${REDIS_PASSWORD}@redis:6379"
3937
- "CELERY_RESULT_BACKEND=redis://:${REDIS_PASSWORD}@redis:6379"
40-
- "COMMAND_RUNDIR_BASE=/base-rundir"
41-
volumes:
42-
- ./:/app
4338
redis:
4439
image: redis:6-alpine
4540
command: redis-server --requirepass ${REDIS_PASSWORD}

docker/Dockerfile.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ RUN R --slave -e "BiocManager::install(c('savR', 'edgeR', 'qvalue', 'ShortRead',
5757
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5858
# swabseq-analysis script
5959
RUN git clone git://github.com/lab-grid/swabseq-analysis /app
60+
WORKDIR /app
61+
RUN git checkout 221990c0521b8896fb0cf0bc5668996989bb2ab6
6062

6163
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
6264
# Python Env
63-
WORKDIR /app
64-
6565
RUN pip3 install pandas
6666

6767
COPY . /script-runner

0 commit comments

Comments
 (0)