Skip to content

Commit

Permalink
Fix additional feedback from the PR
Browse files Browse the repository at this point in the history
  • Loading branch information
pverscha committed Apr 22, 2021
1 parent 6becc27 commit 406df22
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM mysql:5.7
LABEL maintainer="Pieter Verschaffelt <[email protected]>"

RUN mkdir -p /usr/share/man/man1
RUN apt-get update && apt-get install -y default-jdk git dos2unix maven make wget unzip expect gawk binutils gcc libssl-dev uuid-runtime pv
RUN apt-get update && apt-get install -y default-jdk git dos2unix maven make wget unzip expect gawk binutils gcc libssl-dev uuid-runtime pv nodejs

# Now, build curl from source to upgrade it to version 7.68.0 (instead of the default 7.52.0 in this image)
# This fixes https://github.com/curl/curl/issues/3750 which is present in older versions of curl
Expand Down
1 change: 1 addition & 0 deletions make-on-hpc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# Loading the required modules
module load Java
module load Maven
module load node

# Check the current directory
pushd "$PBS_O_WORKDIR"
Expand Down
4 changes: 2 additions & 2 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -478,9 +478,9 @@ database)
wait $pid1
wait $pid2
number_sequences
calculate_equalized_lcas &
calculate_equalized_lcas &
pid1=$!
calculate_original_lcas &
calculate_original_lcas &
pid2=$!
wait $pid1
wait $pid2
Expand Down

0 comments on commit 406df22

Please sign in to comment.