Skip to content

Commit

Permalink
Add the execution of exp design loading script to local DB population
Browse files Browse the repository at this point in the history
  • Loading branch information
ke4 committed Nov 8, 2023
1 parent fc8e641 commit 778ec3c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion docker/prepare-dev-environment/postgres/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ services:
cd /root/db-scxa/bin
export PATH=.:$${PATH}
export dbConnection=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:5432/${POSTGRES_DB}
for EXP_ID in ${EXP_IDS}
do
EXP_ID=$${EXP_ID} \
CONDENSED_SDRF_FILE=/atlas-data/exp/magetab/$${EXP_ID}/$${EXP_ID}.condensed-sdrf.tsv \
SDRF_FILE=/atlas-data/exp/magetab/$${EXP_ID}/$${EXP_ID}.sdrf.txt ./load_exp_design.sh
EXPRESSION_TYPE=aggregated_filtered_normalised_counts \
EXP_ID=$${EXP_ID} \
EXPERIMENT_MATRICES_PATH=/atlas-data/exp/magetab/$${EXP_ID} ./load_db_scxa_analytics.sh
Expand Down
4 changes: 2 additions & 2 deletions docker/prepare-dev-environment/solr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ RUN mkdir -p /root/bioentity-properties-jsonl

# Clone the necessary repositories
WORKDIR /root
RUN git clone --depth 1 https://github.com/ebi-gene-expression-group/index-bioentities.git
RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/index-bioentities.git
RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/atlas-web-bulk.git
RUN git clone --depth 1 https://github.com/ebi-gene-expression-group/index-scxa.git
RUN git clone --depth 1 --recurse-submodules https://github.com/ebi-gene-expression-group/index-scxa.git

ENTRYPOINT ["/bin/bash", "-c"]

0 comments on commit 778ec3c

Please sign in to comment.