Skip to content

Commit

Permalink
docker setup upgraded to work with latest 'docker compose'; not limit…
Browse files Browse the repository at this point in the history
…ing to 1000 kmers for sacCer3
  • Loading branch information
vineetbansal committed Aug 24, 2024
1 parent f219674 commit 213334f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ services:
volumes:
- guidescan_postgres_data:/var/lib/postgresql/data
environment:
- GUIDESCAN_GUIDESCAN_DB=postgresql+psycopg2://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost/${POSTGRES_DB}
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
ports:
- "5433:5432"
healthcheck:
Expand All @@ -21,7 +23,7 @@ services:
condition: service_healthy
volumes:
- guidescan_data:/data
command: snakemake --use-conda --conda-frontend conda --cores 1 --config output_dir="/data" max_kmers=1000 organisms=[\"sacCer3\"] enzymes=[\"cas9\"]
command: snakemake --use-conda --conda-frontend conda --cores 1 --config output_dir="/data" organisms=[\"sacCer3\"] enzymes=[\"cas9\"]
environment:
- GUIDESCAN_GUIDESCAN_DB=postgresql+psycopg2://${POSTGRES_USER}:${POSTGRES_PASSWORD}@guidescan_db/${POSTGRES_DB}

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
Expand Down

0 comments on commit 213334f

Please sign in to comment.