Skip to content

Commit bfddbc4

Browse files
authored
Merge branch 'master' into issues/5143-workdir-and-jobstore-in-tmp-outdir-prefix
2 parents 38982e3 + 303a8d8 commit bfddbc4

15 files changed

+935
-271
lines changed

contrib/slurm-test/slurm_test.sh

+3-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,13 @@ docker cp -L sort.py ${LEADER}:/home/admin
1212
docker cp fileToSort.txt ${LEADER}:/home/admin
1313
docker cp toil_workflow.py ${LEADER}:/home/admin
1414
GIT_COMMIT=$(git rev-parse HEAD)
15-
docker exec ${LEADER} sudo apt install python3-pip -y
16-
docker exec ${LEADER} pip3 install "git+https://github.com/DataBiosphere/toil.git@${GIT_COMMIT}"
15+
docker exec ${LEADER} python3.9 -m pip install "git+https://github.com/DataBiosphere/toil.git@${GIT_COMMIT}"
1716
docker exec ${LEADER} sinfo -N -l
1817
# Test 1: A really basic workflow to check Slurm is working correctly
19-
docker exec ${LEADER} python3 /home/admin/toil_workflow.py file:my-job-store --batchSystem slurm --disableCaching --retryCount 0 --batchLogsDir ./nonexistent/paths
18+
docker exec ${LEADER} python3.9 /home/admin/toil_workflow.py file:my-job-store --batchSystem slurm --disableCaching --retryCount 0 --batchLogsDir ./nonexistent/paths
2019
docker cp ${LEADER}:/home/admin/output.txt output_Docker.txt
2120
# Test 2: Make sure that "sort" workflow runs under slurm
22-
docker exec ${LEADER} python3 /home/admin/sort.py file:my-job-store --batchSystem slurm --disableCaching --retryCount 0
21+
docker exec ${LEADER} python3.9 /home/admin/sort.py file:my-job-store --batchSystem slurm --disableCaching --retryCount 0
2322
docker cp ${LEADER}:/home/admin/sortedFile.txt sortedFile.txt
2423
docker compose stop
2524
./check_out.sh

docker/Dockerfile.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,12 @@ def heredoc(s):
110110
# Find a repo with a Mesos build.
111111
# This one was archived like:
112112
# mkdir mesos-repo && cd mesos-repo
113-
# wget --recursive --restrict-file-names=windows -k --convert-links --no-parent --page-requisites https://rpm.aventer.biz/Ubuntu/ https://www.aventer.biz/assets/support_aventer.asc https://rpm.aventer.biz/README.txt
113+
# wget --recursive --restrict-file-names=windows -k --convert-links --no-parent --page-requisites -m https://rpm.aventer.biz/Ubuntu/ https://www.aventer.biz/assets/support_aventer.asc https://rpm.aventer.biz/README.txt
114114
# ipfs add -r .
115-
RUN echo "deb https://public.gi.ucsc.edu/~anovak/outbox/toil/ipfs/QmeaErHzK4Dajz2mCMd36eUDQp7GX2bSECVRpGfrqdragR/rpm.aventer.biz/Ubuntu/focal focal main" \
115+
# It contains a GPG key that will expire 2026-09-28
116+
RUN echo "deb https://public.gi.ucsc.edu/~anovak/outbox/toil/ipfs/QmRXnGNiWk523zgNkuamENVkghMJ2zJtinVfgjHbc4Dcpr/rpm.aventer.biz/Ubuntu/focal focal main" \
116117
> /etc/apt/sources.list.d/mesos.list \
117-
&& curl https://public.gi.ucsc.edu/~anovak/outbox/toil/ipfs/QmeaErHzK4Dajz2mCMd36eUDQp7GX2bSECVRpGfrqdragR/www.aventer.biz/assets/support_aventer.asc | apt-key add -
118+
&& curl https://public.gi.ucsc.edu/~anovak/outbox/toil/ipfs/QmRXnGNiWk523zgNkuamENVkghMJ2zJtinVfgjHbc4Dcpr/www.aventer.biz/assets/support_aventer.asc | apt-key add -
118119
119120
RUN apt-get -y update --fix-missing && \
120121
DEBIAN_FRONTEND=noninteractive apt-get -y upgrade && \

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requests<=2.31.0
33
docker>=6.1.0, <8
44
urllib3>=1.26.0,<3
55
python-dateutil
6-
psutil >= 3.0.1, < 7
6+
psutil >= 6.1.0, < 7
77
PyPubSub >=4.0.3, <5
88
addict>=2.2.1, <2.5
99
backports.zoneinfo[tzdata];python_version<"3.9"

src/toil/common.py

+28-10
Original file line numberDiff line numberDiff line change
@@ -777,29 +777,47 @@ def check_arguments(typ: str) -> None:
777777

778778
# if cwl is set, format the namespace for cwl and check that wdl options are not set on the command line
779779
if cwl:
780-
parser.add_argument("cwltool", type=str, help="CWL file to run.")
781-
parser.add_argument(
782-
"cwljob",
783-
nargs="*",
784-
help="Input file or CWL options. If CWL workflow takes an input, "
785-
"the name of the input can be used as an option. "
786-
'For example: "%(prog)s workflow.cwl --file1 file". '
787-
"If an input has the same name as a Toil option, pass '--' before it.",
788-
)
780+
# So we can manually write out the help for this and the inputs
781+
# file/workflow options in the argument parser description, we suppress
782+
# help for this option.
783+
parser.add_argument("cwltool", metavar="WORKFLOW", type=str, help=SUPPRESS)
784+
# We also need a "cwljob" command line argument, holding possibly a
785+
# positional input file and possibly a whole string of option flags
786+
# only known to the workflow.
787+
#
788+
# We don't want to try and parse out the positional argument here
789+
# since, on Python 3.12, we can grab what's really supposed to be an
790+
# argument to a workflow-defined option.
791+
#
792+
# We don't want to use the undocumented argparse.REMAINDER, since that
793+
# will eat any Toil-defined option flags after the first positional
794+
# argument.
795+
#
796+
# So we just use parse_known_args and dump all unknown args into it,
797+
# and manually write help text in the argparse description. So don't
798+
# define it here.
789799
check_arguments(typ="cwl")
790800

791801
# if wdl is set, format the namespace for wdl and check that cwl options are not set on the command line
792802
if wdl:
793803
parser.add_argument("wdl_uri", type=str, help="WDL document URI")
804+
# We want to have an inputs_url that can be either a positional or a flag.
805+
# We can't just have them share a single-item dest in Python 3.12;
806+
# argparse does not guarantee that will work, and we can get the
807+
# positional default value clobbering the flag. See
808+
# <https://stackoverflow.com/a/60531838>.
809+
# So we make them accumulate to the same list.
810+
# Note that we will get a None in the list when there's no positional inputs.
794811
parser.add_argument(
795-
"inputs_uri", type=str, nargs="?", help="WDL input JSON URI"
812+
"inputs_uri", type=str, nargs='?', action="append", help="WDL input JSON URI"
796813
)
797814
parser.add_argument(
798815
"--input",
799816
"--inputs",
800817
"-i",
801818
dest="inputs_uri",
802819
type=str,
820+
action="append",
803821
help="WDL input JSON URI",
804822
)
805823
check_arguments(typ="wdl")

0 commit comments

Comments
 (0)