toil 7.0.0__py3-none-any.whl → 8.1.0b1__py3-none-any.whl

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 (197) hide show
  1. toil/__init__.py +124 -86
  2. toil/batchSystems/__init__.py +1 -0
  3. toil/batchSystems/abstractBatchSystem.py +137 -77
  4. toil/batchSystems/abstractGridEngineBatchSystem.py +211 -101
  5. toil/batchSystems/awsBatch.py +237 -128
  6. toil/batchSystems/cleanup_support.py +22 -16
  7. toil/batchSystems/contained_executor.py +30 -26
  8. toil/batchSystems/gridengine.py +85 -49
  9. toil/batchSystems/htcondor.py +164 -87
  10. toil/batchSystems/kubernetes.py +622 -386
  11. toil/batchSystems/local_support.py +17 -12
  12. toil/batchSystems/lsf.py +132 -79
  13. toil/batchSystems/lsfHelper.py +13 -11
  14. toil/batchSystems/mesos/__init__.py +41 -29
  15. toil/batchSystems/mesos/batchSystem.py +288 -149
  16. toil/batchSystems/mesos/executor.py +77 -49
  17. toil/batchSystems/mesos/test/__init__.py +31 -23
  18. toil/batchSystems/options.py +39 -29
  19. toil/batchSystems/registry.py +53 -19
  20. toil/batchSystems/singleMachine.py +293 -123
  21. toil/batchSystems/slurm.py +651 -155
  22. toil/batchSystems/torque.py +46 -32
  23. toil/bus.py +141 -73
  24. toil/common.py +784 -397
  25. toil/cwl/__init__.py +1 -1
  26. toil/cwl/cwltoil.py +1137 -534
  27. toil/cwl/utils.py +17 -22
  28. toil/deferred.py +62 -41
  29. toil/exceptions.py +5 -3
  30. toil/fileStores/__init__.py +5 -5
  31. toil/fileStores/abstractFileStore.py +88 -57
  32. toil/fileStores/cachingFileStore.py +711 -247
  33. toil/fileStores/nonCachingFileStore.py +113 -75
  34. toil/job.py +1031 -349
  35. toil/jobStores/abstractJobStore.py +387 -243
  36. toil/jobStores/aws/jobStore.py +772 -412
  37. toil/jobStores/aws/utils.py +161 -109
  38. toil/jobStores/conftest.py +1 -0
  39. toil/jobStores/fileJobStore.py +289 -151
  40. toil/jobStores/googleJobStore.py +137 -70
  41. toil/jobStores/utils.py +36 -15
  42. toil/leader.py +614 -269
  43. toil/lib/accelerators.py +115 -18
  44. toil/lib/aws/__init__.py +55 -28
  45. toil/lib/aws/ami.py +122 -87
  46. toil/lib/aws/iam.py +284 -108
  47. toil/lib/aws/s3.py +31 -0
  48. toil/lib/aws/session.py +204 -58
  49. toil/lib/aws/utils.py +290 -213
  50. toil/lib/bioio.py +13 -5
  51. toil/lib/compatibility.py +11 -6
  52. toil/lib/conversions.py +83 -49
  53. toil/lib/docker.py +131 -103
  54. toil/lib/dockstore.py +379 -0
  55. toil/lib/ec2.py +322 -209
  56. toil/lib/ec2nodes.py +174 -105
  57. toil/lib/encryption/_dummy.py +5 -3
  58. toil/lib/encryption/_nacl.py +10 -6
  59. toil/lib/encryption/conftest.py +1 -0
  60. toil/lib/exceptions.py +26 -7
  61. toil/lib/expando.py +4 -2
  62. toil/lib/ftp_utils.py +217 -0
  63. toil/lib/generatedEC2Lists.py +127 -19
  64. toil/lib/history.py +1271 -0
  65. toil/lib/history_submission.py +681 -0
  66. toil/lib/humanize.py +6 -2
  67. toil/lib/io.py +121 -12
  68. toil/lib/iterables.py +4 -2
  69. toil/lib/memoize.py +12 -8
  70. toil/lib/misc.py +83 -18
  71. toil/lib/objects.py +2 -2
  72. toil/lib/resources.py +19 -7
  73. toil/lib/retry.py +125 -87
  74. toil/lib/threading.py +282 -80
  75. toil/lib/throttle.py +15 -14
  76. toil/lib/trs.py +390 -0
  77. toil/lib/web.py +38 -0
  78. toil/options/common.py +850 -402
  79. toil/options/cwl.py +185 -90
  80. toil/options/runner.py +50 -0
  81. toil/options/wdl.py +70 -19
  82. toil/provisioners/__init__.py +111 -46
  83. toil/provisioners/abstractProvisioner.py +322 -157
  84. toil/provisioners/aws/__init__.py +62 -30
  85. toil/provisioners/aws/awsProvisioner.py +980 -627
  86. toil/provisioners/clusterScaler.py +541 -279
  87. toil/provisioners/gceProvisioner.py +283 -180
  88. toil/provisioners/node.py +147 -79
  89. toil/realtimeLogger.py +34 -22
  90. toil/resource.py +137 -75
  91. toil/server/app.py +127 -61
  92. toil/server/celery_app.py +3 -1
  93. toil/server/cli/wes_cwl_runner.py +84 -55
  94. toil/server/utils.py +56 -31
  95. toil/server/wes/abstract_backend.py +64 -26
  96. toil/server/wes/amazon_wes_utils.py +21 -15
  97. toil/server/wes/tasks.py +121 -63
  98. toil/server/wes/toil_backend.py +142 -107
  99. toil/server/wsgi_app.py +4 -3
  100. toil/serviceManager.py +58 -22
  101. toil/statsAndLogging.py +183 -65
  102. toil/test/__init__.py +263 -179
  103. toil/test/batchSystems/batchSystemTest.py +438 -195
  104. toil/test/batchSystems/batch_system_plugin_test.py +18 -7
  105. toil/test/batchSystems/test_gridengine.py +173 -0
  106. toil/test/batchSystems/test_lsf_helper.py +67 -58
  107. toil/test/batchSystems/test_slurm.py +265 -49
  108. toil/test/cactus/test_cactus_integration.py +20 -22
  109. toil/test/cwl/conftest.py +39 -0
  110. toil/test/cwl/cwlTest.py +375 -72
  111. toil/test/cwl/measure_default_memory.cwl +12 -0
  112. toil/test/cwl/not_run_required_input.cwl +29 -0
  113. toil/test/cwl/optional-file.cwl +18 -0
  114. toil/test/cwl/scatter_duplicate_outputs.cwl +40 -0
  115. toil/test/docs/scriptsTest.py +60 -34
  116. toil/test/jobStores/jobStoreTest.py +412 -235
  117. toil/test/lib/aws/test_iam.py +116 -48
  118. toil/test/lib/aws/test_s3.py +16 -9
  119. toil/test/lib/aws/test_utils.py +5 -6
  120. toil/test/lib/dockerTest.py +118 -141
  121. toil/test/lib/test_conversions.py +113 -115
  122. toil/test/lib/test_ec2.py +57 -49
  123. toil/test/lib/test_history.py +212 -0
  124. toil/test/lib/test_misc.py +12 -5
  125. toil/test/lib/test_trs.py +161 -0
  126. toil/test/mesos/MesosDataStructuresTest.py +23 -10
  127. toil/test/mesos/helloWorld.py +7 -6
  128. toil/test/mesos/stress.py +25 -20
  129. toil/test/options/options.py +7 -2
  130. toil/test/provisioners/aws/awsProvisionerTest.py +293 -140
  131. toil/test/provisioners/clusterScalerTest.py +440 -250
  132. toil/test/provisioners/clusterTest.py +81 -42
  133. toil/test/provisioners/gceProvisionerTest.py +174 -100
  134. toil/test/provisioners/provisionerTest.py +25 -13
  135. toil/test/provisioners/restartScript.py +5 -4
  136. toil/test/server/serverTest.py +188 -141
  137. toil/test/sort/restart_sort.py +137 -68
  138. toil/test/sort/sort.py +134 -66
  139. toil/test/sort/sortTest.py +91 -49
  140. toil/test/src/autoDeploymentTest.py +140 -100
  141. toil/test/src/busTest.py +20 -18
  142. toil/test/src/checkpointTest.py +8 -2
  143. toil/test/src/deferredFunctionTest.py +49 -35
  144. toil/test/src/dockerCheckTest.py +33 -26
  145. toil/test/src/environmentTest.py +20 -10
  146. toil/test/src/fileStoreTest.py +538 -271
  147. toil/test/src/helloWorldTest.py +7 -4
  148. toil/test/src/importExportFileTest.py +61 -31
  149. toil/test/src/jobDescriptionTest.py +32 -17
  150. toil/test/src/jobEncapsulationTest.py +2 -0
  151. toil/test/src/jobFileStoreTest.py +74 -50
  152. toil/test/src/jobServiceTest.py +187 -73
  153. toil/test/src/jobTest.py +120 -70
  154. toil/test/src/miscTests.py +19 -18
  155. toil/test/src/promisedRequirementTest.py +82 -36
  156. toil/test/src/promisesTest.py +7 -6
  157. toil/test/src/realtimeLoggerTest.py +6 -6
  158. toil/test/src/regularLogTest.py +71 -37
  159. toil/test/src/resourceTest.py +80 -49
  160. toil/test/src/restartDAGTest.py +36 -22
  161. toil/test/src/resumabilityTest.py +9 -2
  162. toil/test/src/retainTempDirTest.py +45 -14
  163. toil/test/src/systemTest.py +12 -8
  164. toil/test/src/threadingTest.py +44 -25
  165. toil/test/src/toilContextManagerTest.py +10 -7
  166. toil/test/src/userDefinedJobArgTypeTest.py +8 -5
  167. toil/test/src/workerTest.py +33 -16
  168. toil/test/utils/toilDebugTest.py +70 -58
  169. toil/test/utils/toilKillTest.py +4 -5
  170. toil/test/utils/utilsTest.py +239 -102
  171. toil/test/wdl/wdltoil_test.py +789 -148
  172. toil/test/wdl/wdltoil_test_kubernetes.py +37 -23
  173. toil/toilState.py +52 -26
  174. toil/utils/toilConfig.py +13 -4
  175. toil/utils/toilDebugFile.py +44 -27
  176. toil/utils/toilDebugJob.py +85 -25
  177. toil/utils/toilDestroyCluster.py +11 -6
  178. toil/utils/toilKill.py +8 -3
  179. toil/utils/toilLaunchCluster.py +251 -145
  180. toil/utils/toilMain.py +37 -16
  181. toil/utils/toilRsyncCluster.py +27 -14
  182. toil/utils/toilSshCluster.py +45 -22
  183. toil/utils/toilStats.py +75 -36
  184. toil/utils/toilStatus.py +226 -119
  185. toil/utils/toilUpdateEC2Instances.py +3 -1
  186. toil/version.py +6 -6
  187. toil/wdl/utils.py +5 -5
  188. toil/wdl/wdltoil.py +3528 -1053
  189. toil/worker.py +370 -149
  190. toil-8.1.0b1.dist-info/METADATA +178 -0
  191. toil-8.1.0b1.dist-info/RECORD +259 -0
  192. {toil-7.0.0.dist-info → toil-8.1.0b1.dist-info}/WHEEL +1 -1
  193. toil-7.0.0.dist-info/METADATA +0 -158
  194. toil-7.0.0.dist-info/RECORD +0 -244
  195. {toil-7.0.0.dist-info → toil-8.1.0b1.dist-info}/LICENSE +0 -0
  196. {toil-7.0.0.dist-info → toil-8.1.0b1.dist-info}/entry_points.txt +0 -0
  197. {toil-7.0.0.dist-info → toil-8.1.0b1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,178 @@
1
+ Metadata-Version: 2.2
2
+ Name: toil
3
+ Version: 8.1.0b1
4
+ Summary: Pipeline management software for clusters.
5
+ Home-page: https://github.com/DataBiosphere/toil
6
+ Author: Benedict Paten and the Toil community
7
+ Author-email: toil-community@googlegroups.com
8
+ License: Apache License v2.0
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: Intended Audience :: Healthcare Industry
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Natural Language :: English
16
+ Classifier: Operating System :: MacOS :: MacOS X
17
+ Classifier: Operating System :: POSIX
18
+ Classifier: Operating System :: POSIX :: Linux
19
+ Classifier: Programming Language :: Python :: 3.9
20
+ Classifier: Programming Language :: Python :: 3.10
21
+ Classifier: Programming Language :: Python :: 3.11
22
+ Classifier: Programming Language :: Python :: 3.12
23
+ Classifier: Programming Language :: Python :: 3.13
24
+ Classifier: Topic :: Scientific/Engineering
25
+ Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
26
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
27
+ Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
28
+ Classifier: Topic :: Scientific/Engineering :: Information Analysis
29
+ Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
30
+ Classifier: Topic :: System :: Distributed Computing
31
+ Classifier: Topic :: Utilities
32
+ Requires-Python: >=3.9
33
+ Description-Content-Type: text/x-rst
34
+ License-File: LICENSE
35
+ Requires-Dist: dill<0.4,>=0.3.2
36
+ Requires-Dist: requests<=2.31.0
37
+ Requires-Dist: docker<8,>=6.1.0
38
+ Requires-Dist: urllib3<3,>=1.26.0
39
+ Requires-Dist: python-dateutil
40
+ Requires-Dist: psutil<8,>=6.1.0
41
+ Requires-Dist: PyPubSub<5,>=4.0.3
42
+ Requires-Dist: addict<2.5,>=2.2.1
43
+ Requires-Dist: backports.zoneinfo[tzdata]; python_version < "3.9"
44
+ Requires-Dist: enlighten<2,>=1.5.2
45
+ Requires-Dist: configargparse<2,>=1.7
46
+ Requires-Dist: ruamel.yaml>=0.15
47
+ Requires-Dist: pyyaml<7,>=6
48
+ Requires-Dist: typing-extensions<5,>=4.6.2
49
+ Requires-Dist: coloredlogs<16,>=15
50
+ Requires-Dist: prompt_toolkit<4,>=3.0
51
+ Provides-Extra: aws
52
+ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post2; extra == "aws"
53
+ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "aws"
54
+ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
55
+ Requires-Dist: moto<6,>=5.0.3; extra == "aws"
56
+ Requires-Dist: ec2_metadata<3; extra == "aws"
57
+ Provides-Extra: cwl
58
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "cwl"
59
+ Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
60
+ Requires-Dist: galaxy-tool-util<25; extra == "cwl"
61
+ Requires-Dist: galaxy-util<25; extra == "cwl"
62
+ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
63
+ Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
64
+ Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
65
+ Requires-Dist: CacheControl[filecache]; extra == "cwl"
66
+ Requires-Dist: cwl-utils>=0.36; extra == "cwl"
67
+ Provides-Extra: encryption
68
+ Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
69
+ Provides-Extra: google
70
+ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "google"
71
+ Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
72
+ Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
73
+ Provides-Extra: kubernetes
74
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "kubernetes"
75
+ Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
76
+ Requires-Dist: types-urllib3; extra == "kubernetes"
77
+ Requires-Dist: types-PyYAML; extra == "kubernetes"
78
+ Requires-Dist: idna>=2; extra == "kubernetes"
79
+ Provides-Extra: wdl
80
+ Requires-Dist: miniwdl==1.12.1; extra == "wdl"
81
+ Requires-Dist: wdlparse==0.1.0; extra == "wdl"
82
+ Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
83
+ Provides-Extra: server
84
+ Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "server"
85
+ Requires-Dist: flask<4,>=2.0; extra == "server"
86
+ Requires-Dist: werkzeug<4,>=2.0; extra == "server"
87
+ Requires-Dist: flask-cors==5.0.1; extra == "server"
88
+ Requires-Dist: gunicorn==23.0.0; extra == "server"
89
+ Requires-Dist: celery<6,>=5.1.0; extra == "server"
90
+ Requires-Dist: wes-service<5,>=4.0.0; extra == "server"
91
+ Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "server"
92
+ Provides-Extra: htcondor
93
+ Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
94
+ Provides-Extra: mesos
95
+ Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "mesos"
96
+ Provides-Extra: all
97
+ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post2; extra == "all"
98
+ Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
99
+ Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
100
+ Requires-Dist: moto<6,>=5.0.3; extra == "all"
101
+ Requires-Dist: ec2_metadata<3; extra == "all"
102
+ Requires-Dist: cwltool==3.1.20250110105449; extra == "all"
103
+ Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
104
+ Requires-Dist: galaxy-tool-util<25; extra == "all"
105
+ Requires-Dist: galaxy-util<25; extra == "all"
106
+ Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
107
+ Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
108
+ Requires-Dist: networkx!=2.8.1,<4; extra == "all"
109
+ Requires-Dist: CacheControl[filecache]; extra == "all"
110
+ Requires-Dist: cwl-utils>=0.36; extra == "all"
111
+ Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
112
+ Requires-Dist: apache-libcloud<3,>=2.2.1; extra == "all"
113
+ Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
114
+ Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
115
+ Requires-Dist: kubernetes<33,>=12.0.1; extra == "all"
116
+ Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
117
+ Requires-Dist: types-urllib3; extra == "all"
118
+ Requires-Dist: types-PyYAML; extra == "all"
119
+ Requires-Dist: idna>=2; extra == "all"
120
+ Requires-Dist: miniwdl==1.12.1; extra == "all"
121
+ Requires-Dist: wdlparse==0.1.0; extra == "all"
122
+ Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
123
+ Requires-Dist: connexion[swagger-ui]<4,>=2.10.0; extra == "all"
124
+ Requires-Dist: flask<4,>=2.0; extra == "all"
125
+ Requires-Dist: werkzeug<4,>=2.0; extra == "all"
126
+ Requires-Dist: flask-cors==5.0.1; extra == "all"
127
+ Requires-Dist: gunicorn==23.0.0; extra == "all"
128
+ Requires-Dist: celery<6,>=5.1.0; extra == "all"
129
+ Requires-Dist: wes-service<5,>=4.0.0; extra == "all"
130
+ Requires-Dist: ruamel.yaml<0.19,>=0.15; extra == "all"
131
+ Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "all"
132
+ Dynamic: author
133
+ Dynamic: author-email
134
+ Dynamic: classifier
135
+ Dynamic: description
136
+ Dynamic: description-content-type
137
+ Dynamic: home-page
138
+ Dynamic: license
139
+ Dynamic: provides-extra
140
+ Dynamic: requires-dist
141
+ Dynamic: requires-python
142
+ Dynamic: summary
143
+
144
+ .. image:: https://flat.badgen.net/https/ucsc-ci.com/api/v4/projects/3/jobs/artifacts/master/raw/badges1.2/required.json%3Fjob=cwl_badge?icon=commonwl&label=CWL%201.2%20Conformance
145
+ :alt: Toil CWL 1.2 Conformance Badge
146
+ :target: https://github.com/common-workflow-language/cwl-v1.2/blob/main/CONFORMANCE_TESTS.md
147
+
148
+ .. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
149
+ :alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
150
+ :target: https://gitter.im/bd2k-genomics-toil/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
151
+
152
+ Toil is a scalable, efficient, cross-platform (Linux & macOS) pipeline management system,
153
+ written entirely in Python, and designed around the principles of functional
154
+ programming. It supports running workflows written in either Common Workflow Language (`CWL`_) 1.0-1.2 or
155
+ Workflow Description Language (`WDL`_) 1.0-1.1, as well as having its own rich Python API for writing workflows against.
156
+ It supports running workflows locally on your system (e.g. a laptop), on an HPC cluster, or in the cloud.
157
+
158
+ * Check the `website`_ for a description of Toil and its features.
159
+ * Full documentation for the latest stable release can be found at
160
+ `Read the Docs`_.
161
+ * Please subscribe to low-volume `announce`_ mailing list so we keep you informed
162
+ * Google Groups discussion `forum`_
163
+ * See our occasional `blog`_ for tutorials.
164
+ * Use `biostars`_ channel for discussion.
165
+
166
+ .. _website: http://toil.ucsc-cgl.org/
167
+ .. _Read the Docs: https://toil.readthedocs.io/en/latest
168
+ .. _announce: https://groups.google.com/forum/#!forum/toil-announce
169
+ .. _forum: https://groups.google.com/forum/#!forum/toil-community
170
+ .. _blog: https://toilpipelines.wordpress.com/
171
+ .. _biostars: https://www.biostars.org/t/toil/
172
+ .. _CWL: https://www.commonwl.org/
173
+ .. _WDL: https://openwdl.org/
174
+
175
+ Notes:
176
+
177
+ * Toil moved from https://github.com/BD2KGenomics/toil to https://github.com/DataBiosphere/toil on July 5th, 2018.
178
+ * Toil dropped Python 2.7 support on February 13, 2020 (the last working py2.7 version is 3.24.0).
@@ -0,0 +1,259 @@
1
+ toil/__init__.py,sha256=lOuyAgzwG9OmmOOqvxMOQCUfDU50sudUjUlHvp3aHns,19330
2
+ toil/bus.py,sha256=Hi2TTCVGX4WTw67BOKo7l9yZw9Ln_zcobJzQxrfge4M,29938
3
+ toil/common.py,sha256=MR-AUVmQhNHmN1IqlXTHMNzAbMA8JvwDfXzcgxJCjJ8,81333
4
+ toil/deferred.py,sha256=2ShsuPqDwu0jhBQ6ocMwe4lfNegBm2lj7dOG9E7X3Zc,14152
5
+ toil/exceptions.py,sha256=oL2d9uutwtcPkMcEUGrixKUd4y1JLSA0-N7hNJqCLSk,1883
6
+ toil/job.py,sha256=w31q56P7pq6yvJpoH6mTQU3l0GBsm_O0jnDi5zpGQqI,173735
7
+ toil/leader.py,sha256=ubIdkEUb3hmGAc7oCWnKuvxOAlyyvOgVyDCN4i6DJAw,85101
8
+ toil/realtimeLogger.py,sha256=2O4AUaKtvItzzCAQKORIEHZ2cDoLf_6njoKWv_uzdFc,9878
9
+ toil/resource.py,sha256=PlI6R28aYqfYLDsztjlAYpkVGfSr2O0DhrgDXpXJxa0,25650
10
+ toil/serviceManager.py,sha256=GE5IUjQmNrekYv9tclim0RlCFf4ueOQ2H4qHjMBrOcg,19978
11
+ toil/statsAndLogging.py,sha256=JXir7TCV8OdDaAdt3VsDR2rbdNWk4ILyOwlKHVdoXT0,18696
12
+ toil/toilState.py,sha256=DD52XQv8wRCYzF7-F6Olqa_k6u-_py-JWyjqJHRh6Z0,17989
13
+ toil/version.py,sha256=_Xxx7pjBP8pHk7CZP_gx3EuetyVeDsi9SWhpZw7Ux3s,494
14
+ toil/worker.py,sha256=ywdN4v8qz5CuNQgMJcOlOsVj7BcdqdWuoTp6mFCnE0Y,38967
15
+ toil/batchSystems/__init__.py,sha256=T8psI5GmvE71_XmajKsfeQ3YUs6XM7rX1Fy9VNUX_-Q,1036
16
+ toil/batchSystems/abstractBatchSystem.py,sha256=h8mbA_k_7EZqOrbcdQmKHDcAy6D2ZB77XXS3Wu4-E90,33542
17
+ toil/batchSystems/abstractGridEngineBatchSystem.py,sha256=yR3nlCvJRcxYEDRyA3qYuNjvgmVDfzvW4bx9RY14TLg,24336
18
+ toil/batchSystems/awsBatch.py,sha256=vpV6CxUBi0sj5b91cWKi7Gonk276Nfz0_-QLZVoahNQ,27298
19
+ toil/batchSystems/cleanup_support.py,sha256=mpExAW-Tw2ZnGMgJEt06zZGjNLhXHPLVuDEraM9N8r4,4054
20
+ toil/batchSystems/contained_executor.py,sha256=2wP3sDyOanB2YrXxhdJ1PI3VohKK37ifgRya2F0rcMY,5111
21
+ toil/batchSystems/gridengine.py,sha256=OL1SOQXV5vz7UwNSSZ2lKTRArkeaVRND5FyqQ8K8V20,8114
22
+ toil/batchSystems/htcondor.py,sha256=nCylLUvRyX2k79LYriJgwhmowJBRekBWYUSpJgtawsY,18613
23
+ toil/batchSystems/kubernetes.py,sha256=5bC_ipdfgIzl2_I1SxqrcRHPjbcicBNznNK2c3u0gnY,86959
24
+ toil/batchSystems/local_support.py,sha256=R-DT_G5jcQXjZyDQ9OdFj0KUeULMSmcLBen3p-tSGdw,3893
25
+ toil/batchSystems/lsf.py,sha256=rQJe6dpnqs-LAZ0qaAo94VtxvhADwv8XzRTrQulp-mQ,18089
26
+ toil/batchSystems/lsfHelper.py,sha256=IE5y-x-Mofau7jksWjBdTLt5dVvyj-w8dd3gqwZ-r8o,7227
27
+ toil/batchSystems/options.py,sha256=HZ4nI2paKxulcWOd81R3p_j7BE4j2U9ZjWehDKaoyaA,8155
28
+ toil/batchSystems/registry.py,sha256=eizqlhn4AdBzykdOFu_S5ZcU4eYpMB_vDTb8ml6W3Kw,6701
29
+ toil/batchSystems/singleMachine.py,sha256=5qj9gr0bcT8RciNYM_eC-aHORdDSbdM4SGlam1SGlGw,40348
30
+ toil/batchSystems/slurm.py,sha256=xwipLljyzCy8IIXoK-bHCrI05FtGqvMCtUFpE-LnBU4,43565
31
+ toil/batchSystems/torque.py,sha256=A3Pe1IvIltpJSoVulfEUrilr-Ok_8E9hf41jbHYYzjQ,11795
32
+ toil/batchSystems/mesos/__init__.py,sha256=jkeRf24eXeOTdRibDzJtqKwXup47FseQS0UXKriKrxg,3554
33
+ toil/batchSystems/mesos/batchSystem.py,sha256=-3COwXjaibZClIHfAgj98SVy2R2yK8UUCjWaOj-R0hM,40194
34
+ toil/batchSystems/mesos/conftest.py,sha256=n1ZIXzZP0msJlZL_ZIG84trKifxFLRLr2uIr-EjDucQ,836
35
+ toil/batchSystems/mesos/executor.py,sha256=ETsWkx0JaERw7YS5rzv23_xj492hKSxDOsanVilwy7Q,12729
36
+ toil/batchSystems/mesos/test/__init__.py,sha256=qa4iDR9yGhZyViSvTyPH5wi6qIlKpKcC5-bj3uvB4PY,4718
37
+ toil/cwl/__init__.py,sha256=lfyX1eoJ1IA26AUzUl6-ODTi0ZqD_0F6-rL5eqfl_9E,2131
38
+ toil/cwl/conftest.py,sha256=R6Jw5-PeTCK0rapfHmV_VJwVcqlVbO5w3cFUbaIWUnk,848
39
+ toil/cwl/cwltoil.py,sha256=W7hekJoRG7K1VqRsWDS4In82iHy6Tte2vRdEy0zvdzA,182689
40
+ toil/cwl/utils.py,sha256=CV69GfCEJ1uvAlbDPJKq42Ed19vBE2E5F7v5MZJK7Gw,8023
41
+ toil/fileStores/__init__.py,sha256=xbcTdb31JXsLPxBbL3P5lm8XZlHNBohHPyawXNnZLOs,2388
42
+ toil/fileStores/abstractFileStore.py,sha256=g_gViwfPqYOjGOTQCXrHOulQanump6P0SPirvX6ZqWQ,30851
43
+ toil/fileStores/cachingFileStore.py,sha256=g5e4sV3XYkvpv6ZjbEuRc9KreX57RJtr4vOvxV_B4rw,101746
44
+ toil/fileStores/nonCachingFileStore.py,sha256=VsPoKz0Ln5HP-trLlAarqhqJIzdwpADfu8E_UJH4X9w,15806
45
+ toil/jobStores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
+ toil/jobStores/abstractJobStore.py,sha256=igIKcOQKOsgVqHQTD9PvWqFgjkBDttdbPM1LP-Gzsl0,78640
47
+ toil/jobStores/conftest.py,sha256=xNy_u3dGZz0206dnixzYvAvT85a0HfkIJw9XbsiGJnM,837
48
+ toil/jobStores/fileJobStore.py,sha256=r8rymME47BTjGW5a_kb1QDTWF4MDGNrrXtAc8qwpfIk,52035
49
+ toil/jobStores/googleJobStore.py,sha256=xcBWTsM35MyfzYwGZJmqBXOTFMBFHTUFDO0tqc5ALgY,24414
50
+ toil/jobStores/utils.py,sha256=R1NKkyHC9txT7KMXAoa51aNOJJOHx7HloPqI7PD6ipA,15521
51
+ toil/jobStores/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ toil/jobStores/aws/jobStore.py,sha256=bx3HIxUX52ynzFVgr-ytOWjdCKE_LoqCtB6BraN8zRU,89914
53
+ toil/jobStores/aws/utils.py,sha256=GDSNhcwgkhyrq1YDdYJscg1gjFyGpGxIARUYH3cMvPw,20584
54
+ toil/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
+ toil/lib/accelerators.py,sha256=HgDO5rgz-9tU_-fLfScABliMH3VdYSVt-juKfQsUenQ,7937
56
+ toil/lib/bioio.py,sha256=lB9fuyOjWtNZfQCc4x2WzGK3x3xDaq6kW8Ghj1wOchc,2384
57
+ toil/lib/compatibility.py,sha256=pPPTJyk3GUZ8SdAv14a3v2HLWbNtcnsAFuCEbh36UZ4,1535
58
+ toil/lib/conversions.py,sha256=CuOHhxpS8RFdp9U-oLSWmhSNLMKT7lqG5N5uhvxfCK4,5135
59
+ toil/lib/docker.py,sha256=IUWvImtzdaPrCqhzVmTrknXXpgPef23DLUsslZ7KInE,20036
60
+ toil/lib/dockstore.py,sha256=vg82P_g3awPz99dOGXt0k4yeJPlJkTfqPHLzyGujKrc,12848
61
+ toil/lib/ec2.py,sha256=gceJSDOlhiD0jtKs0e7rS8ploctt-fhJHzrYHr1_lcw,25570
62
+ toil/lib/ec2nodes.py,sha256=UVlJqVvMofRUhoEpND3Tal5p_p-p5_LHOJRA3dH7ziI,14693
63
+ toil/lib/exceptions.py,sha256=lj9oMa1B10TDeJ-7-xgL48Qrx6PExNrLUE2ZCdWQ2BQ,2946
64
+ toil/lib/expando.py,sha256=JN8dbYk5K48Dwmvb_3bCkO6NYbb89iL0CRchg3_FyFA,2924
65
+ toil/lib/ftp_utils.py,sha256=VqrstWP6dKJnTHtrxGPp7dzeDpyaD4IR4I5NKrPR3g0,7598
66
+ toil/lib/generatedEC2Lists.py,sha256=pcdygnoZLokhhihbzm3YMNtXsNZSsvrhjYFA784qeag,274723
67
+ toil/lib/history.py,sha256=oeUsiB18dRz4D8NpIiCwlnKSChpXaij7iEZRU26MZ4M,43694
68
+ toil/lib/history_submission.py,sha256=upoAYlcUg7_fRbfp90reniKZj_mC_eaafm1kAEjosBk,28014
69
+ toil/lib/humanize.py,sha256=6uXOB07rvAxO8jpIh2kPwy9bfoDu0eEUmBGz9m1chS8,1267
70
+ toil/lib/io.py,sha256=enIHHdUNsHx8iIT7lrCd6CXMH8s3dTIIMchl0FF4rHY,13001
71
+ toil/lib/iterables.py,sha256=gLbbxBzB0f-hhMRcCN9P-TDqNYK0myUKVCYBa9eJo-c,3459
72
+ toil/lib/memoize.py,sha256=2ikkIOXfZv7LGsoEn8i2ojYTqqNmIIBhSCfBQxySIKg,3225
73
+ toil/lib/misc.py,sha256=qjtya6l4lwYwzuaVy75CUlGwehWglumh76g2YentvZk,7354
74
+ toil/lib/objects.py,sha256=3XNMtBkNcIB2EMl5cteVDkuSRKAOpnd_GhxgTGVh43M,5381
75
+ toil/lib/resources.py,sha256=KkfM3hSUwTT__Avh8jPxM0VlrXvqajGjnXScMSlqT7Y,4005
76
+ toil/lib/retry.py,sha256=h95XV6zyOsaoTbfNZyPiSjzKL-Cw7HCKaDx37ikO08s,23020
77
+ toil/lib/threading.py,sha256=cdhEqrScvdtCELE0RUukXdV1nlyAlu-ya7DyVSbskrI,30921
78
+ toil/lib/throttle.py,sha256=ua21juOmGI7JZP4pXdR8-s2TpF6PpwW3sg11a2gcrbI,4955
79
+ toil/lib/trs.py,sha256=IK-I-wniAp8oUenit_BlVlGENEq4EukJ18Rr1-edTlI,18882
80
+ toil/lib/web.py,sha256=9eJQteiGfh721crY9CSH4zNpPeH4dylPJ7IarAlSAMo,1432
81
+ toil/lib/aws/__init__.py,sha256=VI77J2o4IehFBpEUjS4eHmXlxEplFnKYHq6w8ZyotEk,7905
82
+ toil/lib/aws/ami.py,sha256=SD728qocULXqWZmxPslcymukG-MxfNniMsBE9d1VVcM,9341
83
+ toil/lib/aws/iam.py,sha256=6qNJ6C61XVzbuPX1p-tcnEcabCjIultrVe9MrgcME04,18550
84
+ toil/lib/aws/s3.py,sha256=accn7bSneZttfb91pZR_80gDhCgVX7Z4ZOKOwM-6u9w,1156
85
+ toil/lib/aws/session.py,sha256=96l_AGsyA3CpTJiOqPemuLWtGsV28K4DU6vjtDR-pxA,15033
86
+ toil/lib/aws/utils.py,sha256=gk75XIj1Nlw8fN_KoaRb8n-rONmAtAuF2wYUqiev_2E,22205
87
+ toil/lib/encryption/__init__.py,sha256=HP19EUYJeIMdjZq11fLn_dXIGU98sIkpTxvMxvPaUSs,705
88
+ toil/lib/encryption/_dummy.py,sha256=6e2fthd6YdgFUgY0kjGb2052KLWUeXD_ejeoCTAThLU,1082
89
+ toil/lib/encryption/_nacl.py,sha256=_EL8LrF5T5DT0dhNIlyIxDB8c8irGe9nJVh1Sn7mFkA,3747
90
+ toil/lib/encryption/conftest.py,sha256=jCrRo2AtsGaO6hitm-wkNOTAU78JWSVA52E0hZdMpq8,227
91
+ toil/options/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
92
+ toil/options/common.py,sha256=c1RtkeeZYw94R-aI_aV6eupvqjYuwBstSBzErHMGs3k,46011
93
+ toil/options/cwl.py,sha256=-KdV5S345Ry-DzmngP_8nHTByeC5UKzEa48Fz-a_1vg,14002
94
+ toil/options/runner.py,sha256=7DxJLvcMm6CLwTZnPW1f9UmQKx1vw5Sq8VaqJDLzC7g,2388
95
+ toil/options/wdl.py,sha256=PJ5qile1zus-Jwld8Sb3KmG8zzIIuYVJMj-8jmaRB6U,3167
96
+ toil/provisioners/__init__.py,sha256=Z3OV95yx77LBVRUtjX_J8r_0OSC2glAIo5y7irbB-S0,9794
97
+ toil/provisioners/abstractProvisioner.py,sha256=R3OuUV2p8GWWuRs2PbaHkjHufOLyoknUaHq4vKPVGMc,58000
98
+ toil/provisioners/clusterScaler.py,sha256=9FgnSPbn2U_FYUSJUeN67A0kdh-Yl0roi5nZLeJVr_I,64980
99
+ toil/provisioners/gceProvisioner.py,sha256=8OsbSZeMgAB9l03zQ9WdKZ2-zFrHyzgXoLNdGKjdYcU,24212
100
+ toil/provisioners/node.py,sha256=RFLXufNQhjiHUO5fBfbEBd4cbtSUWsNmiGcDDodioMI,15198
101
+ toil/provisioners/aws/__init__.py,sha256=XmVkSuHGMvaMbDJ36yZHGkH5fsUJYJyi3V4R9MYw0Gs,8621
102
+ toil/provisioners/aws/awsProvisioner.py,sha256=Fd2twLvxKeDKfPw-HoxOdgtJqLajwVVJ1VqhDqt-D0I,89097
103
+ toil/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
+ toil/server/app.py,sha256=Xi8ZYs0qKsg1ISNETiYjMtt_qxrou3NuHZcx9bu3MNU,7048
105
+ toil/server/celery_app.py,sha256=PbdwRb7tY5MU4PkPgFZkq7CMiCe6LHBxw5YgcbdsKIE,663
106
+ toil/server/utils.py,sha256=HLZb3-HtHqf5QYP3rlSK6C-Av_YxexYrYCcwrcmDP_0,21942
107
+ toil/server/wsgi_app.py,sha256=3V3xr80F4uJUzeBbTbPI1uKJ3FUcI-H_8T1eiiEM5iw,1959
108
+ toil/server/api_spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
+ toil/server/api_spec/workflow_execution_service.swagger.yaml,sha256=zZ2QepvbpvLROIcVIHWrcQLUwXEqGfm68fmkdrx8rw8,25377
110
+ toil/server/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
111
+ toil/server/cli/wes_cwl_runner.py,sha256=WpvQeO-4LfnXlgcSuPaoZU0owoLFAdzraF86TfHi6m0,18526
112
+ toil/server/wes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
+ toil/server/wes/abstract_backend.py,sha256=d8IA2Fepwr9g6BU-CO3VBvODiPswsps9rPcOKUUvD8k,10202
114
+ toil/server/wes/amazon_wes_utils.py,sha256=xRrV7hiWoWVwxJykgL2HQdMf1FZg73eqEBltKXya1Fc,10287
115
+ toil/server/wes/tasks.py,sha256=DBjUUbxY6mq0H4aB8qiGhatmz6qWJWHkHPgfAqSr37w,24746
116
+ toil/server/wes/toil_backend.py,sha256=GaBhjr2evNwV07QiAiQf6GgDRGxiX1SblkLTEa7-WFo,27499
117
+ toil/test/__init__.py,sha256=HQBKUyJCEM1_kMz-aVsCKjOBZ0bT029gUlElfrE2sAE,45148
118
+ toil/test/batchSystems/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
119
+ toil/test/batchSystems/batchSystemTest.py,sha256=hMp5mmtGdWxnb4DIjCxy4m-BU9BeJ6n3w_-QF9ziYcg,55546
120
+ toil/test/batchSystems/batch_system_plugin_test.py,sha256=KUVDjbXgxopEqTC4pAAwUePc-QrThxhChyaernYVpVM,2802
121
+ toil/test/batchSystems/test_gridengine.py,sha256=kZCF7WIAmCF1LTPPWd4zC6piQr0UaKJ3kYKz5tsBal0,6353
122
+ toil/test/batchSystems/test_lsf_helper.py,sha256=JICnAPvU7HfqJ0RhIpC-IFfHLKftOAAQF2Iqc7nFs30,4697
123
+ toil/test/batchSystems/test_slurm.py,sha256=L1OXdVCHTMPrIsqzeJ8ckf9qdWjfW3qFokHJue-fWts,27473
124
+ toil/test/cactus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ toil/test/cactus/test_cactus_integration.py,sha256=4sRlsm7b29a08HNHFUbFu_gDW36TQeTfGBvRYUXNF_U,2219
126
+ toil/test/cwl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
+ toil/test/cwl/alwaysfails.cwl,sha256=EWDfzxMG4WqH2YQErhIHYPVc7-1eyucEUboj8r7yVbA,210
128
+ toil/test/cwl/colon_test_output.cwl,sha256=8evFOnHvpJEPn1lBI2zuEKueMUbh2p8oSNOKl-M4Ojw,401
129
+ toil/test/cwl/colon_test_output_job.yaml,sha256=BbXFRuWsRJV6JpJAutnHywJl_AbwEcwNRszArfRecxs,72
130
+ toil/test/cwl/conditional_wf.cwl,sha256=SAtUSmD5ta-DVG0SRHpT8EtOp8ztm-6v9Vskcl09c3s,357
131
+ toil/test/cwl/conditional_wf.yaml,sha256=WsS9dlpbRUll9M56KspQdOJ8h6SASTW7eRELefa274E,24
132
+ toil/test/cwl/conftest.py,sha256=TGB6svRjbKfzieJDrFN6v-Q0MkV94ABGewyFnAr9YSs,1999
133
+ toil/test/cwl/cwlTest.py,sha256=HuBDqCruWn7i8dGf-O910WQYEpJm9iThPWA7H0Kr-UE,67296
134
+ toil/test/cwl/directory_from_directory.cwl,sha256=-hjZuUs5fMpKMnbj-FZAgcns4iWsCFJV6Qh7-fsRn1I,556
135
+ toil/test/cwl/download.cwl,sha256=XQvz8or_-k6pwyhgeUeJOew0_b3BeHcF08EaalbySz4,296
136
+ toil/test/cwl/download_directory.cwl,sha256=RdPmElFeHJqXGWVqEqR5VFMmXDiJubhTcM9hIrAhKY4,535
137
+ toil/test/cwl/download_subdirectory.cwl,sha256=9xhggsaDvdA0fOUGOXWt853h1ir0KCKB4NhhAnYLKZ4,784
138
+ toil/test/cwl/echo-stderr.cwl,sha256=M-j3robw02M6PWkhbDI3Yn1GDGRDteLGMMFvfhL56mQ,342
139
+ toil/test/cwl/echo-stdout-log-dir.cwl,sha256=emXc_pJKCUI7zpN4c6WMeIRvAsvmibRA1vyHhQB3y4Y,228
140
+ toil/test/cwl/echo.cwl,sha256=1_Pvhg7RmQq3wpYUhQT6iS0IR7MN_CY8UEdBWjWcQf4,183
141
+ toil/test/cwl/echo_string.cwl,sha256=uBmj7qdRV3GFHQxbXvVeRqiOnqc2L-oHYELGGiJJC9M,845
142
+ toil/test/cwl/echo_string_scatter_capture_stdout.cwl,sha256=5FGemb98l2SP0e3ajeHfeE9-FKrmKfDzQmFixxu_kJM,1090
143
+ toil/test/cwl/file_from_directory.cwl,sha256=0SQUY6rJgqW9zhgX5RN-vjn1smDQweThAwKC5vy5fNk,536
144
+ toil/test/cwl/glob_dir.cwl,sha256=3a1VRsCTMgY0he8lxa-7OJJIeDHBry83DIEHguuIBwk,236
145
+ toil/test/cwl/load_contents.cwl,sha256=YASiGkUQPEa9dz6btNccARLI7sPppXmm5XaePIOpek8,464
146
+ toil/test/cwl/measure_default_memory.cwl,sha256=ZGVgLpnKNxOobjOEWc7EF-spCrDqhYrBHx9MjnJm2ew,252
147
+ toil/test/cwl/mpi_simple.cwl,sha256=xgsOk2yGbAHL3pwtCtxZd6_c9Lopl1xh32dO0D6-Qbc,470
148
+ toil/test/cwl/not_run_required_input.cwl,sha256=DK8CeCEw8thWiqvoRQmFQcZq6I3HLrt_7gzbYk1te-c,836
149
+ toil/test/cwl/nvidia_smi.cwl,sha256=peKLDFC9_0zEt7CoRLCQDtAE5bjfotok8Ljmn1nBVtA,474
150
+ toil/test/cwl/optional-file.cwl,sha256=TD2oq8XlGKXz7ytl5l2DB6Gf8KTCeciTFH8tTmB9NqQ,229
151
+ toil/test/cwl/preemptible.cwl,sha256=BLmrYR3nZX89p1I0-8vGuE-hqKEUbfsuY-CWDcf32BY,304
152
+ toil/test/cwl/preemptible_expression.cwl,sha256=T_90Y6dBe9nDCjp8Hg4dv9xFsaWVsKSHv5nZ2mafBZ8,639
153
+ toil/test/cwl/revsort.cwl,sha256=BDAyPb1Tpkp55I_XIiZ3_7dXzQJxxkXo_2CHSk5lcEw,2023
154
+ toil/test/cwl/revsort2.cwl,sha256=LNXgxDVC2aIhPTTgOdDcKteDLmi3y3vPAFF_GdURCcQ,2024
155
+ toil/test/cwl/revtool.cwl,sha256=qzl3FHpaF41KPpxP9yhrOxUCsSm1bjsr2XXFpBZ_LkM,1301
156
+ toil/test/cwl/revtool2.cwl,sha256=CwJT3A6mmjBtneDzVDEfcYqoIerKm7A7A6UcyrVWrqo,767
157
+ toil/test/cwl/s3_secondary_file.cwl,sha256=aHxO8EwWDxJb4CzuAt3VJfbQaHPQARLs7XVJ5DtMITs,378
158
+ toil/test/cwl/scatter_duplicate_outputs.cwl,sha256=1ubeij5YQhjHe0igq5xL-Caje6gheIMfA5HKBJrBeh8,699
159
+ toil/test/cwl/seqtk_seq.cwl,sha256=uR7wlwxlNLkA_hIFglgiWGoOftQqFk4sH7Wo5zF60-c,406
160
+ toil/test/cwl/sorttool.cwl,sha256=c1fhFZ_ekTMuEAM0nikUPd2j-etPQL8MqyuSJLNadtc,1060
161
+ toil/test/cwl/stream.cwl,sha256=jtyYdmSyCeI6uoOeX5Nb_LMIXhR5Sqmu8dGSr_Y2Z8g,732
162
+ toil/test/cwl/test_filename_conflict_detection.cwl,sha256=wVrc9EXmO74tgaEe4oE-EMpmQiHIuUFbLh0-qVisVZo,699
163
+ toil/test/cwl/test_filename_conflict_detection_at_root.cwl,sha256=G3clUTFeeGZt5xPi2SNs05W7I-RT0OEN2C8xKHzQ300,695
164
+ toil/test/cwl/test_filename_conflict_resolution.cwl,sha256=sIoXi61RzCkzD1MTCoglRYAXo8xaE1JiC6irvSANK0I,717
165
+ toil/test/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ toil/test/docs/scriptsTest.py,sha256=UKtoAhBejHE7ID0LxibGSoDaHaZXCBHJlMwXqv7KD6s,5806
167
+ toil/test/jobStores/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
168
+ toil/test/jobStores/jobStoreTest.py,sha256=QEma-WTO-9kzp298LJXVUifXc1yP3OutKa3D0G7opkY,69620
169
+ toil/test/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ toil/test/lib/dockerTest.py,sha256=w9VZ7KHGz3eEdvV9McqT7NgXXWENkizubaEaiPDVeh4,15607
171
+ toil/test/lib/test_conversions.py,sha256=JSwdTRYklpofPV3VANHC7vHZ7WcpEWOZD6G9Tkjd45w,7232
172
+ toil/test/lib/test_ec2.py,sha256=p3GfCgSSLqZQ-oanHk1sdIuP1wVUwQvXKsXzWl5ow0I,4183
173
+ toil/test/lib/test_history.py,sha256=PBgtJzzC_0VAil_yofh4TQX3W6jmGHaXR-dt5eDv3Xg,8344
174
+ toil/test/lib/test_misc.py,sha256=X1o4Dw1PcbnS1Y_gTR2q4STwqRjXYjSEUy2Q1BxeijM,2766
175
+ toil/test/lib/test_trs.py,sha256=mcGn3boLFkjS_aPMOS-gwlFd7QcMVM-vpLadBnZb8SE,6918
176
+ toil/test/lib/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
177
+ toil/test/lib/aws/test_iam.py,sha256=2YTrL6r0WIybOBFltU0bJ4XOADT6vlRRXfbsvexjBt8,6921
178
+ toil/test/lib/aws/test_s3.py,sha256=NpYO0GnACbGpaKPwM0yeObxqBoFYJv92RUP7VdtompE,3061
179
+ toil/test/lib/aws/test_utils.py,sha256=_JI_FfpyONfLE4HduibcAPF7_Y39MUx4H6wk7KqdWw8,2253
180
+ toil/test/mesos/MesosDataStructuresTest.py,sha256=IcV-bNWJcMnij0WruhTk4RTmGROTTcU3pav5e4gHPfA,3225
181
+ toil/test/mesos/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
182
+ toil/test/mesos/helloWorld.py,sha256=xX65tKSBIKAxguBoAe-6Twp2XcBK1QEnKp5LRVImgK4,2204
183
+ toil/test/mesos/stress.py,sha256=0_-l6SvPc0qgwF0bsJgMm1-cmKx-LZ1-_4XlfghPU7s,2126
184
+ toil/test/options/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
185
+ toil/test/options/options.py,sha256=xpp0PZKilYeXwkXUBszRZSC_LziX_rPi9shsQlemuuo,1474
186
+ toil/test/provisioners/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
187
+ toil/test/provisioners/clusterScalerTest.py,sha256=-Q5epOMHynfnlNZfpVXMU48puw_G9fyLiW8Gl8Qrk5o,44463
188
+ toil/test/provisioners/clusterTest.py,sha256=rTBsPJVUtJJ3HFHPKyFiy3Tz22whisdNnZu9R5-gVv8,9658
189
+ toil/test/provisioners/gceProvisionerTest.py,sha256=sB5aPWFx0xLuvkLuJaJrd1Lc-p_MutAfkMWKHxherZI,13601
190
+ toil/test/provisioners/provisionerTest.py,sha256=_JAvTs9bjynVpRkJI0VLPHZw-Y7kHI9B1vaWR4RomKA,2179
191
+ toil/test/provisioners/restartScript.py,sha256=GodLqsIiYNxXFWQtyYHrxACI1fSUeGzcltO6qOdznj4,416
192
+ toil/test/provisioners/aws/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
193
+ toil/test/provisioners/aws/awsProvisionerTest.py,sha256=aSAfNM0DDzkJU63ZHaCBtu-dwO5wc3Cup5IQ9o4XkNM,23710
194
+ toil/test/server/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
195
+ toil/test/server/serverTest.py,sha256=4daj22UNwzWXqTTTmgjDyIFeG8Js4iv-ZmBxeyHcjhs,27553
196
+ toil/test/sort/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
197
+ toil/test/sort/restart_sort.py,sha256=A-1pWMhSIHSbtib-u1rvOFbhRqW_mQlf6dEbelFs7Q0,11358
198
+ toil/test/sort/sort.py,sha256=ty46x-3-8Gj21itM8V31HLRZN7JGLF37xPM5aIDx9dA,11187
199
+ toil/test/sort/sortTest.py,sha256=0dUZ0RCzE66bRcmOHJUD5MFg4UkSRbwhnHVkzX54wI4,12239
200
+ toil/test/src/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
201
+ toil/test/src/autoDeploymentTest.py,sha256=Oqy3j-jBeMCgu66wrxkDVUKFdqvkQ7aMj7GN6gKG7cE,23947
202
+ toil/test/src/busTest.py,sha256=HVmXGTet496PZ0f8qW6NVPz9kLZigBTo4aNWN6iTbAk,5409
203
+ toil/test/src/checkpointTest.py,sha256=LahYir7B3FNttP4OhbiYFKjxIftjTiuIXHC83xsxzNI,4464
204
+ toil/test/src/deferredFunctionTest.py,sha256=FP6VQ_eKPcSsxuhWx1n02G3Myu4D3RFUgMSN7Y2RY_8,13360
205
+ toil/test/src/dockerCheckTest.py,sha256=CuXBewb1ba4rOO3YOrmChxPvdOfJGXNcT8P47HcaY1g,4407
206
+ toil/test/src/environmentTest.py,sha256=k-WsZ3-9Xn0Vctd8tBQTPR_fVqY-f1VHC5U3_d7qdd4,4239
207
+ toil/test/src/fileStoreTest.py,sha256=7Rh9qRGEB5nBdcerRz-7QLfq47pyfS1XQSKCOaQQS3w,73186
208
+ toil/test/src/helloWorldTest.py,sha256=vPxXEYDZZuMynm_yQ5ZZPcm3AzXdYLT9bs0kP72OM2w,1727
209
+ toil/test/src/importExportFileTest.py,sha256=mlYMR8jh967KgvX37yYmI-cd_E8bcqr7_LvBhiOkAzQ,7669
210
+ toil/test/src/jobDescriptionTest.py,sha256=ops9NpnUa1aKGPrTOXU3jTwiDszCRJzHHAZzQx8bF10,4335
211
+ toil/test/src/jobEncapsulationTest.py,sha256=K1Q2m_1ZrXC6OI5ms_JSltEsGvuE1O_M5rWST6VWiBg,2463
212
+ toil/test/src/jobFileStoreTest.py,sha256=88slShZfPJgVrEP6pTwuVxPJ-cROwMzdIdgPlogdg18,8977
213
+ toil/test/src/jobServiceTest.py,sha256=EDhU86qPUfK0yMZy8Kc1CAgTFt-s3YCPFmRfGsTsoGE,17510
214
+ toil/test/src/jobTest.py,sha256=Kb-i3E-EDZQFFH4UuBQU0oduVBejeRY1zH_tlPWz6vc,27813
215
+ toil/test/src/miscTests.py,sha256=lG1wozuqyXTq5_egV0bEbHtDnjM0b5CT0VpJYGV5clI,7798
216
+ toil/test/src/promisedRequirementTest.py,sha256=Xu91RdffN5Vd0LWuIE4g4c1sc51SPB64KEhbqoU7XWY,9580
217
+ toil/test/src/promisesTest.py,sha256=HpFIDWWkEjdEA-vIAyX_Rn9oYwFOHMvSDSlOkihy-PE,2318
218
+ toil/test/src/realtimeLoggerTest.py,sha256=bvr7YDS_co48fmdKo-c0bBXn2fnzvUAFRMODNyTkvfQ,2443
219
+ toil/test/src/regularLogTest.py,sha256=T6-rU_qKczGroLnoDVuZj1xcxJHVQvk2klwhFX9vfnk,4308
220
+ toil/test/src/resourceTest.py,sha256=hE4KnAlKAAAYphSp-Edv9z3Q__jP2P3PVZGlZfPZL-0,11071
221
+ toil/test/src/restartDAGTest.py,sha256=U6xLIBtOBH-FneR1JUA03bIEBreHuKR3jxCfDum4dic,6227
222
+ toil/test/src/resumabilityTest.py,sha256=8PpAWCkgdAEvKCneOVGGaY77sxTSbPgJyN_C-qGSw-c,4183
223
+ toil/test/src/retainTempDirTest.py,sha256=vmNb2cplGoWgRQn71KcD3HdA2Fxx421SGAky_k9ibgg,4589
224
+ toil/test/src/systemTest.py,sha256=6qKhsl0k1zegb5v7D92CswSSoDGkQz9Z9nJSVN6UCmw,2271
225
+ toil/test/src/threadingTest.py,sha256=9umRwuZc2LFE3eT36Yg65XulKl0QzEkk289sn14GPbA,5229
226
+ toil/test/src/toilContextManagerTest.py,sha256=vM8AgCCghzI5GVginyyhaZZFGZF6xF42-NXl2S0quhY,3114
227
+ toil/test/src/userDefinedJobArgTypeTest.py,sha256=5PaS_418DbCAk7csGmgx3VC90mB-9Y1X116b9LSLs1w,2869
228
+ toil/test/src/workerTest.py,sha256=88Mz9ES62IijTkLdnzCxB3ZVEtLS2fxbIVlfhjI4SwI,6334
229
+ toil/test/utils/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
230
+ toil/test/utils/toilDebugTest.py,sha256=FlS8_0jKF5d-Y_g4RucRWQDJtUUM6nsjNCrjxVgqjRQ,9096
231
+ toil/test/utils/toilKillTest.py,sha256=qMYnMjeqZGxXan8k0ITaK7D80YYVmfdplFDV0LIJ0t4,3494
232
+ toil/test/utils/utilsTest.py,sha256=cHDWs_KOud1nIEQ13M5GNV_SE4rOPAtoCb43MbZD9l8,19513
233
+ toil/test/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
234
+ toil/test/wdl/wdltoil_test.py,sha256=7ULpOyDPCO0ObYY2t7nHiHm2Mu7TO1XhLlHquoOuTU0,40105
235
+ toil/test/wdl/wdltoil_test_kubernetes.py,sha256=a45TojDEwksW7MYk1F0KzQdgXJRktQYOsq36CfpBvuo,2818
236
+ toil/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
+ toil/utils/toilClean.py,sha256=X6Fws6LVqa-ScUITMTomV5iohXa3yz_rAIFnUfXlqZU,1850
238
+ toil/utils/toilConfig.py,sha256=Ki6gGV-9d21z06u-A0meE2H0MjJUCT4mQEsMmERHn8o,1502
239
+ toil/utils/toilDebugFile.py,sha256=HdBOe6IX6xyzGjDf_ZDxCTWaeA9lFO94UexGV1oeptE,6302
240
+ toil/utils/toilDebugJob.py,sha256=K3j5wqDBzLHRGwThE_PDVN0-yKFl7xETDWXrNe6EnQc,10796
241
+ toil/utils/toilDestroyCluster.py,sha256=OvwlKgomHiLptN8GjLouBzfFCo-SyLfrRWF4sv0kPww,1416
242
+ toil/utils/toilKill.py,sha256=21zOstvFb32cwQlhMsG5Q4lPT2CSnZ7OXEK1mmyLmtk,2751
243
+ toil/utils/toilLaunchCluster.py,sha256=nKoqmbAnadoZNKx7plzyZzAgMj6yn38tu2LOQqjLNUU,12931
244
+ toil/utils/toilMain.py,sha256=Lz7dtkpE8urTRgimRjewKvbh4Xgh6l0OJRtxX203LyI,2790
245
+ toil/utils/toilRsyncCluster.py,sha256=cR-4o9KpoyBdObCwQgpAqpO30VK3gGzwHKOGyQHGQeQ,2150
246
+ toil/utils/toilServer.py,sha256=4XbyOHQHgMWWrCWj9Uz1M-jLQheV2Ju-DQ_fNdnBg1o,1178
247
+ toil/utils/toilSshCluster.py,sha256=QSz2w1vJfiBVicz3ooLqNJM_BRKrF3N6mxWdbmF9Pbo,2840
248
+ toil/utils/toilStats.py,sha256=I8ERYFA0NxYDC8meBoMkxABmVfTlvYWnOBRP8BfVGEc,25615
249
+ toil/utils/toilStatus.py,sha256=qacxW5lcguvmhUi1b4cjm1acJik0zpsP7CsUuZyX-fo,20424
250
+ toil/utils/toilUpdateEC2Instances.py,sha256=dreH9Vc2qUoc0he5AwqiFmqdOQp3tMmIfkjWm7GS5qE,1295
251
+ toil/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
252
+ toil/wdl/utils.py,sha256=U0TqbVTsap0VdeZjrUf4l71A7Zns-Hkso1B1Zdp2LRk,1316
253
+ toil/wdl/wdltoil.py,sha256=zlYTgS3cYhpVjCCEF0LgCjj1lMaxXV_64i3cUtwI-d0,240083
254
+ toil-8.1.0b1.dist-info/LICENSE,sha256=YVxVi652J1ZDmtC3EMP5r0EbK85-hm_pzogiULmlqUA,12862
255
+ toil-8.1.0b1.dist-info/METADATA,sha256=vlhUOh-R2Xlue9YJSlAWX_lkBvGCOldmshpGPFy93Pg,8663
256
+ toil-8.1.0b1.dist-info/WHEEL,sha256=52BFRY2Up02UkjOa29eZOS2VxUrpPORXg1pkohGGUS8,91
257
+ toil-8.1.0b1.dist-info/entry_points.txt,sha256=EF2yFhV2UYuJGr-OjMkUOd3RyOCgRWQbS6XJtBJ25eM,436
258
+ toil-8.1.0b1.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
259
+ toil-8.1.0b1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.43.0)
2
+ Generator: setuptools (76.0.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,158 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: toil
3
- Version: 7.0.0
4
- Summary: Pipeline management software for clusters.
5
- Home-page: https://github.com/DataBiosphere/toil
6
- Author: Benedict Paten and the Toil community
7
- Author-email: toil-community@googlegroups.com
8
- License: Apache License v2.0
9
- Classifier: Development Status :: 5 - Production/Stable
10
- Classifier: Environment :: Console
11
- Classifier: Intended Audience :: Developers
12
- Classifier: Intended Audience :: Science/Research
13
- Classifier: Intended Audience :: Healthcare Industry
14
- Classifier: License :: OSI Approved :: Apache Software License
15
- Classifier: Natural Language :: English
16
- Classifier: Operating System :: MacOS :: MacOS X
17
- Classifier: Operating System :: POSIX
18
- Classifier: Operating System :: POSIX :: Linux
19
- Classifier: Programming Language :: Python :: 3.8
20
- Classifier: Programming Language :: Python :: 3.9
21
- Classifier: Programming Language :: Python :: 3.10
22
- Classifier: Programming Language :: Python :: 3.11
23
- Classifier: Topic :: Scientific/Engineering
24
- Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
25
- Classifier: Topic :: Scientific/Engineering :: Astronomy
26
- Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
27
- Classifier: Topic :: Scientific/Engineering :: Information Analysis
28
- Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
29
- Classifier: Topic :: System :: Distributed Computing
30
- Classifier: Topic :: Utilities
31
- Requires-Python: >=3.8
32
- Description-Content-Type: text/x-rst
33
- License-File: LICENSE
34
- Requires-Dist: dill <0.4,>=0.3.2
35
- Requires-Dist: requests <=2.31.0
36
- Requires-Dist: docker <8,>=6.1.0
37
- Requires-Dist: urllib3 <3,>=1.26.0
38
- Requires-Dist: python-dateutil
39
- Requires-Dist: psutil <6,>=3.0.1
40
- Requires-Dist: PyPubSub <5,>=4.0.3
41
- Requires-Dist: addict <2.5,>=2.2.1
42
- Requires-Dist: enlighten <2,>=1.5.2
43
- Requires-Dist: configargparse <2,>=1.7
44
- Requires-Dist: ruamel.yaml >=0.15
45
- Requires-Dist: pyyaml <7,>=6
46
- Requires-Dist: typing-extensions <5,>=4.6.2
47
- Requires-Dist: coloredlogs <16,>=15
48
- Provides-Extra: all
49
- Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts] <2,>=1.28.3.post2 ; extra == 'all'
50
- Requires-Dist: mypy-boto3-iam <2,>=1.28.3.post2 ; extra == 'all'
51
- Requires-Dist: mypy-boto3-s3 <2,>=1.28.3.post2 ; extra == 'all'
52
- Requires-Dist: moto <6,>=5.0.3 ; extra == 'all'
53
- Requires-Dist: ec2-metadata <3 ; extra == 'all'
54
- Requires-Dist: cwltool ==3.1.20240508115724 ; extra == 'all'
55
- Requires-Dist: schema-salad <9,>=8.4.20230128170514 ; extra == 'all'
56
- Requires-Dist: galaxy-tool-util <25 ; extra == 'all'
57
- Requires-Dist: galaxy-util <25 ; extra == 'all'
58
- Requires-Dist: ruamel.yaml <=0.19,>=0.15 ; extra == 'all'
59
- Requires-Dist: ruamel.yaml.clib >=0.2.6 ; extra == 'all'
60
- Requires-Dist: networkx !=2.8.1,<4 ; extra == 'all'
61
- Requires-Dist: CacheControl[filecache] ; extra == 'all'
62
- Requires-Dist: pynacl <2,>=1.4.0 ; extra == 'all'
63
- Requires-Dist: apache-libcloud <3,>=2.2.1 ; extra == 'all'
64
- Requires-Dist: google-cloud-storage <=2.8.0,>=2 ; extra == 'all'
65
- Requires-Dist: google-auth <3,>=2.18.1 ; extra == 'all'
66
- Requires-Dist: kubernetes <22,>=12.0.1 ; extra == 'all'
67
- Requires-Dist: kubernetes-stubs ==v22.6.0post1 ; extra == 'all'
68
- Requires-Dist: types-urllib3 ; extra == 'all'
69
- Requires-Dist: types-PyYAML ; extra == 'all'
70
- Requires-Dist: idna >=2 ; extra == 'all'
71
- Requires-Dist: miniwdl ==1.12.0 ; extra == 'all'
72
- Requires-Dist: wdlparse ==0.1.0 ; extra == 'all'
73
- Requires-Dist: connexion[swagger-ui] <3,>=2.10.0 ; extra == 'all'
74
- Requires-Dist: flask <3,>=2.0 ; extra == 'all'
75
- Requires-Dist: werkzeug <3,>=2.0 ; extra == 'all'
76
- Requires-Dist: flask-cors ==4.0.1 ; extra == 'all'
77
- Requires-Dist: gunicorn ==22.0.0 ; extra == 'all'
78
- Requires-Dist: celery <6,>=5.1.0 ; extra == 'all'
79
- Requires-Dist: wes-service <5,>=4.0.0 ; extra == 'all'
80
- Requires-Dist: ruamel.yaml <0.19,>=0.15 ; extra == 'all'
81
- Requires-Dist: pymesos <0.4,>=0.3.15 ; (python_version < "3.11") and extra == 'all'
82
- Requires-Dist: graphlib-backport ==1.0 ; (python_version < "3.9") and extra == 'all'
83
- Provides-Extra: aws
84
- Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts] <2,>=1.28.3.post2 ; extra == 'aws'
85
- Requires-Dist: mypy-boto3-iam <2,>=1.28.3.post2 ; extra == 'aws'
86
- Requires-Dist: mypy-boto3-s3 <2,>=1.28.3.post2 ; extra == 'aws'
87
- Requires-Dist: moto <6,>=5.0.3 ; extra == 'aws'
88
- Requires-Dist: ec2-metadata <3 ; extra == 'aws'
89
- Provides-Extra: cwl
90
- Requires-Dist: cwltool ==3.1.20240508115724 ; extra == 'cwl'
91
- Requires-Dist: schema-salad <9,>=8.4.20230128170514 ; extra == 'cwl'
92
- Requires-Dist: galaxy-tool-util <25 ; extra == 'cwl'
93
- Requires-Dist: galaxy-util <25 ; extra == 'cwl'
94
- Requires-Dist: ruamel.yaml <=0.19,>=0.15 ; extra == 'cwl'
95
- Requires-Dist: ruamel.yaml.clib >=0.2.6 ; extra == 'cwl'
96
- Requires-Dist: networkx !=2.8.1,<4 ; extra == 'cwl'
97
- Requires-Dist: CacheControl[filecache] ; extra == 'cwl'
98
- Provides-Extra: encryption
99
- Requires-Dist: pynacl <2,>=1.4.0 ; extra == 'encryption'
100
- Provides-Extra: google
101
- Requires-Dist: apache-libcloud <3,>=2.2.1 ; extra == 'google'
102
- Requires-Dist: google-cloud-storage <=2.8.0,>=2 ; extra == 'google'
103
- Requires-Dist: google-auth <3,>=2.18.1 ; extra == 'google'
104
- Provides-Extra: htcondor
105
- Requires-Dist: htcondor <11,>=10.2.0.post1 ; (sys_platform!="darwin") and extra == 'htcondor'
106
- Provides-Extra: kubernetes
107
- Requires-Dist: kubernetes <22,>=12.0.1 ; extra == 'kubernetes'
108
- Requires-Dist: kubernetes-stubs ==v22.6.0post1 ; extra == 'kubernetes'
109
- Requires-Dist: types-urllib3 ; extra == 'kubernetes'
110
- Requires-Dist: types-PyYAML ; extra == 'kubernetes'
111
- Requires-Dist: idna >=2 ; extra == 'kubernetes'
112
- Provides-Extra: mesos
113
- Requires-Dist: pymesos <0.4,>=0.3.15 ; (python_version < "3.11") and extra == 'mesos'
114
- Provides-Extra: server
115
- Requires-Dist: connexion[swagger-ui] <3,>=2.10.0 ; extra == 'server'
116
- Requires-Dist: flask <3,>=2.0 ; extra == 'server'
117
- Requires-Dist: werkzeug <3,>=2.0 ; extra == 'server'
118
- Requires-Dist: flask-cors ==4.0.1 ; extra == 'server'
119
- Requires-Dist: gunicorn ==22.0.0 ; extra == 'server'
120
- Requires-Dist: celery <6,>=5.1.0 ; extra == 'server'
121
- Requires-Dist: wes-service <5,>=4.0.0 ; extra == 'server'
122
- Requires-Dist: ruamel.yaml <0.19,>=0.15 ; extra == 'server'
123
- Provides-Extra: wdl
124
- Requires-Dist: miniwdl ==1.12.0 ; extra == 'wdl'
125
- Requires-Dist: wdlparse ==0.1.0 ; extra == 'wdl'
126
- Requires-Dist: graphlib-backport ==1.0 ; (python_version < "3.9") and extra == 'wdl'
127
-
128
- .. image:: https://badges.gitter.im/bd2k-genomics-toil/Lobby.svg
129
- :alt: Join the chat at https://gitter.im/bd2k-genomics-toil/Lobby
130
- :target: https://gitter.im/bd2k-genomics-toil/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
131
-
132
- Toil is a scalable, efficient, cross-platform (Linux & macOS) pipeline management system,
133
- written entirely in Python, and designed around the principles of functional
134
- programming. It supports running workflows written in either Common Workflow Language (`CWL`_) 1.0-1.2 or
135
- Workflow Description Language (`WDL`_) 1.0-1.1, as well as having its own rich Python API for writing workflows against.
136
- It supports running workflows locally on your system (e.g. a laptop), on an HPC cluster, or in the cloud.
137
-
138
- * Check the `website`_ for a description of Toil and its features.
139
- * Full documentation for the latest stable release can be found at
140
- `Read the Docs`_.
141
- * Please subscribe to low-volume `announce`_ mailing list so we keep you informed
142
- * Google Groups discussion `forum`_
143
- * See our occasional `blog`_ for tutorials.
144
- * Use `biostars`_ channel for discussion.
145
-
146
- .. _website: http://toil.ucsc-cgl.org/
147
- .. _Read the Docs: https://toil.readthedocs.io/en/latest
148
- .. _announce: https://groups.google.com/forum/#!forum/toil-announce
149
- .. _forum: https://groups.google.com/forum/#!forum/toil-community
150
- .. _blog: https://toilpipelines.wordpress.com/
151
- .. _biostars: https://www.biostars.org/t/toil/
152
- .. _CWL: https://www.commonwl.org/
153
- .. _WDL: https://openwdl.org/
154
-
155
- Notes:
156
-
157
- * Toil moved from https://github.com/BD2KGenomics/toil to https://github.com/DataBiosphere/toil on July 5th, 2018.
158
- * Toil dropped Python 2.7 support on February 13, 2020 (the last working py2.7 version is 3.24.0).