Skip to content

Commit

Permalink
chore(prod): bind metadata.json file for nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Jan 9, 2024
1 parent c309cab commit 60008fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions epivar-prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ services:
- EPIVAR_IMPORT_MAX_P_VAL=0.05
- EPIVAR_LOW_COUNT_THRESHOLD=5
volumes:
# dataset configuration: about Markdown file and EpiVar config.js
# dataset configuration: about Markdown file, EpiVar config.js, tracks metadata.json
- node1/about.md:/app/data/about.md
- node1/config.js:/app/config.js:ro
- node1/metadata.json:/app/data/metadata.json:ro
# genotypes: VCF + index file
- /flu-infection-data/node1/allSamples.hc.vqsr.mil.snpId.snpeff.dbnsfp.vcf.gz:/app/data/genotypes.vcf.gz:ro
- /flu-infection-data/node1/allSamples.hc.vqsr.mil.snpId.snpeff.dbnsfp.vcf.gz.tbi:/app/data/genotypes.vcf.gz.tbi:ro
Expand Down Expand Up @@ -88,9 +89,10 @@ services:
- EPIVAR_IMPORT_MAX_P_VAL=0.05
- EPIVAR_LOW_COUNT_THRESHOLD=5
volumes:
# dataset configuration: about Markdown file and EpiVar config.js
# dataset configuration: about Markdown file, EpiVar config.js, tracks metadata.json
- node2/about.md:/app/data/about.md
- node2/config.js:/app/config.js:ro
- node2/metadata.json:/app/data/metadata.json:ro
# genotypes: VCF + index file
- /flu-infection-data/node2/allSamples.hc.vqsr.mil.snpId.snpeff.dbnsfp.vcf.gz:/app/data/genotypes.vcf.gz:ro
- /flu-infection-data/node2/allSamples.hc.vqsr.mil.snpId.snpeff.dbnsfp.vcf.gz.tbi:/app/data/genotypes.vcf.gz.tbi:ro
Expand Down
5 changes: 3 additions & 2 deletions example.docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ services:
- EPIVAR_IMPORT_MAX_P_VAL=0.05
- EPIVAR_LOW_COUNT_THRESHOLD=5
volumes:
# dataset configuration: about Markdown file and EpiVar config.js
# dataset configuration: about Markdown file, EpiVar config.js, tracks metadata.json
- /path/to/about.md:/app/data/about.md # about file
- /path/to/config.js:/app/config.js # dataset configuration file, see config.example.js
- /path/to/config.js:/app/config.js:ro # dataset configuration file, see config.example.js
- /path/to/metadata.json:/app/metadata.json:ro
# genotypes: VCF + index file
- /path/to/genotypes.vcf.gz:/app/data/genotypes.vcf.gz:ro
- /path/to/genotypes.vcf.gz.tbi:/app/data/genotypes.vcf.gz.tbi:ro
Expand Down

0 comments on commit 60008fe

Please sign in to comment.