toil 8.0.0__tar.gz → 8.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (605) hide show
  1. toil-8.2.0/.git-blame-ignore-revs +8 -0
  2. toil-8.2.0/.github/PULL_REQUEST_TEMPLATE.md +37 -0
  3. toil-8.2.0/.github/dependabot.yml +23 -0
  4. toil-8.2.0/.github/workflows/codeql-analysis.yml +71 -0
  5. toil-8.2.0/.gitignore +26 -0
  6. toil-8.2.0/.gitlab-ci.yml +794 -0
  7. toil-8.2.0/.readthedocs.yaml +25 -0
  8. toil-8.2.0/CODE_OF_CONDUCT.md +46 -0
  9. toil-8.2.0/CONTRIBUTING.md +6 -0
  10. toil-8.2.0/MANIFEST.in +10 -0
  11. toil-8.2.0/Makefile +389 -0
  12. {toil-8.0.0 → toil-8.2.0}/PKG-INFO +13 -7
  13. {toil-8.0.0 → toil-8.2.0}/README.rst +4 -0
  14. toil-8.2.0/ROADMAP.md +37 -0
  15. toil-8.2.0/attic/README.md +407 -0
  16. toil-8.2.0/attic/absolute_imports.py +118 -0
  17. toil-8.2.0/attic/jobTreeSlides.pdf +0 -0
  18. toil-8.2.0/attic/toil-sort-example.py +173 -0
  19. toil-8.2.0/common.mk +83 -0
  20. toil-8.2.0/contrib/admin/buildkit-deployment.yml +127 -0
  21. toil-8.2.0/contrib/admin/cleanup_aws_resources.py +330 -0
  22. toil-8.2.0/contrib/admin/mypy-with-ignore.py +137 -0
  23. toil-8.2.0/contrib/admin/remove_trailing_whitespace.py +74 -0
  24. toil-8.2.0/contrib/admin/test-pr +26 -0
  25. toil-8.2.0/contrib/admin/wheel-of-issues +43 -0
  26. toil-8.2.0/contrib/assets/toil-slug-logo-wordmark-2022.svg +283 -0
  27. toil-8.2.0/contrib/hooks/lib.py +177 -0
  28. toil-8.2.0/contrib/hooks/mypy-after-commit.py +35 -0
  29. toil-8.2.0/contrib/hooks/mypy-before-push.py +87 -0
  30. toil-8.2.0/contrib/mypy-stubs/configargparse/__init__.pyi +5 -0
  31. toil-8.2.0/contrib/mypy-stubs/configargparse/configargparse.pyi +34 -0
  32. toil-8.2.0/contrib/mypy-stubs/dill/__init__.pyi +4 -0
  33. toil-8.2.0/contrib/mypy-stubs/dill/_dill.pyi +83 -0
  34. toil-8.2.0/contrib/mypy-stubs/pubsub/__init__.pyi +4 -0
  35. toil-8.2.0/contrib/mypy-stubs/pubsub/core/__init__.pyi +23 -0
  36. toil-8.2.0/contrib/mypy-stubs/pubsub/core/annotations.pyi +3 -0
  37. toil-8.2.0/contrib/mypy-stubs/pubsub/core/callables.pyi +34 -0
  38. toil-8.2.0/contrib/mypy-stubs/pubsub/core/listener.pyi +50 -0
  39. toil-8.2.0/contrib/mypy-stubs/pubsub/core/notificationmgr.pyi +45 -0
  40. toil-8.2.0/contrib/mypy-stubs/pubsub/core/publisher.pyi +32 -0
  41. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicargspec.pyi +73 -0
  42. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicdefnprovider.pyi +97 -0
  43. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicexc.pyi +26 -0
  44. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicmgr.pyi +53 -0
  45. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicobj.pyi +75 -0
  46. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topictreetraverser.pyi +15 -0
  47. toil-8.2.0/contrib/mypy-stubs/pubsub/core/topicutils.pyi +15 -0
  48. toil-8.2.0/contrib/mypy-stubs/pubsub/core/weakmethod.pyi +9 -0
  49. toil-8.2.0/contrib/mypy-stubs/pubsub/pub.pyi +43 -0
  50. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/__init__.pyi +7 -0
  51. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/exchandling.pyi +20 -0
  52. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/misc.pyi +5 -0
  53. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/notification.pyi +63 -0
  54. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/topictreeprinter.pyi +24 -0
  55. toil-8.2.0/contrib/mypy-stubs/pubsub/utils/xmltopicdefnprovider.pyi +27 -0
  56. toil-8.2.0/contrib/mypy-stubs/tes/client.pyi +41 -0
  57. toil-8.2.0/contrib/mypy-stubs/tes/models.pyi +191 -0
  58. toil-8.2.0/contrib/pod-murder-bot/murder.yaml +34 -0
  59. toil-8.2.0/contrib/pod-murder-bot/podKiller.sh +26 -0
  60. toil-8.2.0/contrib/slurm-test/check_out.sh +17 -0
  61. toil-8.2.0/contrib/slurm-test/docker-compose.yml +71 -0
  62. toil-8.2.0/contrib/slurm-test/expected_out_basic.txt +1 -0
  63. toil-8.2.0/contrib/slurm-test/expected_out_sort.txt +1000 -0
  64. toil-8.2.0/contrib/slurm-test/fileToSort.txt +1000 -0
  65. toil-8.2.0/contrib/slurm-test/slurm.conf +151 -0
  66. toil-8.2.0/contrib/slurm-test/slurm_test.sh +26 -0
  67. {toil-8.0.0/src/toil/test/sort → toil-8.2.0/contrib/slurm-test}/sort.py +4 -1
  68. toil-8.2.0/contrib/slurm-test/toil_workflow.py +16 -0
  69. toil-8.2.0/contrib/toil-ci-prebake/Dockerfile +48 -0
  70. toil-8.2.0/contrib/toil-cwl-runner/README.rst +2 -0
  71. toil-8.2.0/contrib/toil-cwl-runner/pyproject.toml +6 -0
  72. toil-8.2.0/contrib/toil-cwl-runner/setup.cfg +17 -0
  73. toil-8.2.0/dashboard/grafana/Dockerfile +8 -0
  74. toil-8.2.0/dashboard/grafana/toil_dashboard.json +592 -0
  75. toil-8.2.0/dashboard/mtail/Dockerfile +7 -0
  76. toil-8.2.0/dashboard/mtail/toil.mtail +41 -0
  77. toil-8.2.0/dashboard/prometheus/Dockerfile +8 -0
  78. toil-8.2.0/dashboard/prometheus/prometheus.yml +46 -0
  79. toil-8.2.0/dashboard/prometheus/run.sh +9 -0
  80. toil-8.2.0/docker/Dockerfile.py +237 -0
  81. toil-8.2.0/docker/customDockerInit.sh +16 -0
  82. toil-8.2.0/docker/extra-debs.tsv +5 -0
  83. toil-8.2.0/docker/singularity-wrapper.sh +96 -0
  84. toil-8.2.0/docker/waitForKey.sh +2 -0
  85. toil-8.2.0/docs/Makefile +24 -0
  86. toil-8.2.0/docs/_static/favicon.ico +0 -0
  87. toil-8.2.0/docs/_static/logo.jpeg +0 -0
  88. toil-8.2.0/docs/_static/shortcut.png +0 -0
  89. toil-8.2.0/docs/appendices/architecture.rst +296 -0
  90. toil-8.2.0/docs/appendices/aws_min_permissions.rst +27 -0
  91. toil-8.2.0/docs/appendices/caching_benefits.png +0 -0
  92. toil-8.2.0/docs/appendices/deploy.rst +201 -0
  93. toil-8.2.0/docs/appendices/environment_vars.rst +289 -0
  94. toil-8.2.0/docs/appendices/toil_architecture.png +0 -0
  95. toil-8.2.0/docs/conf.py +229 -0
  96. toil-8.2.0/docs/contributing/checklists.rst +52 -0
  97. toil-8.2.0/docs/contributing/contributing.rst +633 -0
  98. toil-8.2.0/docs/cwl/conformance.rst +99 -0
  99. toil-8.2.0/docs/cwl/introduction.rst +10 -0
  100. toil-8.2.0/docs/cwl/running.rst +202 -0
  101. toil-8.2.0/docs/gettingStarted/googleScreenShot.png +0 -0
  102. toil-8.2.0/docs/gettingStarted/googleScreenShot2.png +0 -0
  103. toil-8.2.0/docs/gettingStarted/install.rst +249 -0
  104. toil-8.2.0/docs/gettingStarted/quickStart.rst +638 -0
  105. toil-8.2.0/docs/index.rst +94 -0
  106. toil-8.2.0/docs/python/developing.rst +658 -0
  107. toil-8.2.0/docs/python/toilAPI.rst +10 -0
  108. toil-8.2.0/docs/python/toilAPIBatchsystem.rst +48 -0
  109. toil-8.2.0/docs/python/toilAPIExceptions.rst +35 -0
  110. toil-8.2.0/docs/python/toilAPIFilestore.rst +14 -0
  111. toil-8.2.0/docs/python/toilAPIJobFunctions.rst +42 -0
  112. toil-8.2.0/docs/python/toilAPIJobstore.rst +12 -0
  113. toil-8.2.0/docs/python/toilAPIMethods.rst +20 -0
  114. toil-8.2.0/docs/python/toilAPIRunner.rst +10 -0
  115. toil-8.2.0/docs/python/toilAPIService.rst +10 -0
  116. toil-8.2.0/docs/running/cliOptions.rst +677 -0
  117. toil-8.2.0/docs/running/cloud/amazon.rst +554 -0
  118. toil-8.2.0/docs/running/cloud/amazonaddkeypair.png +0 -0
  119. toil-8.2.0/docs/running/cloud/cloud.rst +69 -0
  120. toil-8.2.0/docs/running/cloud/clusterUtils.rst +213 -0
  121. toil-8.2.0/docs/running/cloud/dashboard_screenshot.png +0 -0
  122. toil-8.2.0/docs/running/cloud/gce.rst +109 -0
  123. toil-8.2.0/docs/running/cloud/googleScreenShot.png +0 -0
  124. toil-8.2.0/docs/running/cloud/googleScreenShot2.png +0 -0
  125. toil-8.2.0/docs/running/cloud/kubernetes.rst +418 -0
  126. toil-8.2.0/docs/running/debugging.rst +404 -0
  127. toil-8.2.0/docs/running/hpcEnvironments.rst +81 -0
  128. toil-8.2.0/docs/running/introduction.rst +73 -0
  129. toil-8.2.0/docs/running/server/docker-compose.yml +47 -0
  130. toil-8.2.0/docs/running/server/wes.rst +403 -0
  131. toil-8.2.0/docs/running/utils.rst +279 -0
  132. toil-8.2.0/docs/vendor/sphinxcontrib/__init__.py +10 -0
  133. toil-8.2.0/docs/vendor/sphinxcontrib/fulltoc.py +93 -0
  134. toil-8.2.0/docs/wdl/conformance.rst +53 -0
  135. toil-8.2.0/docs/wdl/developing.rst +138 -0
  136. toil-8.2.0/docs/wdl/introduction.rst +18 -0
  137. toil-8.2.0/docs/wdl/running.rst +126 -0
  138. toil-8.2.0/docs/wdl/tutorial.rst +509 -0
  139. toil-8.2.0/pyproject.toml +3 -0
  140. {toil-8.0.0 → toil-8.2.0}/requirements-dev.txt +3 -2
  141. {toil-8.0.0 → toil-8.2.0}/requirements-server.txt +2 -2
  142. {toil-8.0.0 → toil-8.2.0}/requirements.txt +2 -1
  143. {toil-8.0.0 → toil-8.2.0}/setup.cfg +6 -6
  144. {toil-8.0.0 → toil-8.2.0}/setup.py +8 -3
  145. toil-8.2.0/setup_gitlab_docker.py +38 -0
  146. toil-8.2.0/setup_gitlab_ssh.py +38 -0
  147. {toil-8.0.0 → toil-8.2.0}/src/toil/__init__.py +4 -39
  148. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/abstractBatchSystem.py +1 -1
  149. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/abstractGridEngineBatchSystem.py +1 -1
  150. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/awsBatch.py +1 -1
  151. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/cleanup_support.py +1 -1
  152. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/kubernetes.py +53 -7
  153. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/local_support.py +1 -1
  154. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/batchSystem.py +13 -8
  155. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/test/__init__.py +3 -2
  156. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/options.py +1 -0
  157. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/singleMachine.py +1 -1
  158. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/slurm.py +229 -84
  159. {toil-8.0.0 → toil-8.2.0}/src/toil/bus.py +5 -3
  160. {toil-8.0.0 → toil-8.2.0}/src/toil/common.py +198 -54
  161. {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/cwltoil.py +32 -11
  162. {toil-8.0.0 → toil-8.2.0}/src/toil/job.py +110 -86
  163. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/abstractJobStore.py +24 -3
  164. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/aws/jobStore.py +46 -10
  165. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/fileJobStore.py +25 -1
  166. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/googleJobStore.py +104 -30
  167. {toil-8.0.0 → toil-8.2.0}/src/toil/leader.py +9 -0
  168. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/accelerators.py +3 -1
  169. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/session.py +14 -3
  170. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/utils.py +92 -35
  171. toil-8.2.0/src/toil/lib/aws/utils.py.orig +504 -0
  172. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/bioio.py +1 -1
  173. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/docker.py +252 -91
  174. toil-8.2.0/src/toil/lib/dockstore.py +387 -0
  175. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ec2nodes.py +3 -2
  176. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/exceptions.py +5 -3
  177. toil-8.2.0/src/toil/lib/history.py +1345 -0
  178. toil-8.2.0/src/toil/lib/history_submission.py +695 -0
  179. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/io.py +56 -23
  180. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/misc.py +25 -1
  181. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/resources.py +2 -1
  182. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/retry.py +10 -10
  183. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/threading.py +11 -10
  184. toil-8.0.0/src/toil/lib/integration.py → toil-8.2.0/src/toil/lib/trs.py +95 -46
  185. toil-8.2.0/src/toil/lib/web.py +38 -0
  186. {toil-8.0.0 → toil-8.2.0}/src/toil/options/common.py +25 -2
  187. {toil-8.0.0 → toil-8.2.0}/src/toil/options/cwl.py +10 -0
  188. {toil-8.0.0 → toil-8.2.0}/src/toil/options/wdl.py +11 -0
  189. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/gceProvisioner.py +4 -4
  190. toil-8.2.0/src/toil/server/api_spec/LICENSE +201 -0
  191. toil-8.2.0/src/toil/server/api_spec/README.rst +5 -0
  192. {toil-8.0.0 → toil-8.2.0}/src/toil/server/cli/wes_cwl_runner.py +5 -4
  193. {toil-8.0.0 → toil-8.2.0}/src/toil/server/utils.py +2 -3
  194. {toil-8.0.0 → toil-8.2.0}/src/toil/statsAndLogging.py +35 -1
  195. {toil-8.0.0 → toil-8.2.0}/src/toil/test/__init__.py +275 -115
  196. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/batchSystemTest.py +227 -205
  197. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_slurm.py +199 -2
  198. toil-8.2.0/src/toil/test/cactus/pestis.tar.gz +0 -0
  199. toil-8.2.0/src/toil/test/conftest.py +7 -0
  200. toil-8.2.0/src/toil/test/cwl/2.fasta +11 -0
  201. toil-8.2.0/src/toil/test/cwl/2.fastq +12 -0
  202. toil-8.2.0/src/toil/test/cwl/conftest.py +56 -0
  203. toil-8.2.0/src/toil/test/cwl/cwlTest.py +2051 -0
  204. toil-8.2.0/src/toil/test/cwl/directory/directory/file.txt +15 -0
  205. toil-8.2.0/src/toil/test/cwl/download_directory_file.json +4 -0
  206. toil-8.2.0/src/toil/test/cwl/download_directory_s3.json +4 -0
  207. toil-8.2.0/src/toil/test/cwl/download_file.json +6 -0
  208. toil-8.2.0/src/toil/test/cwl/download_http.json +6 -0
  209. toil-8.2.0/src/toil/test/cwl/download_https.json +6 -0
  210. toil-8.2.0/src/toil/test/cwl/download_s3.json +6 -0
  211. toil-8.2.0/src/toil/test/cwl/download_subdirectory_file.json +5 -0
  212. toil-8.2.0/src/toil/test/cwl/download_subdirectory_s3.json +5 -0
  213. toil-8.2.0/src/toil/test/cwl/empty.json +1 -0
  214. toil-8.2.0/src/toil/test/cwl/mock_mpi/fake_mpi.yml +8 -0
  215. toil-8.2.0/src/toil/test/cwl/mock_mpi/fake_mpi_run.py +42 -0
  216. toil-8.2.0/src/toil/test/cwl/optional-file-exists.json +6 -0
  217. toil-8.2.0/src/toil/test/cwl/optional-file-missing.json +6 -0
  218. toil-8.2.0/src/toil/test/cwl/optional-file.cwl +18 -0
  219. toil-8.2.0/src/toil/test/cwl/preemptible_expression.json +1 -0
  220. toil-8.2.0/src/toil/test/cwl/revsort-job-missing.json +6 -0
  221. toil-8.2.0/src/toil/test/cwl/revsort-job.json +6 -0
  222. toil-8.2.0/src/toil/test/cwl/s3_secondary_file.json +16 -0
  223. toil-8.2.0/src/toil/test/cwl/seqtk_seq_job.json +6 -0
  224. toil-8.2.0/src/toil/test/cwl/stream.json +6 -0
  225. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2_TSM0 +0 -0
  226. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3 +0 -0
  227. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f3_TSM0 +0 -0
  228. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4 +0 -0
  229. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f4_TSM0 +0 -0
  230. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f5 +0 -0
  231. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.info +0 -0
  232. toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.lock +0 -0
  233. toil-8.2.0/src/toil/test/cwl/whale.txt +16 -0
  234. toil-8.2.0/src/toil/test/docs/__init__.py +0 -0
  235. toil-8.2.0/src/toil/test/docs/scripts/example_alwaysfail.py +38 -0
  236. toil-8.2.0/src/toil/test/docs/scripts/example_alwaysfail_with_files.wdl +33 -0
  237. toil-8.2.0/src/toil/test/docs/scripts/example_cachingbenchmark.py +117 -0
  238. toil-8.2.0/src/toil/test/docs/scripts/stagingExampleFiles/in.txt +1 -0
  239. toil-8.2.0/src/toil/test/docs/scripts/stagingExampleFiles/out.txt +2 -0
  240. toil-8.2.0/src/toil/test/docs/scripts/tutorial_arguments.py +23 -0
  241. toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging.patch +12 -0
  242. toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging_hangs.wdl +126 -0
  243. toil-8.2.0/src/toil/test/docs/scripts/tutorial_debugging_works.wdl +129 -0
  244. toil-8.2.0/src/toil/test/docs/scripts/tutorial_docker.py +20 -0
  245. toil-8.2.0/src/toil/test/docs/scripts/tutorial_dynamic.py +24 -0
  246. toil-8.2.0/src/toil/test/docs/scripts/tutorial_encapsulation.py +28 -0
  247. toil-8.2.0/src/toil/test/docs/scripts/tutorial_encapsulation2.py +29 -0
  248. toil-8.2.0/src/toil/test/docs/scripts/tutorial_helloworld.py +15 -0
  249. toil-8.2.0/src/toil/test/docs/scripts/tutorial_invokeworkflow.py +27 -0
  250. toil-8.2.0/src/toil/test/docs/scripts/tutorial_invokeworkflow2.py +30 -0
  251. toil-8.2.0/src/toil/test/docs/scripts/tutorial_jobfunctions.py +22 -0
  252. toil-8.2.0/src/toil/test/docs/scripts/tutorial_managing.py +29 -0
  253. toil-8.2.0/src/toil/test/docs/scripts/tutorial_managing2.py +56 -0
  254. toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs.py +25 -0
  255. toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs2.py +21 -0
  256. toil-8.2.0/src/toil/test/docs/scripts/tutorial_multiplejobs3.py +22 -0
  257. toil-8.2.0/src/toil/test/docs/scripts/tutorial_promises.py +25 -0
  258. toil-8.2.0/src/toil/test/docs/scripts/tutorial_promises2.py +30 -0
  259. toil-8.2.0/src/toil/test/docs/scripts/tutorial_quickstart.py +22 -0
  260. toil-8.2.0/src/toil/test/docs/scripts/tutorial_requirements.py +44 -0
  261. toil-8.2.0/src/toil/test/docs/scripts/tutorial_services.py +45 -0
  262. toil-8.2.0/src/toil/test/docs/scripts/tutorial_staging.py +45 -0
  263. toil-8.2.0/src/toil/test/docs/scripts/tutorial_stats.py +64 -0
  264. toil-8.2.0/src/toil/test/lib/__init__.py +0 -0
  265. toil-8.2.0/src/toil/test/lib/aws/__init__.py +0 -0
  266. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_iam.py +3 -1
  267. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/dockerTest.py +205 -122
  268. toil-8.2.0/src/toil/test/lib/test_history.py +236 -0
  269. toil-8.2.0/src/toil/test/lib/test_trs.py +161 -0
  270. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/aws/awsProvisionerTest.py +12 -9
  271. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/clusterTest.py +4 -4
  272. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/gceProvisionerTest.py +16 -14
  273. toil-8.2.0/src/toil/test/sort/sort.py +331 -0
  274. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/busTest.py +17 -17
  275. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/deferredFunctionTest.py +145 -132
  276. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/importExportFileTest.py +71 -63
  277. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobEncapsulationTest.py +27 -28
  278. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobServiceTest.py +149 -133
  279. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobTest.py +219 -211
  280. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/miscTests.py +66 -60
  281. toil-8.2.0/src/toil/test/src/promisedRequirementTest.py +270 -0
  282. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/regularLogTest.py +24 -24
  283. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/resourceTest.py +82 -76
  284. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/restartDAGTest.py +51 -47
  285. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/resumabilityTest.py +24 -19
  286. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/retainTempDirTest.py +60 -57
  287. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/systemTest.py +17 -13
  288. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/threadingTest.py +29 -32
  289. toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/B_file.txt +1 -0
  290. toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/debugWorkflow.py +204 -0
  291. toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/mkFile.py +16 -0
  292. toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/sleep.cwl +12 -0
  293. toil-8.2.0/src/toil/test/utils/ABCWorkflowDebug/sleep.yaml +1 -0
  294. {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/toilDebugTest.py +117 -102
  295. toil-8.2.0/src/toil/test/utils/toilKillTest.py +100 -0
  296. {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/utilsTest.py +303 -229
  297. toil-8.2.0/src/toil/test/wdl/__init__.py +0 -0
  298. toil-8.2.0/src/toil/test/wdl/lint_error.wdl +9 -0
  299. toil-8.2.0/src/toil/test/wdl/md5sum/empty_file.json +1 -0
  300. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum-gs.json +1 -0
  301. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.1.0.wdl +32 -0
  302. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.input +1 -0
  303. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.json +1 -0
  304. toil-8.2.0/src/toil/test/wdl/md5sum/md5sum.wdl +25 -0
  305. toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/inputs-namespaced.json +1 -0
  306. toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/inputs.json +1 -0
  307. toil-8.2.0/src/toil/test/wdl/miniwdl_self_test/self_test.wdl +40 -0
  308. toil-8.2.0/src/toil/test/wdl/standard_library/as_map.json +16 -0
  309. toil-8.2.0/src/toil/test/wdl/standard_library/as_map_as_input.wdl +23 -0
  310. toil-8.2.0/src/toil/test/wdl/standard_library/as_pairs.json +7 -0
  311. toil-8.2.0/src/toil/test/wdl/standard_library/as_pairs_as_input.wdl +23 -0
  312. toil-8.2.0/src/toil/test/wdl/standard_library/ceil.json +3 -0
  313. toil-8.2.0/src/toil/test/wdl/standard_library/ceil_as_command.wdl +16 -0
  314. toil-8.2.0/src/toil/test/wdl/standard_library/ceil_as_input.wdl +16 -0
  315. toil-8.2.0/src/toil/test/wdl/standard_library/collect_by_key.json +1 -0
  316. toil-8.2.0/src/toil/test/wdl/standard_library/collect_by_key_as_input.wdl +23 -0
  317. toil-8.2.0/src/toil/test/wdl/standard_library/cross.json +11 -0
  318. toil-8.2.0/src/toil/test/wdl/standard_library/cross_as_input.wdl +19 -0
  319. toil-8.2.0/src/toil/test/wdl/standard_library/flatten.json +7 -0
  320. toil-8.2.0/src/toil/test/wdl/standard_library/flatten_as_input.wdl +18 -0
  321. toil-8.2.0/src/toil/test/wdl/standard_library/floor.json +3 -0
  322. toil-8.2.0/src/toil/test/wdl/standard_library/floor_as_command.wdl +16 -0
  323. toil-8.2.0/src/toil/test/wdl/standard_library/floor_as_input.wdl +16 -0
  324. toil-8.2.0/src/toil/test/wdl/standard_library/keys.json +8 -0
  325. toil-8.2.0/src/toil/test/wdl/standard_library/keys_as_input.wdl +24 -0
  326. toil-8.2.0/src/toil/test/wdl/standard_library/length.json +7 -0
  327. toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input.wdl +16 -0
  328. toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input_with_map.json +7 -0
  329. toil-8.2.0/src/toil/test/wdl/standard_library/length_as_input_with_map.wdl +17 -0
  330. toil-8.2.0/src/toil/test/wdl/standard_library/length_invalid.json +3 -0
  331. toil-8.2.0/src/toil/test/wdl/standard_library/range.json +3 -0
  332. toil-8.2.0/src/toil/test/wdl/standard_library/range_0.json +3 -0
  333. toil-8.2.0/src/toil/test/wdl/standard_library/range_as_input.wdl +17 -0
  334. toil-8.2.0/src/toil/test/wdl/standard_library/range_invalid.json +3 -0
  335. toil-8.2.0/src/toil/test/wdl/standard_library/read_boolean.json +3 -0
  336. toil-8.2.0/src/toil/test/wdl/standard_library/read_boolean_as_command.wdl +17 -0
  337. toil-8.2.0/src/toil/test/wdl/standard_library/read_float.json +3 -0
  338. toil-8.2.0/src/toil/test/wdl/standard_library/read_float_as_command.wdl +17 -0
  339. toil-8.2.0/src/toil/test/wdl/standard_library/read_int.json +3 -0
  340. toil-8.2.0/src/toil/test/wdl/standard_library/read_int_as_command.wdl +17 -0
  341. toil-8.2.0/src/toil/test/wdl/standard_library/read_json.json +3 -0
  342. toil-8.2.0/src/toil/test/wdl/standard_library/read_json_as_output.wdl +31 -0
  343. toil-8.2.0/src/toil/test/wdl/standard_library/read_lines.json +3 -0
  344. toil-8.2.0/src/toil/test/wdl/standard_library/read_lines_as_output.wdl +31 -0
  345. toil-8.2.0/src/toil/test/wdl/standard_library/read_map.json +3 -0
  346. toil-8.2.0/src/toil/test/wdl/standard_library/read_map_as_output.wdl +31 -0
  347. toil-8.2.0/src/toil/test/wdl/standard_library/read_string.json +3 -0
  348. toil-8.2.0/src/toil/test/wdl/standard_library/read_string_as_command.wdl +17 -0
  349. toil-8.2.0/src/toil/test/wdl/standard_library/read_tsv.json +3 -0
  350. toil-8.2.0/src/toil/test/wdl/standard_library/read_tsv_as_output.wdl +31 -0
  351. toil-8.2.0/src/toil/test/wdl/standard_library/round.json +3 -0
  352. toil-8.2.0/src/toil/test/wdl/standard_library/round_as_command.wdl +16 -0
  353. toil-8.2.0/src/toil/test/wdl/standard_library/round_as_input.wdl +16 -0
  354. toil-8.2.0/src/toil/test/wdl/standard_library/size.json +3 -0
  355. toil-8.2.0/src/toil/test/wdl/standard_library/size_as_command.wdl +17 -0
  356. toil-8.2.0/src/toil/test/wdl/standard_library/size_as_output.wdl +36 -0
  357. toil-8.2.0/src/toil/test/wdl/standard_library/stderr.json +3 -0
  358. toil-8.2.0/src/toil/test/wdl/standard_library/stderr_as_output.wdl +30 -0
  359. toil-8.2.0/src/toil/test/wdl/standard_library/stdout.json +3 -0
  360. toil-8.2.0/src/toil/test/wdl/standard_library/stdout_as_output.wdl +30 -0
  361. toil-8.2.0/src/toil/test/wdl/standard_library/sub.json +3 -0
  362. toil-8.2.0/src/toil/test/wdl/standard_library/sub_as_input.wdl +17 -0
  363. toil-8.2.0/src/toil/test/wdl/standard_library/sub_as_input_with_file.wdl +17 -0
  364. toil-8.2.0/src/toil/test/wdl/standard_library/transpose.json +6 -0
  365. toil-8.2.0/src/toil/test/wdl/standard_library/transpose_as_input.wdl +18 -0
  366. toil-8.2.0/src/toil/test/wdl/standard_library/write_json.json +6 -0
  367. toil-8.2.0/src/toil/test/wdl/standard_library/write_json_as_command.wdl +17 -0
  368. toil-8.2.0/src/toil/test/wdl/standard_library/write_lines.json +7 -0
  369. toil-8.2.0/src/toil/test/wdl/standard_library/write_lines_as_command.wdl +17 -0
  370. toil-8.2.0/src/toil/test/wdl/standard_library/write_map.json +6 -0
  371. toil-8.2.0/src/toil/test/wdl/standard_library/write_map_as_command.wdl +17 -0
  372. toil-8.2.0/src/toil/test/wdl/standard_library/write_tsv.json +6 -0
  373. toil-8.2.0/src/toil/test/wdl/standard_library/write_tsv_as_command.wdl +17 -0
  374. toil-8.2.0/src/toil/test/wdl/standard_library/zip.json +12 -0
  375. toil-8.2.0/src/toil/test/wdl/standard_library/zip_as_input.wdl +19 -0
  376. toil-8.2.0/src/toil/test/wdl/test.csv +3 -0
  377. toil-8.2.0/src/toil/test/wdl/test.tsv +3 -0
  378. toil-8.2.0/src/toil/test/wdl/testfiles/croo.wdl +38 -0
  379. toil-8.2.0/src/toil/test/wdl/testfiles/drop_files.wdl +62 -0
  380. toil-8.2.0/src/toil/test/wdl/testfiles/drop_files_subworkflow.wdl +13 -0
  381. toil-8.2.0/src/toil/test/wdl/testfiles/empty.txt +0 -0
  382. toil-8.2.0/src/toil/test/wdl/testfiles/not_enough_outputs.wdl +33 -0
  383. toil-8.2.0/src/toil/test/wdl/testfiles/random.wdl +66 -0
  384. toil-8.2.0/src/toil/test/wdl/testfiles/string_file_coercion.json +1 -0
  385. toil-8.2.0/src/toil/test/wdl/testfiles/string_file_coercion.wdl +35 -0
  386. toil-8.2.0/src/toil/test/wdl/testfiles/test.json +4 -0
  387. toil-8.2.0/src/toil/test/wdl/testfiles/test_boolean.txt +1 -0
  388. toil-8.2.0/src/toil/test/wdl/testfiles/test_float.txt +1 -0
  389. toil-8.2.0/src/toil/test/wdl/testfiles/test_int.txt +1 -0
  390. toil-8.2.0/src/toil/test/wdl/testfiles/test_lines.txt +5 -0
  391. toil-8.2.0/src/toil/test/wdl/testfiles/test_map.txt +2 -0
  392. toil-8.2.0/src/toil/test/wdl/testfiles/test_string.txt +1 -0
  393. toil-8.2.0/src/toil/test/wdl/testfiles/url_to_file.wdl +13 -0
  394. toil-8.2.0/src/toil/test/wdl/testfiles/url_to_optional_file.wdl +13 -0
  395. toil-8.2.0/src/toil/test/wdl/testfiles/vocab.json +1 -0
  396. toil-8.2.0/src/toil/test/wdl/testfiles/vocab.wdl +66 -0
  397. toil-8.2.0/src/toil/test/wdl/testfiles/wait.wdl +34 -0
  398. toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair.json +23 -0
  399. toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair_basic.wdl +36 -0
  400. toil-8.2.0/src/toil/test/wdl/wdl_specification/type_pair_with_files.wdl +36 -0
  401. toil-8.2.0/src/toil/test/wdl/wdl_specification/v1_spec.json +1 -0
  402. toil-8.2.0/src/toil/test/wdl/wdl_specification/v1_spec_declaration.wdl +39 -0
  403. toil-8.2.0/src/toil/test/wdl/wdltoil_test.py +1285 -0
  404. {toil-8.0.0 → toil-8.2.0}/src/toil/test/wdl/wdltoil_test_kubernetes.py +2 -2
  405. toil-8.2.0/src/toil/utils/__init__.py +0 -0
  406. toil-8.2.0/src/toil/version.py +14 -0
  407. toil-8.2.0/src/toil/wdl/__init__.py +0 -0
  408. {toil-8.0.0 → toil-8.2.0}/src/toil/wdl/wdltoil.py +350 -123
  409. {toil-8.0.0 → toil-8.2.0}/src/toil/worker.py +113 -33
  410. {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/PKG-INFO +13 -7
  411. toil-8.2.0/src/toil.egg-info/SOURCES.txt +596 -0
  412. {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/requires.txt +6 -5
  413. toil-8.2.0/version_template.py +206 -0
  414. toil-8.0.0/MANIFEST.in +0 -1
  415. toil-8.0.0/src/toil/test/cwl/conftest.py +0 -17
  416. toil-8.0.0/src/toil/test/cwl/cwlTest.py +0 -1816
  417. toil-8.0.0/src/toil/test/lib/test_integration.py +0 -104
  418. toil-8.0.0/src/toil/test/src/promisedRequirementTest.py +0 -276
  419. toil-8.0.0/src/toil/test/utils/toilKillTest.py +0 -99
  420. toil-8.0.0/src/toil/test/wdl/wdltoil_test.py +0 -1012
  421. toil-8.0.0/src/toil/version.py +0 -14
  422. toil-8.0.0/src/toil.egg-info/SOURCES.txt +0 -269
  423. {toil-8.0.0 → toil-8.2.0}/LICENSE +0 -0
  424. {toil-8.0.0/src/toil/jobStores → toil-8.2.0/contrib/mypy-stubs/tes}/__init__.py +0 -0
  425. {toil-8.0.0 → toil-8.2.0}/requirements-aws.txt +0 -0
  426. {toil-8.0.0 → toil-8.2.0}/requirements-cwl.txt +0 -0
  427. {toil-8.0.0 → toil-8.2.0}/requirements-encryption.txt +0 -0
  428. {toil-8.0.0 → toil-8.2.0}/requirements-google.txt +0 -0
  429. {toil-8.0.0 → toil-8.2.0}/requirements-htcondor.txt +0 -0
  430. {toil-8.0.0 → toil-8.2.0}/requirements-kubernetes.txt +0 -0
  431. {toil-8.0.0 → toil-8.2.0}/requirements-mesos.txt +0 -0
  432. {toil-8.0.0 → toil-8.2.0}/requirements-wdl.txt +0 -0
  433. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/__init__.py +0 -0
  434. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/contained_executor.py +0 -0
  435. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/gridengine.py +0 -0
  436. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/htcondor.py +0 -0
  437. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/lsf.py +0 -0
  438. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/lsfHelper.py +0 -0
  439. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/__init__.py +0 -0
  440. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/conftest.py +0 -0
  441. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/mesos/executor.py +0 -0
  442. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/registry.py +0 -0
  443. {toil-8.0.0 → toil-8.2.0}/src/toil/batchSystems/torque.py +0 -0
  444. {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/__init__.py +0 -0
  445. {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/conftest.py +0 -0
  446. {toil-8.0.0 → toil-8.2.0}/src/toil/cwl/utils.py +0 -0
  447. {toil-8.0.0 → toil-8.2.0}/src/toil/deferred.py +0 -0
  448. {toil-8.0.0 → toil-8.2.0}/src/toil/exceptions.py +0 -0
  449. {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/__init__.py +0 -0
  450. {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/abstractFileStore.py +0 -0
  451. {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/cachingFileStore.py +0 -0
  452. {toil-8.0.0 → toil-8.2.0}/src/toil/fileStores/nonCachingFileStore.py +0 -0
  453. {toil-8.0.0/src/toil/jobStores/aws → toil-8.2.0/src/toil/jobStores}/__init__.py +0 -0
  454. {toil-8.0.0/src/toil/lib → toil-8.2.0/src/toil/jobStores/aws}/__init__.py +0 -0
  455. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/aws/utils.py +0 -0
  456. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/conftest.py +0 -0
  457. {toil-8.0.0 → toil-8.2.0}/src/toil/jobStores/utils.py +0 -0
  458. {toil-8.0.0/src/toil/options → toil-8.2.0/src/toil/lib}/__init__.py +0 -0
  459. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/__init__.py +0 -0
  460. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/ami.py +0 -0
  461. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/iam.py +0 -0
  462. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/aws/s3.py +0 -0
  463. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/compatibility.py +0 -0
  464. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/conversions.py +0 -0
  465. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ec2.py +0 -0
  466. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/__init__.py +0 -0
  467. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/_dummy.py +0 -0
  468. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/_nacl.py +0 -0
  469. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/encryption/conftest.py +0 -0
  470. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/expando.py +0 -0
  471. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/ftp_utils.py +0 -0
  472. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/generatedEC2Lists.py +0 -0
  473. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/humanize.py +0 -0
  474. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/iterables.py +0 -0
  475. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/memoize.py +0 -0
  476. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/objects.py +0 -0
  477. {toil-8.0.0 → toil-8.2.0}/src/toil/lib/throttle.py +0 -0
  478. {toil-8.0.0/src/toil/server → toil-8.2.0/src/toil/options}/__init__.py +0 -0
  479. {toil-8.0.0 → toil-8.2.0}/src/toil/options/runner.py +0 -0
  480. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/__init__.py +0 -0
  481. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/abstractProvisioner.py +0 -0
  482. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/aws/__init__.py +0 -0
  483. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/aws/awsProvisioner.py +0 -0
  484. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/clusterScaler.py +0 -0
  485. {toil-8.0.0 → toil-8.2.0}/src/toil/provisioners/node.py +0 -0
  486. {toil-8.0.0 → toil-8.2.0}/src/toil/realtimeLogger.py +0 -0
  487. {toil-8.0.0 → toil-8.2.0}/src/toil/resource.py +0 -0
  488. {toil-8.0.0/src/toil/server/api_spec → toil-8.2.0/src/toil/server}/__init__.py +0 -0
  489. {toil-8.0.0/src/toil/server/cli → toil-8.2.0/src/toil/server/api_spec}/__init__.py +0 -0
  490. {toil-8.0.0 → toil-8.2.0}/src/toil/server/api_spec/workflow_execution_service.swagger.yaml +0 -0
  491. {toil-8.0.0 → toil-8.2.0}/src/toil/server/app.py +0 -0
  492. {toil-8.0.0 → toil-8.2.0}/src/toil/server/celery_app.py +0 -0
  493. {toil-8.0.0/src/toil/server/wes → toil-8.2.0/src/toil/server/cli}/__init__.py +0 -0
  494. {toil-8.0.0/src/toil/test/cactus → toil-8.2.0/src/toil/server/wes}/__init__.py +0 -0
  495. {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/abstract_backend.py +0 -0
  496. {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/amazon_wes_utils.py +0 -0
  497. {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/tasks.py +0 -0
  498. {toil-8.0.0 → toil-8.2.0}/src/toil/server/wes/toil_backend.py +0 -0
  499. {toil-8.0.0 → toil-8.2.0}/src/toil/server/wsgi_app.py +0 -0
  500. {toil-8.0.0 → toil-8.2.0}/src/toil/serviceManager.py +0 -0
  501. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/__init__.py +0 -0
  502. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/batch_system_plugin_test.py +0 -0
  503. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_gridengine.py +0 -0
  504. {toil-8.0.0 → toil-8.2.0}/src/toil/test/batchSystems/test_lsf_helper.py +0 -0
  505. {toil-8.0.0/src/toil/test/cwl → toil-8.2.0/src/toil/test/cactus}/__init__.py +0 -0
  506. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cactus/test_cactus_integration.py +0 -0
  507. {toil-8.0.0/src/toil/test/docs → toil-8.2.0/src/toil/test/cwl}/__init__.py +0 -0
  508. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/alwaysfails.cwl +0 -0
  509. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/colon_test_output.cwl +0 -0
  510. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/colon_test_output_job.yaml +0 -0
  511. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/conditional_wf.cwl +0 -0
  512. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/conditional_wf.yaml +0 -0
  513. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/directory_from_directory.cwl +0 -0
  514. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download.cwl +0 -0
  515. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download_directory.cwl +0 -0
  516. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/download_subdirectory.cwl +0 -0
  517. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo-stderr.cwl +0 -0
  518. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo-stdout-log-dir.cwl +0 -0
  519. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo.cwl +0 -0
  520. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo_string.cwl +0 -0
  521. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/echo_string_scatter_capture_stdout.cwl +0 -0
  522. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/file_from_directory.cwl +0 -0
  523. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/glob_dir.cwl +0 -0
  524. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/load_contents.cwl +0 -0
  525. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/measure_default_memory.cwl +0 -0
  526. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/mpi_simple.cwl +0 -0
  527. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/not_run_required_input.cwl +0 -0
  528. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/nvidia_smi.cwl +0 -0
  529. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/preemptible.cwl +0 -0
  530. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/preemptible_expression.cwl +0 -0
  531. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revsort.cwl +0 -0
  532. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revsort2.cwl +0 -0
  533. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revtool.cwl +0 -0
  534. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/revtool2.cwl +0 -0
  535. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/s3_secondary_file.cwl +0 -0
  536. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/scatter_duplicate_outputs.cwl +0 -0
  537. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/seqtk_seq.cwl +0 -0
  538. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/sorttool.cwl +0 -0
  539. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/stream.cwl +0 -0
  540. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_detection.cwl +0 -0
  541. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_detection_at_root.cwl +0 -0
  542. {toil-8.0.0 → toil-8.2.0}/src/toil/test/cwl/test_filename_conflict_resolution.cwl +0 -0
  543. /toil-8.0.0/src/toil/test/lib/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.dat +0 -0
  544. /toil-8.0.0/src/toil/test/lib/aws/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f0 +0 -0
  545. /toil-8.0.0/src/toil/test/wdl/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1 +0 -0
  546. /toil-8.0.0/src/toil/utils/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f1i +0 -0
  547. /toil-8.0.0/src/toil/wdl/__init__.py → /toil-8.2.0/src/toil/test/cwl/test_filename_conflict_resolution.ms/table.f2 +0 -0
  548. {toil-8.0.0 → toil-8.2.0}/src/toil/test/docs/scriptsTest.py +0 -0
  549. {toil-8.0.0 → toil-8.2.0}/src/toil/test/jobStores/__init__.py +0 -0
  550. {toil-8.0.0 → toil-8.2.0}/src/toil/test/jobStores/jobStoreTest.py +0 -0
  551. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_s3.py +0 -0
  552. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/aws/test_utils.py +0 -0
  553. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_conversions.py +0 -0
  554. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_ec2.py +0 -0
  555. {toil-8.0.0 → toil-8.2.0}/src/toil/test/lib/test_misc.py +0 -0
  556. {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/MesosDataStructuresTest.py +0 -0
  557. {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/__init__.py +0 -0
  558. {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/helloWorld.py +0 -0
  559. {toil-8.0.0 → toil-8.2.0}/src/toil/test/mesos/stress.py +0 -0
  560. {toil-8.0.0 → toil-8.2.0}/src/toil/test/options/__init__.py +0 -0
  561. {toil-8.0.0 → toil-8.2.0}/src/toil/test/options/options.py +0 -0
  562. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/__init__.py +0 -0
  563. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/aws/__init__.py +0 -0
  564. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/clusterScalerTest.py +0 -0
  565. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/provisionerTest.py +0 -0
  566. {toil-8.0.0 → toil-8.2.0}/src/toil/test/provisioners/restartScript.py +0 -0
  567. {toil-8.0.0 → toil-8.2.0}/src/toil/test/server/__init__.py +0 -0
  568. {toil-8.0.0 → toil-8.2.0}/src/toil/test/server/serverTest.py +0 -0
  569. {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/__init__.py +0 -0
  570. {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/restart_sort.py +0 -0
  571. {toil-8.0.0 → toil-8.2.0}/src/toil/test/sort/sortTest.py +0 -0
  572. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/__init__.py +0 -0
  573. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/autoDeploymentTest.py +0 -0
  574. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/checkpointTest.py +0 -0
  575. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/dockerCheckTest.py +0 -0
  576. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/environmentTest.py +0 -0
  577. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/fileStoreTest.py +0 -0
  578. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/helloWorldTest.py +0 -0
  579. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobDescriptionTest.py +0 -0
  580. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/jobFileStoreTest.py +0 -0
  581. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/promisesTest.py +0 -0
  582. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/realtimeLoggerTest.py +0 -0
  583. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/toilContextManagerTest.py +0 -0
  584. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/userDefinedJobArgTypeTest.py +0 -0
  585. {toil-8.0.0 → toil-8.2.0}/src/toil/test/src/workerTest.py +0 -0
  586. {toil-8.0.0 → toil-8.2.0}/src/toil/test/utils/__init__.py +0 -0
  587. {toil-8.0.0 → toil-8.2.0}/src/toil/toilState.py +0 -0
  588. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilClean.py +0 -0
  589. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilConfig.py +0 -0
  590. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDebugFile.py +0 -0
  591. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDebugJob.py +0 -0
  592. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilDestroyCluster.py +0 -0
  593. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilKill.py +0 -0
  594. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilLaunchCluster.py +0 -0
  595. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilMain.py +0 -0
  596. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilRsyncCluster.py +0 -0
  597. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilServer.py +0 -0
  598. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilSshCluster.py +0 -0
  599. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilStats.py +0 -0
  600. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilStatus.py +0 -0
  601. {toil-8.0.0 → toil-8.2.0}/src/toil/utils/toilUpdateEC2Instances.py +0 -0
  602. {toil-8.0.0 → toil-8.2.0}/src/toil/wdl/utils.py +0 -0
  603. {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/dependency_links.txt +0 -0
  604. {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/entry_points.txt +0 -0
  605. {toil-8.0.0 → toil-8.2.0}/src/toil.egg-info/top_level.txt +0 -0
@@ -0,0 +1,8 @@
1
+ # make format with black 24.10.0 on 2024-10-19
2
+ 49d99f17799aa4a4235126bbdfb45f85e6499b27
3
+ # make sort_imports
4
+ a307a57651296e576d55f9159869dc9130da2b7c
5
+ # make remove_unused_import
6
+ 1c6217e11a2815476ede1cc3ee584d5da3d5242a
7
+ # make pyupgrade (3.9+)
8
+ 00f54f8417b3a0bc5d1ea46650aa2e6ce4792159
@@ -0,0 +1,37 @@
1
+ ## Changelog Entry
2
+ To be copied to the [draft changelog](https://github.com/DataBiosphere/toil/wiki/Draft-Changelog) by merger:
3
+
4
+ * PR submitter writes their recommendation for a changelog entry here
5
+
6
+ ## Reviewer Checklist
7
+
8
+ <!-- To be kept in sync with docs/contributing/checklists.rst -->
9
+
10
+ * [ ] Make sure it is coming from `issues/XXXX-fix-the-thing` in the Toil repo, or from an external repo.
11
+ * [ ] If it is coming from an external repo, make sure to pull it in for CI with:
12
+ ```
13
+ contrib/admin/test-pr otheruser theirbranchname issues/XXXX-fix-the-thing
14
+ ```
15
+ * [ ] If there is no associated issue, [create one](https://github.com/DataBiosphere/toil/issues/new).
16
+ * [ ] Read through the code changes. Make sure that it doesn't have:
17
+ * [ ] Addition of trailing whitespace.
18
+ * [ ] New variable or member names in `camelCase` that want to be in `snake_case`.
19
+ * [ ] New functions without [type hints](https://docs.python.org/3/library/typing.html).
20
+ * [ ] New functions or classes without informative docstrings.
21
+ * [ ] Changes to semantics not reflected in the relevant docstrings.
22
+ * [ ] New or changed command line options for Toil workflows that are not reflected in `docs/running/{cliOptions,cwl,wdl}.rst`
23
+ * [ ] New features without tests.
24
+ * [ ] Comment on the lines of code where problems exist with a review comment. You can shift-click the line numbers in the diff to select multiple lines.
25
+ * [ ] Finish the review with an overall description of your opinion.
26
+
27
+ ## Merger Checklist
28
+
29
+ <!-- To be kept in sync with docs/contributing/checklists.rst -->
30
+
31
+ * [ ] Make sure the PR passed tests, including the Gitlab tests, for the most recent commit in its branch.
32
+ * [ ] Make sure the PR has been reviewed. If not, review it. If it has been reviewed and any requested changes seem to have been addressed, proceed.
33
+ * [ ] Merge with the Github "Squash and merge" feature.
34
+ * [ ] If there are multiple authors' commits, add [Co-authored-by](https://github.blog/2018-01-29-commit-together-with-co-authors/) to give credit to all contributing authors.
35
+ * [ ] Copy its recommended changelog entry to the [Draft Changelog](https://github.com/DataBiosphere/toil/wiki/Draft-Changelog).
36
+ * [ ] Append the issue number in parentheses to the changelog entry.
37
+
@@ -0,0 +1,23 @@
1
+ # Dependabot configuration file
2
+ # Validate with: check-jsonschema --schemafile https://json.schemastore.org/dependabot-2.0.json .github/dependabot.yml
3
+ version: 2
4
+ updates:
5
+ - package-ecosystem: "pip" # See documentation for possible values
6
+ directory: "/" # Location of package manifests
7
+ schedule:
8
+ interval: "daily"
9
+ ignore:
10
+ # htcondor is not under CI
11
+ - dependency-name: "htcondor"
12
+ # Google cloud/storage is not under CI
13
+ - dependency-name: "apache-libcloud"
14
+ - dependency-name: "google-cloud-storage"
15
+ - dependency-name: "google-auth"
16
+ rebase-strategy: disabled
17
+ - package-ecosystem: "github-actions"
18
+ directory: "/"
19
+ schedule:
20
+ interval: "weekly"
21
+ rebase-strategy: disabled
22
+
23
+
@@ -0,0 +1,71 @@
1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ #
7
+ # ******** NOTE ********
8
+ # We have attempted to detect the languages in your repository. Please check
9
+ # the `language` matrix defined below to confirm you have the correct set of
10
+ # supported CodeQL languages.
11
+ #
12
+ name: "CodeQL"
13
+
14
+ on:
15
+ push:
16
+ branches: [ master]
17
+ pull_request:
18
+ # The branches below must be a subset of the branches above
19
+ branches: [ master ]
20
+ schedule:
21
+ - cron: '27 21 * * 4'
22
+
23
+ jobs:
24
+ analyze:
25
+ name: Analyze
26
+ runs-on: ubuntu-latest
27
+ permissions:
28
+ actions: read
29
+ contents: read
30
+ security-events: write
31
+
32
+ strategy:
33
+ fail-fast: false
34
+ matrix:
35
+ language: [ 'python' ]
36
+ # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
37
+ # Learn more:
38
+ # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
39
+
40
+ steps:
41
+ - name: Checkout repository
42
+ uses: actions/checkout@v4
43
+
44
+ # Initializes the CodeQL tools for scanning.
45
+ - name: Initialize CodeQL
46
+ uses: github/codeql-action/init@v2
47
+ with:
48
+ languages: ${{ matrix.language }}
49
+ # If you wish to specify custom queries, you can do so here or in a config file.
50
+ # By default, queries listed here will override any specified in a config file.
51
+ # Prefix the list here with "+" to use these queries and those in the config file.
52
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
53
+
54
+ # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
55
+ # If this step fails, then you should remove it and run the build manually (see below)
56
+ - name: Autobuild
57
+ uses: github/codeql-action/autobuild@v2
58
+
59
+ # ℹ️ Command-line programs to run using the OS shell.
60
+ # 📚 https://git.io/JvXDl
61
+
62
+ # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
63
+ # and modify them (or add more) to build your code if your project
64
+ # uses a compiled language
65
+
66
+ #- run: |
67
+ # make bootstrap
68
+ # make release
69
+
70
+ - name: Perform CodeQL Analysis
71
+ uses: github/codeql-action/analyze@v2
toil-8.2.0/.gitignore ADDED
@@ -0,0 +1,26 @@
1
+ *.pyc
2
+ /src/*.egg-info
3
+ /build
4
+ /dist
5
+ /docs/_build
6
+ __pycache__
7
+ .eggs/
8
+ .cache/
9
+ .pytest_cache/
10
+ .idea/
11
+ /test-report.xml
12
+ /test-report-*.xml
13
+ venv*
14
+ v3nv/
15
+ tmp/
16
+ /src/toil/test/cwl/spec*
17
+ /src/toil/test/wdl/wdl-conformance-tests
18
+ /cwltool_deps/
19
+ /docs/generated_rst/
20
+ /docker/Dockerfile
21
+ /docker/toil-*.tar.gz
22
+ /src/toil/version.py
23
+ .coverage*
24
+ .mypy_cache
25
+ /contrib/admin/.issue_cache/
26
+ .docker_cache/