toil 8.2.0__py3-none-any.whl → 9.1.0__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.
- toil/batchSystems/abstractBatchSystem.py +13 -5
- toil/batchSystems/abstractGridEngineBatchSystem.py +17 -5
- toil/batchSystems/kubernetes.py +13 -2
- toil/batchSystems/mesos/batchSystem.py +33 -2
- toil/batchSystems/registry.py +15 -118
- toil/batchSystems/slurm.py +191 -16
- toil/common.py +20 -1
- toil/cwl/cwltoil.py +97 -119
- toil/cwl/utils.py +103 -3
- toil/fileStores/__init__.py +1 -1
- toil/fileStores/abstractFileStore.py +5 -2
- toil/fileStores/cachingFileStore.py +1 -1
- toil/job.py +30 -14
- toil/jobStores/abstractJobStore.py +35 -255
- toil/jobStores/aws/jobStore.py +864 -1964
- toil/jobStores/aws/utils.py +24 -270
- toil/jobStores/fileJobStore.py +2 -1
- toil/jobStores/googleJobStore.py +32 -13
- toil/jobStores/utils.py +0 -327
- toil/leader.py +27 -22
- toil/lib/accelerators.py +1 -1
- toil/lib/aws/config.py +22 -0
- toil/lib/aws/s3.py +477 -9
- toil/lib/aws/utils.py +22 -33
- toil/lib/checksum.py +88 -0
- toil/lib/conversions.py +33 -31
- toil/lib/directory.py +217 -0
- toil/lib/ec2.py +97 -29
- toil/lib/exceptions.py +2 -1
- toil/lib/expando.py +2 -2
- toil/lib/generatedEC2Lists.py +138 -19
- toil/lib/io.py +33 -2
- toil/lib/memoize.py +21 -7
- toil/lib/misc.py +1 -1
- toil/lib/pipes.py +385 -0
- toil/lib/plugins.py +106 -0
- toil/lib/retry.py +1 -1
- toil/lib/threading.py +1 -1
- toil/lib/url.py +320 -0
- toil/lib/web.py +4 -5
- toil/options/cwl.py +13 -1
- toil/options/runner.py +17 -10
- toil/options/wdl.py +12 -1
- toil/provisioners/__init__.py +5 -2
- toil/provisioners/aws/__init__.py +43 -36
- toil/provisioners/aws/awsProvisioner.py +47 -15
- toil/provisioners/node.py +60 -12
- toil/resource.py +3 -13
- toil/server/app.py +12 -6
- toil/server/cli/wes_cwl_runner.py +2 -2
- toil/server/wes/abstract_backend.py +21 -43
- toil/server/wes/toil_backend.py +2 -2
- toil/test/__init__.py +16 -18
- toil/test/batchSystems/batchSystemTest.py +2 -9
- toil/test/batchSystems/batch_system_plugin_test.py +7 -0
- toil/test/batchSystems/test_slurm.py +103 -14
- toil/test/cwl/cwlTest.py +181 -8
- toil/test/cwl/staging_cat.cwl +27 -0
- toil/test/cwl/staging_make_file.cwl +25 -0
- toil/test/cwl/staging_workflow.cwl +43 -0
- toil/test/cwl/zero_default.cwl +61 -0
- toil/test/docs/scripts/tutorial_staging.py +17 -8
- toil/test/docs/scriptsTest.py +2 -1
- toil/test/jobStores/jobStoreTest.py +23 -133
- toil/test/lib/aws/test_iam.py +7 -7
- toil/test/lib/aws/test_s3.py +30 -33
- toil/test/lib/aws/test_utils.py +9 -9
- toil/test/lib/test_url.py +69 -0
- toil/test/lib/url_plugin_test.py +105 -0
- toil/test/provisioners/aws/awsProvisionerTest.py +60 -7
- toil/test/provisioners/clusterTest.py +15 -2
- toil/test/provisioners/gceProvisionerTest.py +1 -1
- toil/test/server/serverTest.py +78 -36
- toil/test/src/autoDeploymentTest.py +2 -3
- toil/test/src/fileStoreTest.py +89 -87
- toil/test/utils/ABCWorkflowDebug/ABC.txt +1 -0
- toil/test/utils/ABCWorkflowDebug/debugWorkflow.py +4 -4
- toil/test/utils/toilKillTest.py +35 -28
- toil/test/wdl/md5sum/md5sum-gs.json +1 -1
- toil/test/wdl/md5sum/md5sum.json +1 -1
- toil/test/wdl/testfiles/read_file.wdl +18 -0
- toil/test/wdl/testfiles/url_to_optional_file.wdl +2 -1
- toil/test/wdl/wdltoil_test.py +171 -162
- toil/test/wdl/wdltoil_test_kubernetes.py +9 -0
- toil/utils/toilDebugFile.py +6 -3
- toil/utils/toilSshCluster.py +23 -0
- toil/utils/toilStats.py +17 -2
- toil/utils/toilUpdateEC2Instances.py +1 -0
- toil/version.py +10 -10
- toil/wdl/wdltoil.py +1179 -825
- toil/worker.py +16 -8
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/METADATA +32 -32
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/RECORD +97 -85
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/WHEEL +1 -1
- toil/lib/iterables.py +0 -112
- toil/test/docs/scripts/stagingExampleFiles/in.txt +0 -1
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/entry_points.txt +0 -0
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/licenses/LICENSE +0 -0
- {toil-8.2.0.dist-info → toil-9.1.0.dist-info}/top_level.txt +0 -0
toil/worker.py
CHANGED
|
@@ -224,12 +224,17 @@ def unstick_worker(interval: float = 120, timeout: float = 120) -> None:
|
|
|
224
224
|
# We also want to handle the case where the child process gets so
|
|
225
225
|
# gummed up that it can't exit when killed.
|
|
226
226
|
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
227
|
+
try:
|
|
228
|
+
child = subprocess.Popen(
|
|
229
|
+
["lsof", "-p", str(pid)],
|
|
230
|
+
stdin=subprocess.DEVNULL,
|
|
231
|
+
stdout=subprocess.DEVNULL,
|
|
232
|
+
stderr=subprocess.DEVNULL,
|
|
233
|
+
)
|
|
234
|
+
except FileNotFoundError:
|
|
235
|
+
# If there isn't an lsof, don't try and use it.
|
|
236
|
+
logger.info("lsof is not available. We will not be able to use it to unstick a stuck Toil leader.")
|
|
237
|
+
return
|
|
233
238
|
try:
|
|
234
239
|
child.wait(timeout=timeout)
|
|
235
240
|
except subprocess.TimeoutExpired:
|
|
@@ -539,6 +544,7 @@ def workerScript(
|
|
|
539
544
|
startClock = ResourceMonitor.get_total_cpu_time()
|
|
540
545
|
|
|
541
546
|
startTime = time.time()
|
|
547
|
+
fileStore = None
|
|
542
548
|
while True:
|
|
543
549
|
##########################################
|
|
544
550
|
# Run the job body, if there is one
|
|
@@ -684,8 +690,10 @@ def workerScript(
|
|
|
684
690
|
totalCPUTime, totalMemoryUsage = (
|
|
685
691
|
ResourceMonitor.get_total_cpu_time_and_memory_usage()
|
|
686
692
|
)
|
|
687
|
-
|
|
688
|
-
|
|
693
|
+
chain_wall_time = time.time() - startTime
|
|
694
|
+
chain_cpu_time = totalCPUTime - startClock
|
|
695
|
+
statsDict.workers.time = str(chain_wall_time)
|
|
696
|
+
statsDict.workers.clock = str(chain_cpu_time)
|
|
689
697
|
statsDict.workers.memory = str(totalMemoryUsage)
|
|
690
698
|
# Say the worker used the max disk we saw from any job
|
|
691
699
|
max_bytes = 0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: toil
|
|
3
|
-
Version:
|
|
3
|
+
Version: 9.1.0
|
|
4
4
|
Summary: Pipeline management software for clusters.
|
|
5
5
|
Home-page: https://github.com/DataBiosphere/toil
|
|
6
6
|
Author: Benedict Paten and the Toil community
|
|
@@ -33,7 +33,7 @@ Requires-Python: >=3.9
|
|
|
33
33
|
Description-Content-Type: text/x-rst
|
|
34
34
|
License-File: LICENSE
|
|
35
35
|
Requires-Dist: dill<0.4,>=0.3.2
|
|
36
|
-
Requires-Dist: requests<=2.
|
|
36
|
+
Requires-Dist: requests<=2.32.5
|
|
37
37
|
Requires-Dist: docker<8,>=6.1.0
|
|
38
38
|
Requires-Dist: urllib3<3,>=1.26.0
|
|
39
39
|
Requires-Dist: python-dateutil
|
|
@@ -53,12 +53,12 @@ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post
|
|
|
53
53
|
Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "aws"
|
|
54
54
|
Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "aws"
|
|
55
55
|
Requires-Dist: moto<6,>=5.0.3; extra == "aws"
|
|
56
|
-
Requires-Dist: ec2_metadata<3; extra == "aws"
|
|
56
|
+
Requires-Dist: ec2_metadata<3,>=2.14.0; extra == "aws"
|
|
57
57
|
Provides-Extra: cwl
|
|
58
|
-
Requires-Dist: cwltool==3.1.
|
|
58
|
+
Requires-Dist: cwltool==3.1.20250715140722; extra == "cwl"
|
|
59
59
|
Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "cwl"
|
|
60
|
-
Requires-Dist: galaxy-tool-util<
|
|
61
|
-
Requires-Dist: galaxy-util<
|
|
60
|
+
Requires-Dist: galaxy-tool-util<26; extra == "cwl"
|
|
61
|
+
Requires-Dist: galaxy-util<26; extra == "cwl"
|
|
62
62
|
Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "cwl"
|
|
63
63
|
Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "cwl"
|
|
64
64
|
Requires-Dist: networkx!=2.8.1,<4; extra == "cwl"
|
|
@@ -67,28 +67,28 @@ Requires-Dist: cwl-utils>=0.36; extra == "cwl"
|
|
|
67
67
|
Provides-Extra: encryption
|
|
68
68
|
Requires-Dist: pynacl<2,>=1.4.0; extra == "encryption"
|
|
69
69
|
Provides-Extra: google
|
|
70
|
-
Requires-Dist: apache-libcloud<3
|
|
70
|
+
Requires-Dist: apache-libcloud<4,>=3.6.1; extra == "google"
|
|
71
71
|
Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "google"
|
|
72
72
|
Requires-Dist: google-auth<3,>=2.18.1; extra == "google"
|
|
73
73
|
Provides-Extra: kubernetes
|
|
74
|
-
Requires-Dist: kubernetes<
|
|
74
|
+
Requires-Dist: kubernetes<34,>=12.0.1; extra == "kubernetes"
|
|
75
75
|
Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "kubernetes"
|
|
76
76
|
Requires-Dist: types-urllib3; extra == "kubernetes"
|
|
77
77
|
Requires-Dist: types-PyYAML; extra == "kubernetes"
|
|
78
78
|
Requires-Dist: idna>=2; extra == "kubernetes"
|
|
79
79
|
Provides-Extra: wdl
|
|
80
|
-
Requires-Dist: miniwdl==1.
|
|
80
|
+
Requires-Dist: miniwdl==1.13.0; extra == "wdl"
|
|
81
81
|
Requires-Dist: wdlparse==0.1.0; extra == "wdl"
|
|
82
82
|
Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "wdl"
|
|
83
83
|
Provides-Extra: server
|
|
84
|
-
Requires-Dist: connexion[swagger-ui]<4,>=
|
|
85
|
-
Requires-Dist: flask<
|
|
86
|
-
Requires-Dist: werkzeug<4,>=
|
|
87
|
-
Requires-Dist: flask-cors
|
|
88
|
-
Requires-Dist: gunicorn
|
|
89
|
-
Requires-Dist: celery<6,>=5.
|
|
90
|
-
Requires-Dist: wes-service<5
|
|
91
|
-
Requires-Dist: ruamel.yaml<
|
|
84
|
+
Requires-Dist: connexion[swagger-ui]<4,>=3; extra == "server"
|
|
85
|
+
Requires-Dist: flask<4,>=3; extra == "server"
|
|
86
|
+
Requires-Dist: werkzeug<4,>=3; extra == "server"
|
|
87
|
+
Requires-Dist: flask-cors<7,>=5.0.1; extra == "server"
|
|
88
|
+
Requires-Dist: gunicorn<24,>=23.0.0; extra == "server"
|
|
89
|
+
Requires-Dist: celery<6,>=5.4.0; extra == "server"
|
|
90
|
+
Requires-Dist: wes-service<6,>=5.0.0; extra == "server"
|
|
91
|
+
Requires-Dist: ruamel.yaml<1,>=0.18.7; extra == "server"
|
|
92
92
|
Provides-Extra: htcondor
|
|
93
93
|
Requires-Dist: htcondor<25,>=23.6.0; sys_platform != "darwin" and extra == "htcondor"
|
|
94
94
|
Provides-Extra: mesos
|
|
@@ -98,36 +98,36 @@ Requires-Dist: boto3-stubs[autoscaling,boto3,ec2,iam,s3,sdb,sts]<2,>=1.28.3.post
|
|
|
98
98
|
Requires-Dist: mypy-boto3-iam<2,>=1.28.3.post2; extra == "all"
|
|
99
99
|
Requires-Dist: mypy-boto3-s3<2,>=1.28.3.post2; extra == "all"
|
|
100
100
|
Requires-Dist: moto<6,>=5.0.3; extra == "all"
|
|
101
|
-
Requires-Dist: ec2_metadata<3; extra == "all"
|
|
102
|
-
Requires-Dist: cwltool==3.1.
|
|
101
|
+
Requires-Dist: ec2_metadata<3,>=2.14.0; extra == "all"
|
|
102
|
+
Requires-Dist: cwltool==3.1.20250715140722; extra == "all"
|
|
103
103
|
Requires-Dist: schema-salad<9,>=8.4.20230128170514; extra == "all"
|
|
104
|
-
Requires-Dist: galaxy-tool-util<
|
|
105
|
-
Requires-Dist: galaxy-util<
|
|
104
|
+
Requires-Dist: galaxy-tool-util<26; extra == "all"
|
|
105
|
+
Requires-Dist: galaxy-util<26; extra == "all"
|
|
106
106
|
Requires-Dist: ruamel.yaml<=0.19,>=0.15; extra == "all"
|
|
107
107
|
Requires-Dist: ruamel.yaml.clib>=0.2.6; extra == "all"
|
|
108
108
|
Requires-Dist: networkx!=2.8.1,<4; extra == "all"
|
|
109
109
|
Requires-Dist: CacheControl[filecache]; extra == "all"
|
|
110
110
|
Requires-Dist: cwl-utils>=0.36; extra == "all"
|
|
111
111
|
Requires-Dist: pynacl<2,>=1.4.0; extra == "all"
|
|
112
|
-
Requires-Dist: apache-libcloud<3
|
|
112
|
+
Requires-Dist: apache-libcloud<4,>=3.6.1; extra == "all"
|
|
113
113
|
Requires-Dist: google-cloud-storage<=2.8.0,>=2; extra == "all"
|
|
114
114
|
Requires-Dist: google-auth<3,>=2.18.1; extra == "all"
|
|
115
|
-
Requires-Dist: kubernetes<
|
|
115
|
+
Requires-Dist: kubernetes<34,>=12.0.1; extra == "all"
|
|
116
116
|
Requires-Dist: kubernetes-stubs==v22.6.0post1; extra == "all"
|
|
117
117
|
Requires-Dist: types-urllib3; extra == "all"
|
|
118
118
|
Requires-Dist: types-PyYAML; extra == "all"
|
|
119
119
|
Requires-Dist: idna>=2; extra == "all"
|
|
120
|
-
Requires-Dist: miniwdl==1.
|
|
120
|
+
Requires-Dist: miniwdl==1.13.0; extra == "all"
|
|
121
121
|
Requires-Dist: wdlparse==0.1.0; extra == "all"
|
|
122
122
|
Requires-Dist: graphlib-backport==1.0; python_version < "3.9" and extra == "all"
|
|
123
|
-
Requires-Dist: connexion[swagger-ui]<4,>=
|
|
124
|
-
Requires-Dist: flask<
|
|
125
|
-
Requires-Dist: werkzeug<4,>=
|
|
126
|
-
Requires-Dist: flask-cors
|
|
127
|
-
Requires-Dist: gunicorn
|
|
128
|
-
Requires-Dist: celery<6,>=5.
|
|
129
|
-
Requires-Dist: wes-service<5
|
|
130
|
-
Requires-Dist: ruamel.yaml<
|
|
123
|
+
Requires-Dist: connexion[swagger-ui]<4,>=3; extra == "all"
|
|
124
|
+
Requires-Dist: flask<4,>=3; extra == "all"
|
|
125
|
+
Requires-Dist: werkzeug<4,>=3; extra == "all"
|
|
126
|
+
Requires-Dist: flask-cors<7,>=5.0.1; extra == "all"
|
|
127
|
+
Requires-Dist: gunicorn<24,>=23.0.0; extra == "all"
|
|
128
|
+
Requires-Dist: celery<6,>=5.4.0; extra == "all"
|
|
129
|
+
Requires-Dist: wes-service<6,>=5.0.0; extra == "all"
|
|
130
|
+
Requires-Dist: ruamel.yaml<1,>=0.18.7; extra == "all"
|
|
131
131
|
Requires-Dist: pymesos<0.4,>=0.3.15; python_version < "3.11" and extra == "all"
|
|
132
132
|
Dynamic: author
|
|
133
133
|
Dynamic: author-email
|
|
@@ -1,89 +1,94 @@
|
|
|
1
1
|
toil/__init__.py,sha256=mgHlMg77mY5alLQDJJR0sudBWZ_kRajyPWIUOUu9OBc,18223
|
|
2
2
|
toil/bus.py,sha256=Rr6oTGo5jtTJLtxycuPg-5U9fCqiDAvKMdlj7xYka8Q,30035
|
|
3
|
-
toil/common.py,sha256=
|
|
3
|
+
toil/common.py,sha256=SCcqojtspk3oqwStKUx-daP7fMCgWQ8TWBgh7WNcSRY,83253
|
|
4
4
|
toil/deferred.py,sha256=2ShsuPqDwu0jhBQ6ocMwe4lfNegBm2lj7dOG9E7X3Zc,14152
|
|
5
5
|
toil/exceptions.py,sha256=oL2d9uutwtcPkMcEUGrixKUd4y1JLSA0-N7hNJqCLSk,1883
|
|
6
|
-
toil/job.py,sha256=
|
|
7
|
-
toil/leader.py,sha256=
|
|
6
|
+
toil/job.py,sha256=KGcmuzoCFtWakl_y4LwBlo8Uuh1-FnGqHOXc_BwAF0A,175901
|
|
7
|
+
toil/leader.py,sha256=abI47MI8zUlWZCjFce2QMwoFF9-QQ1aF8kWn7qKtrpM,85829
|
|
8
8
|
toil/realtimeLogger.py,sha256=2O4AUaKtvItzzCAQKORIEHZ2cDoLf_6njoKWv_uzdFc,9878
|
|
9
|
-
toil/resource.py,sha256=
|
|
9
|
+
toil/resource.py,sha256=2LmdM6zqjG_aYqQ25UixpkdKipLYnKngMGhll4I-O6M,25349
|
|
10
10
|
toil/serviceManager.py,sha256=GE5IUjQmNrekYv9tclim0RlCFf4ueOQ2H4qHjMBrOcg,19978
|
|
11
11
|
toil/statsAndLogging.py,sha256=JXir7TCV8OdDaAdt3VsDR2rbdNWk4ILyOwlKHVdoXT0,18696
|
|
12
12
|
toil/toilState.py,sha256=DD52XQv8wRCYzF7-F6Olqa_k6u-_py-JWyjqJHRh6Z0,17989
|
|
13
|
-
toil/version.py,sha256=
|
|
14
|
-
toil/worker.py,sha256=
|
|
13
|
+
toil/version.py,sha256=CHyCVncfvUkQyL2LsngddgCkkBkhrtOF8yHxwkeLVYw,486
|
|
14
|
+
toil/worker.py,sha256=uEU3BnmFS-SQf2JW6FDvcf7t8uUXFXiInaJLTt8l9Lk,39315
|
|
15
15
|
toil/batchSystems/__init__.py,sha256=T8psI5GmvE71_XmajKsfeQ3YUs6XM7rX1Fy9VNUX_-Q,1036
|
|
16
|
-
toil/batchSystems/abstractBatchSystem.py,sha256=
|
|
17
|
-
toil/batchSystems/abstractGridEngineBatchSystem.py,sha256=
|
|
16
|
+
toil/batchSystems/abstractBatchSystem.py,sha256=yOsKGlKOADtBhsG6OVvBY2yRJREJtPd84WisE47xBO0,33803
|
|
17
|
+
toil/batchSystems/abstractGridEngineBatchSystem.py,sha256=UoVM2kGvoEmBhPlA5_rghZD9piRoOuhYwU6I5WLiW5k,24737
|
|
18
18
|
toil/batchSystems/awsBatch.py,sha256=ussXl20jE3daOxtUE5bH5ODZ2ynrqmFJczcOTXQsoSY,27300
|
|
19
19
|
toil/batchSystems/cleanup_support.py,sha256=iWI-uNGwQWbBteWYzKWWZaL5wZBpRswHAtWdFU9VCKA,4056
|
|
20
20
|
toil/batchSystems/contained_executor.py,sha256=2wP3sDyOanB2YrXxhdJ1PI3VohKK37ifgRya2F0rcMY,5111
|
|
21
21
|
toil/batchSystems/gridengine.py,sha256=OL1SOQXV5vz7UwNSSZ2lKTRArkeaVRND5FyqQ8K8V20,8114
|
|
22
22
|
toil/batchSystems/htcondor.py,sha256=nCylLUvRyX2k79LYriJgwhmowJBRekBWYUSpJgtawsY,18613
|
|
23
|
-
toil/batchSystems/kubernetes.py,sha256=
|
|
23
|
+
toil/batchSystems/kubernetes.py,sha256=XhZHDQOzSjQu2OYoJb22Gh4t2w2n3irRbYmz-0AOvl8,89657
|
|
24
24
|
toil/batchSystems/local_support.py,sha256=lq3VcjSgRvaXqXHWdxhzvUOfCl0i16eJ7YtGx1esFZU,3895
|
|
25
25
|
toil/batchSystems/lsf.py,sha256=rQJe6dpnqs-LAZ0qaAo94VtxvhADwv8XzRTrQulp-mQ,18089
|
|
26
26
|
toil/batchSystems/lsfHelper.py,sha256=IE5y-x-Mofau7jksWjBdTLt5dVvyj-w8dd3gqwZ-r8o,7227
|
|
27
27
|
toil/batchSystems/options.py,sha256=HZ4nI2paKxulcWOd81R3p_j7BE4j2U9ZjWehDKaoyaA,8155
|
|
28
|
-
toil/batchSystems/registry.py,sha256=
|
|
28
|
+
toil/batchSystems/registry.py,sha256=PjWcsJ-ohiZiruqopcKy7581xiZ9JeDF6xz-JE51u7I,3914
|
|
29
29
|
toil/batchSystems/singleMachine.py,sha256=EerJZCoDCPODBqeDRs4SEKC8htLq22QFJnBmkFwYACA,40350
|
|
30
|
-
toil/batchSystems/slurm.py,sha256=
|
|
30
|
+
toil/batchSystems/slurm.py,sha256=D8VdDeaBrJTp5wvKcmvgs-42cztPcE3aFTxtNCw3lWM,50815
|
|
31
31
|
toil/batchSystems/torque.py,sha256=A3Pe1IvIltpJSoVulfEUrilr-Ok_8E9hf41jbHYYzjQ,11795
|
|
32
32
|
toil/batchSystems/mesos/__init__.py,sha256=jkeRf24eXeOTdRibDzJtqKwXup47FseQS0UXKriKrxg,3554
|
|
33
|
-
toil/batchSystems/mesos/batchSystem.py,sha256=
|
|
33
|
+
toil/batchSystems/mesos/batchSystem.py,sha256=MHof0UUwMzBT5PBRLa-ifBIW6g9pRjCUiaJ7SCoxXFc,41538
|
|
34
34
|
toil/batchSystems/mesos/conftest.py,sha256=n1ZIXzZP0msJlZL_ZIG84trKifxFLRLr2uIr-EjDucQ,836
|
|
35
35
|
toil/batchSystems/mesos/executor.py,sha256=ETsWkx0JaERw7YS5rzv23_xj492hKSxDOsanVilwy7Q,12729
|
|
36
36
|
toil/batchSystems/mesos/test/__init__.py,sha256=dRAlqdSi5c-uTikMYFV8-_0tenUuWZniy72O5QxVFoQ,4779
|
|
37
37
|
toil/cwl/__init__.py,sha256=lfyX1eoJ1IA26AUzUl6-ODTi0ZqD_0F6-rL5eqfl_9E,2131
|
|
38
38
|
toil/cwl/conftest.py,sha256=R6Jw5-PeTCK0rapfHmV_VJwVcqlVbO5w3cFUbaIWUnk,848
|
|
39
|
-
toil/cwl/cwltoil.py,sha256=
|
|
40
|
-
toil/cwl/utils.py,sha256=
|
|
41
|
-
toil/fileStores/__init__.py,sha256=
|
|
42
|
-
toil/fileStores/abstractFileStore.py,sha256=
|
|
43
|
-
toil/fileStores/cachingFileStore.py,sha256=
|
|
39
|
+
toil/cwl/cwltoil.py,sha256=E_WQopQ5zW1YcXG9-62hE1V0Mb30MePH5tmYO5K-mhg,182196
|
|
40
|
+
toil/cwl/utils.py,sha256=6t_R1VzrkybjJpwzNyTm_4MY1A86KZ8grLQAYaSdVMA,12424
|
|
41
|
+
toil/fileStores/__init__.py,sha256=Mkm9nedTwXPiXlQpTwCirIul7C1X-bt_MstcXTS43bI,2414
|
|
42
|
+
toil/fileStores/abstractFileStore.py,sha256=VEJi3lIvfirs-OQVCInEln46v-EE8ZY7xqLMyAp5GUo,30994
|
|
43
|
+
toil/fileStores/cachingFileStore.py,sha256=zz4nTVszP1GuAJR7HC9Uk_xgB-DtWh9HFFGoJ0EhChA,101728
|
|
44
44
|
toil/fileStores/nonCachingFileStore.py,sha256=VsPoKz0Ln5HP-trLlAarqhqJIzdwpADfu8E_UJH4X9w,15806
|
|
45
45
|
toil/jobStores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
toil/jobStores/abstractJobStore.py,sha256=
|
|
46
|
+
toil/jobStores/abstractJobStore.py,sha256=zwHhA2-896qZs7I9g2_DDdXVXfiKl8AcZnoysrzTDRg,70827
|
|
47
47
|
toil/jobStores/conftest.py,sha256=xNy_u3dGZz0206dnixzYvAvT85a0HfkIJw9XbsiGJnM,837
|
|
48
|
-
toil/jobStores/fileJobStore.py,sha256=
|
|
49
|
-
toil/jobStores/googleJobStore.py,sha256=
|
|
50
|
-
toil/jobStores/utils.py,sha256=
|
|
48
|
+
toil/jobStores/fileJobStore.py,sha256=L6feaKFA6wGkO0VJZx6Zhy2yTUW3LbfC54YysRWB6RI,52703
|
|
49
|
+
toil/jobStores/googleJobStore.py,sha256=sDzzpBwl52KWoQKFqPja5-ixnaJhVgE1Z2x0tkw3fUs,28352
|
|
50
|
+
toil/jobStores/utils.py,sha256=84mpYPEc5dMddc1iEhgzmDn7RTLD-y4FX8mw8QddOdo,2862
|
|
51
51
|
toil/jobStores/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
toil/jobStores/aws/jobStore.py,sha256=
|
|
53
|
-
toil/jobStores/aws/utils.py,sha256=
|
|
52
|
+
toil/jobStores/aws/jobStore.py,sha256=Ghf4rFAxfFZNWBuIK61j7ZDeLViQxrAmPA0XRDk6Vv0,40145
|
|
53
|
+
toil/jobStores/aws/utils.py,sha256=h0kx-ll92H_LWpNpj6YCccU7BJ2Z88aooJYk7KJ6ygs,11965
|
|
54
54
|
toil/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
55
|
-
toil/lib/accelerators.py,sha256=
|
|
55
|
+
toil/lib/accelerators.py,sha256=1AGwJUDWB9GUNjJyG9ybDlwHPHzw7a3e8s05_VWyXJU,8069
|
|
56
56
|
toil/lib/bioio.py,sha256=vx29gpAT3HgJkwXrfDnkyqnx68QGy_40ZtB-V2Utl8w,2403
|
|
57
|
+
toil/lib/checksum.py,sha256=uNKIUhY4ZeX4XUXf8Y6Pid3IeJIGaDzCZWQjMMfkn9c,3144
|
|
57
58
|
toil/lib/compatibility.py,sha256=pPPTJyk3GUZ8SdAv14a3v2HLWbNtcnsAFuCEbh36UZ4,1535
|
|
58
|
-
toil/lib/conversions.py,sha256=
|
|
59
|
+
toil/lib/conversions.py,sha256=gRWKXh51HLIfhSVqzvQC9r085wHy7dHeyW4ikryQMHo,5767
|
|
60
|
+
toil/lib/directory.py,sha256=TYejRoWsfofGWFBb0m5oBqOqm5XEhwRZCV9ZLnScTzU,7369
|
|
59
61
|
toil/lib/docker.py,sha256=tXyWSq7uzTgCLuyK8oF8c6Rx9k9F8Hh3QSbZxKctlvM,25671
|
|
60
62
|
toil/lib/dockstore.py,sha256=_PMqYg4zLNvgyfRmMPPJI4K0g1TK6Ir5FiLMaX7726Q,13287
|
|
61
|
-
toil/lib/ec2.py,sha256=
|
|
63
|
+
toil/lib/ec2.py,sha256=y_DxjaOgnllo2Myb6ojRdfWetSTpj54BFkPRaIWZPCw,28367
|
|
62
64
|
toil/lib/ec2nodes.py,sha256=UVlJqVvMofRUhoEpND3Tal5p_p-p5_LHOJRA3dH7ziI,14693
|
|
63
|
-
toil/lib/exceptions.py,sha256=
|
|
64
|
-
toil/lib/expando.py,sha256=
|
|
65
|
+
toil/lib/exceptions.py,sha256=zFpQ1db4p5uScow1NZhlq5Get32gemTFdKMeFfSzZSo,3154
|
|
66
|
+
toil/lib/expando.py,sha256=wNe5N4gLH0VpTK3fh9eSTbJq-8Oxrs1_xOgcpfVKje0,2996
|
|
65
67
|
toil/lib/ftp_utils.py,sha256=VqrstWP6dKJnTHtrxGPp7dzeDpyaD4IR4I5NKrPR3g0,7598
|
|
66
|
-
toil/lib/generatedEC2Lists.py,sha256=
|
|
68
|
+
toil/lib/generatedEC2Lists.py,sha256=hMsZvukZYI9iou_4rs2lOlpDabviH88EfMJdYWx72GU,309674
|
|
67
69
|
toil/lib/history.py,sha256=5WKztlZFxxS_gNfg3hNCXSnI1h0Ea24qzuEg1v4cBgU,45203
|
|
68
70
|
toil/lib/history_submission.py,sha256=1Pwh0BfF-DmoBvgNMDEVIwpWy9VmDaS9A6TnaF9BHUk,28734
|
|
69
71
|
toil/lib/humanize.py,sha256=6uXOB07rvAxO8jpIh2kPwy9bfoDu0eEUmBGz9m1chS8,1267
|
|
70
|
-
toil/lib/io.py,sha256=
|
|
71
|
-
toil/lib/
|
|
72
|
-
toil/lib/
|
|
73
|
-
toil/lib/misc.py,sha256=LQVJU-Z0w8HxPSzrWgTJ3uX4d1fsURBQBSpCank2hck,7607
|
|
72
|
+
toil/lib/io.py,sha256=s1Uof7MvPK5CtDYGyvdvz-f9Xiy-RruHQtowqz9uMZ8,14539
|
|
73
|
+
toil/lib/memoize.py,sha256=M0uaskxmJlnetwpyMtr80qwBNtInDoutFq3iu8YY9so,3752
|
|
74
|
+
toil/lib/misc.py,sha256=59JamwB-aJ6uVPhTkMwu1BxTreW1WDJrqtayMbJbUJw,7612
|
|
74
75
|
toil/lib/objects.py,sha256=3XNMtBkNcIB2EMl5cteVDkuSRKAOpnd_GhxgTGVh43M,5381
|
|
76
|
+
toil/lib/pipes.py,sha256=FeFZc3xhaKwLa_5SfdIEmgVQoIocwr0WP0zpDwYNY-M,15773
|
|
77
|
+
toil/lib/plugins.py,sha256=n-leeVkpE0Po9CG18Szd3NQftsTfHlUf_rqyxjX4M_U,3754
|
|
75
78
|
toil/lib/resources.py,sha256=jBJbheSUvC-klR65-WX87viZx2yvBIgqn4dI2gVP1GQ,4043
|
|
76
|
-
toil/lib/retry.py,sha256=
|
|
77
|
-
toil/lib/threading.py,sha256=
|
|
79
|
+
toil/lib/retry.py,sha256=xRvNIThJgNRHvokjWcjXGI73oIm9NeEfdRNDBkuHv0s,23036
|
|
80
|
+
toil/lib/threading.py,sha256=GjBs_Abngo9eiKfaDB--DjlBvWezyNpdB8ftjhHW8Fs,30976
|
|
78
81
|
toil/lib/throttle.py,sha256=ua21juOmGI7JZP4pXdR8-s2TpF6PpwW3sg11a2gcrbI,4955
|
|
79
82
|
toil/lib/trs.py,sha256=IK-I-wniAp8oUenit_BlVlGENEq4EukJ18Rr1-edTlI,18882
|
|
80
|
-
toil/lib/
|
|
83
|
+
toil/lib/url.py,sha256=RMXQOwxK-FRELLFj0cfX57vjhlBUhIMtbl7Ve5ZA7rc,11193
|
|
84
|
+
toil/lib/web.py,sha256=zboNkhbCv4AzvyqxIkSnnirZJHZLeXhl5KG3Xwu6U4Q,1550
|
|
81
85
|
toil/lib/aws/__init__.py,sha256=VI77J2o4IehFBpEUjS4eHmXlxEplFnKYHq6w8ZyotEk,7905
|
|
82
86
|
toil/lib/aws/ami.py,sha256=SD728qocULXqWZmxPslcymukG-MxfNniMsBE9d1VVcM,9341
|
|
87
|
+
toil/lib/aws/config.py,sha256=sXSMBHGGBUVXXcDLPJFi9nr7pQVDzuKE75tFYg5MC1U,859
|
|
83
88
|
toil/lib/aws/iam.py,sha256=6qNJ6C61XVzbuPX1p-tcnEcabCjIultrVe9MrgcME04,18550
|
|
84
|
-
toil/lib/aws/s3.py,sha256=
|
|
89
|
+
toil/lib/aws/s3.py,sha256=8C9ed6hk6TZyffsvvgUJaLExwq7k3WlL8-Nv3rFu_jo,22750
|
|
85
90
|
toil/lib/aws/session.py,sha256=96l_AGsyA3CpTJiOqPemuLWtGsV28K4DU6vjtDR-pxA,15033
|
|
86
|
-
toil/lib/aws/utils.py,sha256=
|
|
91
|
+
toil/lib/aws/utils.py,sha256=JNGcvAPgYHXpUGUVlJ374cLVUfEl8344m13qwz6HUYs,21812
|
|
87
92
|
toil/lib/aws/utils.py.orig,sha256=1zR2bg0-mP-SM46MRZb-7s4O_9K5IOZ5_v92WItpmUs,22244
|
|
88
93
|
toil/lib/encryption/__init__.py,sha256=HP19EUYJeIMdjZq11fLn_dXIGU98sIkpTxvMxvPaUSs,705
|
|
89
94
|
toil/lib/encryption/_dummy.py,sha256=6e2fthd6YdgFUgY0kjGb2052KLWUeXD_ejeoCTAThLU,1082
|
|
@@ -91,18 +96,18 @@ toil/lib/encryption/_nacl.py,sha256=_EL8LrF5T5DT0dhNIlyIxDB8c8irGe9nJVh1Sn7mFkA,
|
|
|
91
96
|
toil/lib/encryption/conftest.py,sha256=jCrRo2AtsGaO6hitm-wkNOTAU78JWSVA52E0hZdMpq8,227
|
|
92
97
|
toil/options/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
98
|
toil/options/common.py,sha256=vUMadLlEze1Wks7F1ZcVk9tsAIQMbxVQePJx-KxCNVk,46257
|
|
94
|
-
toil/options/cwl.py,sha256
|
|
95
|
-
toil/options/runner.py,sha256=
|
|
96
|
-
toil/options/wdl.py,sha256=
|
|
97
|
-
toil/provisioners/__init__.py,sha256=
|
|
99
|
+
toil/options/cwl.py,sha256=aPcbaCA8h739e1GW2oUbymYBpPaDEnCDrPZowI6zMII,14578
|
|
100
|
+
toil/options/runner.py,sha256=gr5D8PJ_eNu-VGhAYdhDlhDCkfd_id5_FrTQyZoiD5c,2614
|
|
101
|
+
toil/options/wdl.py,sha256=kqM3AElkX00-34DSDnHRViahL6C0vsE9-wyosKvU2Fk,3790
|
|
102
|
+
toil/provisioners/__init__.py,sha256=TPsr-qc9P_fYbeCeo7FCGrU8UQxH4D3Rdhpzh6-nM7A,9885
|
|
98
103
|
toil/provisioners/abstractProvisioner.py,sha256=R3OuUV2p8GWWuRs2PbaHkjHufOLyoknUaHq4vKPVGMc,58000
|
|
99
104
|
toil/provisioners/clusterScaler.py,sha256=9FgnSPbn2U_FYUSJUeN67A0kdh-Yl0roi5nZLeJVr_I,64980
|
|
100
105
|
toil/provisioners/gceProvisioner.py,sha256=8OsbSZeMgAB9l03zQ9WdKZ2-zFrHyzgXoLNdGKjdYcU,24212
|
|
101
|
-
toil/provisioners/node.py,sha256=
|
|
102
|
-
toil/provisioners/aws/__init__.py,sha256=
|
|
103
|
-
toil/provisioners/aws/awsProvisioner.py,sha256=
|
|
106
|
+
toil/provisioners/node.py,sha256=zIr-JLEC-yn1umzCxreY1BMLWohxwHL1MFYW61Wwr28,17066
|
|
107
|
+
toil/provisioners/aws/__init__.py,sha256=SO_2wlt8h1NtwYR9eqfqbYnDoUoyIAarlA2lFrbm_pA,9019
|
|
108
|
+
toil/provisioners/aws/awsProvisioner.py,sha256=jDpM3s5M8BZGBG9cv6izyRIne00T3lPAh83dtrIco9U,90902
|
|
104
109
|
toil/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
-
toil/server/app.py,sha256=
|
|
110
|
+
toil/server/app.py,sha256=Rldi7Wwft7Zxl3jrqh6HVHc4gMNiMjZ3CJhc7nVLW-w,7431
|
|
106
111
|
toil/server/celery_app.py,sha256=PbdwRb7tY5MU4PkPgFZkq7CMiCe6LHBxw5YgcbdsKIE,663
|
|
107
112
|
toil/server/utils.py,sha256=HLZb3-HtHqf5QYP3rlSK6C-Av_YxexYrYCcwrcmDP_0,21942
|
|
108
113
|
toil/server/wsgi_app.py,sha256=3V3xr80F4uJUzeBbTbPI1uKJ3FUcI-H_8T1eiiEM5iw,1959
|
|
@@ -111,20 +116,20 @@ toil/server/api_spec/README.rst,sha256=NMhLwWqNgKd6r3CWeMVIv6jr4w7bxgGNxSescauUQ
|
|
|
111
116
|
toil/server/api_spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
117
|
toil/server/api_spec/workflow_execution_service.swagger.yaml,sha256=zZ2QepvbpvLROIcVIHWrcQLUwXEqGfm68fmkdrx8rw8,25377
|
|
113
118
|
toil/server/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
-
toil/server/cli/wes_cwl_runner.py,sha256=
|
|
119
|
+
toil/server/cli/wes_cwl_runner.py,sha256=Bf5SYRRFrWS2ELyM3CN2lsfuWjEsKQQ9TQ7qsGgIrmw,18578
|
|
115
120
|
toil/server/wes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
-
toil/server/wes/abstract_backend.py,sha256=
|
|
121
|
+
toil/server/wes/abstract_backend.py,sha256=BXmM_jrescRYuN4phgEjag6Xl-tXRPYz_PtwVkd3suc,9212
|
|
117
122
|
toil/server/wes/amazon_wes_utils.py,sha256=xRrV7hiWoWVwxJykgL2HQdMf1FZg73eqEBltKXya1Fc,10287
|
|
118
123
|
toil/server/wes/tasks.py,sha256=DBjUUbxY6mq0H4aB8qiGhatmz6qWJWHkHPgfAqSr37w,24746
|
|
119
|
-
toil/server/wes/toil_backend.py,sha256=
|
|
120
|
-
toil/test/__init__.py,sha256=
|
|
124
|
+
toil/server/wes/toil_backend.py,sha256=u7aA-Tb3QRH5mX5hJW1DWWjBNaSjgoo-C2jvvNic7v4,27518
|
|
125
|
+
toil/test/__init__.py,sha256=YmDLhPdigktTP_hE90epOJOeCKuSx1TVnaRiVFgqGG4,49144
|
|
121
126
|
toil/test/conftest.py,sha256=JADYg_YbV_b28B970KcOqh4UYAhjpqwHxdQj4vt0xeE,237
|
|
122
127
|
toil/test/batchSystems/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
123
|
-
toil/test/batchSystems/batchSystemTest.py,sha256=
|
|
124
|
-
toil/test/batchSystems/batch_system_plugin_test.py,sha256=
|
|
128
|
+
toil/test/batchSystems/batchSystemTest.py,sha256=5NkxMJ-mHOgN9oZoSK9zjPGZJf5CR2cQOuQ3V1P3g4I,56410
|
|
129
|
+
toil/test/batchSystems/batch_system_plugin_test.py,sha256=eZlOOzdL7ja_EymnD_veY3fnAhz_6hE4CJwDKVyss-w,2991
|
|
125
130
|
toil/test/batchSystems/test_gridengine.py,sha256=kZCF7WIAmCF1LTPPWd4zC6piQr0UaKJ3kYKz5tsBal0,6353
|
|
126
131
|
toil/test/batchSystems/test_lsf_helper.py,sha256=JICnAPvU7HfqJ0RhIpC-IFfHLKftOAAQF2Iqc7nFs30,4697
|
|
127
|
-
toil/test/batchSystems/test_slurm.py,sha256=
|
|
132
|
+
toil/test/batchSystems/test_slurm.py,sha256=1leONjEsU_bcAjTfgoXzwJwgtmANOpUeDcAcOXRqm-Q,32041
|
|
128
133
|
toil/test/cactus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
134
|
toil/test/cactus/pestis.tar.gz,sha256=pIzVl3PiXRAIZBtOQTlPD-tzzrC95JxJax5ykWeozD0,5762005
|
|
130
135
|
toil/test/cactus/test_cactus_integration.py,sha256=4sRlsm7b29a08HNHFUbFu_gDW36TQeTfGBvRYUXNF_U,2219
|
|
@@ -137,7 +142,7 @@ toil/test/cwl/colon_test_output_job.yaml,sha256=BbXFRuWsRJV6JpJAutnHywJl_AbwEcwN
|
|
|
137
142
|
toil/test/cwl/conditional_wf.cwl,sha256=SAtUSmD5ta-DVG0SRHpT8EtOp8ztm-6v9Vskcl09c3s,357
|
|
138
143
|
toil/test/cwl/conditional_wf.yaml,sha256=WsS9dlpbRUll9M56KspQdOJ8h6SASTW7eRELefa274E,24
|
|
139
144
|
toil/test/cwl/conftest.py,sha256=0RaeuccXuYPc3t-8_NR82uSA-jbuScfg1pgTnljpx9Q,2013
|
|
140
|
-
toil/test/cwl/cwlTest.py,sha256=
|
|
145
|
+
toil/test/cwl/cwlTest.py,sha256=q7FcgPptzlWeD82JMxqtMMMODdLzxulhVFr4djvJvrU,79156
|
|
141
146
|
toil/test/cwl/directory_from_directory.cwl,sha256=-hjZuUs5fMpKMnbj-FZAgcns4iWsCFJV6Qh7-fsRn1I,556
|
|
142
147
|
toil/test/cwl/download.cwl,sha256=XQvz8or_-k6pwyhgeUeJOew0_b3BeHcF08EaalbySz4,296
|
|
143
148
|
toil/test/cwl/download_directory.cwl,sha256=RdPmElFeHJqXGWVqEqR5VFMmXDiJubhTcM9hIrAhKY4,535
|
|
@@ -181,12 +186,16 @@ toil/test/cwl/scatter_duplicate_outputs.cwl,sha256=1ubeij5YQhjHe0igq5xL-Caje6ghe
|
|
|
181
186
|
toil/test/cwl/seqtk_seq.cwl,sha256=uR7wlwxlNLkA_hIFglgiWGoOftQqFk4sH7Wo5zF60-c,406
|
|
182
187
|
toil/test/cwl/seqtk_seq_job.json,sha256=R7ZKDllKq33U0vLRK7yvRAjKr26wU5cbdgdixG_4bnY,69
|
|
183
188
|
toil/test/cwl/sorttool.cwl,sha256=c1fhFZ_ekTMuEAM0nikUPd2j-etPQL8MqyuSJLNadtc,1060
|
|
189
|
+
toil/test/cwl/staging_cat.cwl,sha256=7rswT6E6ldaA2I9t0DxMyuqiSepGMsIerhGZLyItpvA,625
|
|
190
|
+
toil/test/cwl/staging_make_file.cwl,sha256=l6HEfkg3Wd8JUBCFoMd86a6hvIJXMGF4THHd8FiO2hE,359
|
|
191
|
+
toil/test/cwl/staging_workflow.cwl,sha256=bCNyjI_CvValQOU3nDq_dl4ZO2uMwkUTLdL0TBmt5TI,789
|
|
184
192
|
toil/test/cwl/stream.cwl,sha256=jtyYdmSyCeI6uoOeX5Nb_LMIXhR5Sqmu8dGSr_Y2Z8g,732
|
|
185
193
|
toil/test/cwl/stream.json,sha256=9-UG9jmoMeNKHcB0yfKiEURPsuBe8Btr80iob3tEKzo,132
|
|
186
194
|
toil/test/cwl/test_filename_conflict_detection.cwl,sha256=wVrc9EXmO74tgaEe4oE-EMpmQiHIuUFbLh0-qVisVZo,699
|
|
187
195
|
toil/test/cwl/test_filename_conflict_detection_at_root.cwl,sha256=G3clUTFeeGZt5xPi2SNs05W7I-RT0OEN2C8xKHzQ300,695
|
|
188
196
|
toil/test/cwl/test_filename_conflict_resolution.cwl,sha256=sIoXi61RzCkzD1MTCoglRYAXo8xaE1JiC6irvSANK0I,717
|
|
189
197
|
toil/test/cwl/whale.txt,sha256=MS7gbKfWkYSmPTP52eIzQFHSzZiRMwvCNleCZ1YTmhE,1111
|
|
198
|
+
toil/test/cwl/zero_default.cwl,sha256=9fO0kdTpx1gfEc9mldtwBnMPPjHadSjLtQEGxnYFS5Q,1112
|
|
190
199
|
toil/test/cwl/directory/directory/file.txt,sha256=vRp5WUxW_LwWXs2loofRuWHwB8gIR2XE7lzCGRBBRbU,146
|
|
191
200
|
toil/test/cwl/mock_mpi/fake_mpi.yml,sha256=YtxcavXA2BbTx098_6pFRs4T9E34j-PrlJnuGCr7x9w,113
|
|
192
201
|
toil/test/cwl/mock_mpi/fake_mpi_run.py,sha256=CvV6oDK_vGYZEIaINRxev1TaKs7NtzJSG8eMk3MrgeE,1165
|
|
@@ -204,7 +213,7 @@ toil/test/cwl/test_filename_conflict_resolution.ms/table.f5,sha256=47DEQpj8HBSa-
|
|
|
204
213
|
toil/test/cwl/test_filename_conflict_resolution.ms/table.info,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
214
|
toil/test/cwl/test_filename_conflict_resolution.ms/table.lock,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
215
|
toil/test/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
207
|
-
toil/test/docs/scriptsTest.py,sha256=
|
|
216
|
+
toil/test/docs/scriptsTest.py,sha256=AEeKeWg-gKdywibzeqOCTUFbHRZ3BjBfPJmmxruFvCQ,5855
|
|
208
217
|
toil/test/docs/scripts/example_alwaysfail.py,sha256=G5XKlky7OOh7R6Y9wlHFQp_PcFV3D6aewexInAuQF2k,761
|
|
209
218
|
toil/test/docs/scripts/example_alwaysfail_with_files.wdl,sha256=XIStTSp03DK1Gd9OsDXOQTxATaeF_J212hK6nVjNlBs,549
|
|
210
219
|
toil/test/docs/scripts/example_cachingbenchmark.py,sha256=WisGS4jWk2Raj9E53iiFdb2l8BXbUvDekPLu7kFNNtY,3335
|
|
@@ -230,12 +239,11 @@ toil/test/docs/scripts/tutorial_promises2.py,sha256=wSmEGzhkcbDdu5kk4lLj1e93ZpiN
|
|
|
230
239
|
toil/test/docs/scripts/tutorial_quickstart.py,sha256=n6rdO1cUvB70K_UgLyE3MpRbs5AyhNCSgMOvvSmt9j4,544
|
|
231
240
|
toil/test/docs/scripts/tutorial_requirements.py,sha256=4A93_9OQEUeVpmA7bPknaSdKEi5adMfGHKBaRO4R7bg,1012
|
|
232
241
|
toil/test/docs/scripts/tutorial_services.py,sha256=IkH-JpG4ymR1yd8AUIbhOgPwNlltWFEmiMpV2w-lYxw,1124
|
|
233
|
-
toil/test/docs/scripts/tutorial_staging.py,sha256=
|
|
242
|
+
toil/test/docs/scripts/tutorial_staging.py,sha256=MMwaxWJaZFUJk3WZFknBF0AHddcvSA_zAqGwbk2JvQw,1740
|
|
234
243
|
toil/test/docs/scripts/tutorial_stats.py,sha256=eM0m4sjdgm9bkLpgf41nnX7MND9-JUWm_MuPfSFVk68,1762
|
|
235
|
-
toil/test/docs/scripts/stagingExampleFiles/in.txt,sha256=gjjOyS8yW5TTMD-HmYuFwcfD5tQhbl23pv-x42qGK6s,7
|
|
236
244
|
toil/test/docs/scripts/stagingExampleFiles/out.txt,sha256=1itR1QTwJkLatQA5Wa8MFVcJTH1J3MVEq6N6Cl2NHQ0,13
|
|
237
245
|
toil/test/jobStores/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
238
|
-
toil/test/jobStores/jobStoreTest.py,sha256=
|
|
246
|
+
toil/test/jobStores/jobStoreTest.py,sha256=WPuC1PYSwZ56aZKOjznmClFHbUgUAaHQZjdGm5k3kg4,64763
|
|
239
247
|
toil/test/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
240
248
|
toil/test/lib/dockerTest.py,sha256=uvxPeXwJg7FTK9t9JXDHTQHecg1I9jC86-CFcR05mvY,17221
|
|
241
249
|
toil/test/lib/test_conversions.py,sha256=JSwdTRYklpofPV3VANHC7vHZ7WcpEWOZD6G9Tkjd45w,7232
|
|
@@ -243,10 +251,12 @@ toil/test/lib/test_ec2.py,sha256=p3GfCgSSLqZQ-oanHk1sdIuP1wVUwQvXKsXzWl5ow0I,418
|
|
|
243
251
|
toil/test/lib/test_history.py,sha256=CKiWlTNbhhVEy3EpSohVGl4pg79p1iLhHQ340RzfKa8,8417
|
|
244
252
|
toil/test/lib/test_misc.py,sha256=X1o4Dw1PcbnS1Y_gTR2q4STwqRjXYjSEUy2Q1BxeijM,2766
|
|
245
253
|
toil/test/lib/test_trs.py,sha256=mcGn3boLFkjS_aPMOS-gwlFd7QcMVM-vpLadBnZb8SE,6918
|
|
254
|
+
toil/test/lib/test_url.py,sha256=fWsi6yJEBahwfwWBKqcpalF2cUDfYG4aCk6BicJg-p0,2388
|
|
255
|
+
toil/test/lib/url_plugin_test.py,sha256=7aXCIEIZ4cThcSqWwsfu5U_3QwhNxaI8WN-DTnB7CrA,3636
|
|
246
256
|
toil/test/lib/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
247
|
-
toil/test/lib/aws/test_iam.py,sha256=
|
|
248
|
-
toil/test/lib/aws/test_s3.py,sha256=
|
|
249
|
-
toil/test/lib/aws/test_utils.py,sha256=
|
|
257
|
+
toil/test/lib/aws/test_iam.py,sha256=Yx8vawHeo7tvGe1WTjajYD_Pw81ymb3Lluxi1ZVtNUc,7098
|
|
258
|
+
toil/test/lib/aws/test_s3.py,sha256=WQp96eq4pSx7mjBWKeEyoZ2Cpne7cnSwgQ1lC10cLCk,3142
|
|
259
|
+
toil/test/lib/aws/test_utils.py,sha256=OBgOhMeXHR4IefbzfBGACGOKoNm2K6xMC4MXSRi7UuA,2285
|
|
250
260
|
toil/test/mesos/MesosDataStructuresTest.py,sha256=IcV-bNWJcMnij0WruhTk4RTmGROTTcU3pav5e4gHPfA,3225
|
|
251
261
|
toil/test/mesos/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
252
262
|
toil/test/mesos/helloWorld.py,sha256=xX65tKSBIKAxguBoAe-6Twp2XcBK1QEnKp5LRVImgK4,2204
|
|
@@ -255,26 +265,26 @@ toil/test/options/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k
|
|
|
255
265
|
toil/test/options/options.py,sha256=xpp0PZKilYeXwkXUBszRZSC_LziX_rPi9shsQlemuuo,1474
|
|
256
266
|
toil/test/provisioners/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
257
267
|
toil/test/provisioners/clusterScalerTest.py,sha256=-Q5epOMHynfnlNZfpVXMU48puw_G9fyLiW8Gl8Qrk5o,44463
|
|
258
|
-
toil/test/provisioners/clusterTest.py,sha256=
|
|
259
|
-
toil/test/provisioners/gceProvisionerTest.py,sha256=
|
|
268
|
+
toil/test/provisioners/clusterTest.py,sha256=CpTEXear3WnsjszU__pvkOm19o5X27BzKyFA2TaVycc,10180
|
|
269
|
+
toil/test/provisioners/gceProvisionerTest.py,sha256=eL3G66PzMqjB2ahXMTUd6rBGByJgtblp5_uItSyRHv4,13619
|
|
260
270
|
toil/test/provisioners/provisionerTest.py,sha256=_JAvTs9bjynVpRkJI0VLPHZw-Y7kHI9B1vaWR4RomKA,2179
|
|
261
271
|
toil/test/provisioners/restartScript.py,sha256=GodLqsIiYNxXFWQtyYHrxACI1fSUeGzcltO6qOdznj4,416
|
|
262
272
|
toil/test/provisioners/aws/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
263
|
-
toil/test/provisioners/aws/awsProvisionerTest.py,sha256=
|
|
273
|
+
toil/test/provisioners/aws/awsProvisionerTest.py,sha256=JHkXHVez95-KQBSAwJwbfxy-j5_WYYD_9uesyw9WSgY,25266
|
|
264
274
|
toil/test/server/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
265
|
-
toil/test/server/serverTest.py,sha256=
|
|
275
|
+
toil/test/server/serverTest.py,sha256=2T9FD32-9uoGjtRC2mtJh67j9_3OWZgFONQmkA4f2tU,29399
|
|
266
276
|
toil/test/sort/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
267
277
|
toil/test/sort/restart_sort.py,sha256=A-1pWMhSIHSbtib-u1rvOFbhRqW_mQlf6dEbelFs7Q0,11358
|
|
268
278
|
toil/test/sort/sort.py,sha256=H_f4DzLGSnkHpFRayYtJKkxlCAVcikuVR48MnuybrDI,11258
|
|
269
279
|
toil/test/sort/sortTest.py,sha256=0dUZ0RCzE66bRcmOHJUD5MFg4UkSRbwhnHVkzX54wI4,12239
|
|
270
280
|
toil/test/src/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
271
|
-
toil/test/src/autoDeploymentTest.py,sha256=
|
|
281
|
+
toil/test/src/autoDeploymentTest.py,sha256=GSflx0XQ_gQQ8tHVouR0GJ_1oDyVYdS8gaK9tpIV9Rg,23898
|
|
272
282
|
toil/test/src/busTest.py,sha256=N49fTwZFT7kTt5a-9xxoxJTjoMnjvIPwyJdmX9N7nac,5353
|
|
273
283
|
toil/test/src/checkpointTest.py,sha256=LahYir7B3FNttP4OhbiYFKjxIftjTiuIXHC83xsxzNI,4464
|
|
274
284
|
toil/test/src/deferredFunctionTest.py,sha256=y8AAnmmn7VYbJozukKQFE3mx-vw9O6o6oeCiGv4PkeA,13355
|
|
275
285
|
toil/test/src/dockerCheckTest.py,sha256=CuXBewb1ba4rOO3YOrmChxPvdOfJGXNcT8P47HcaY1g,4407
|
|
276
286
|
toil/test/src/environmentTest.py,sha256=k-WsZ3-9Xn0Vctd8tBQTPR_fVqY-f1VHC5U3_d7qdd4,4239
|
|
277
|
-
toil/test/src/fileStoreTest.py,sha256=
|
|
287
|
+
toil/test/src/fileStoreTest.py,sha256=AZ9OazR5zRhUnH4eYYGiGsr8ZFcpX50ng3WGT00w0OQ,72970
|
|
278
288
|
toil/test/src/helloWorldTest.py,sha256=vPxXEYDZZuMynm_yQ5ZZPcm3AzXdYLT9bs0kP72OM2w,1727
|
|
279
289
|
toil/test/src/importExportFileTest.py,sha256=jqQQzQta0BH6QtxidFs8s-snpLIAS6P5y89oAU_gXAA,7974
|
|
280
290
|
toil/test/src/jobDescriptionTest.py,sha256=ops9NpnUa1aKGPrTOXU3jTwiDszCRJzHHAZzQx8bF10,4335
|
|
@@ -298,10 +308,11 @@ toil/test/src/userDefinedJobArgTypeTest.py,sha256=5PaS_418DbCAk7csGmgx3VC90mB-9Y
|
|
|
298
308
|
toil/test/src/workerTest.py,sha256=88Mz9ES62IijTkLdnzCxB3ZVEtLS2fxbIVlfhjI4SwI,6334
|
|
299
309
|
toil/test/utils/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
300
310
|
toil/test/utils/toilDebugTest.py,sha256=Qp3_MaTyhjQOs4WkI2J7BwRSdx-MyjjcghTnPZ-EWKA,9757
|
|
301
|
-
toil/test/utils/toilKillTest.py,sha256=
|
|
311
|
+
toil/test/utils/toilKillTest.py,sha256=iFApgCjKKgmeuq1FSCn04-9VJijOjmBCn-RdjlqSuKw,4136
|
|
302
312
|
toil/test/utils/utilsTest.py,sha256=RuiYS5ogRz_rid2YqsRGhylpW3oGofe8ssGvUbXSBiE,22008
|
|
313
|
+
toil/test/utils/ABCWorkflowDebug/ABC.txt,sha256=tdQEXD9Gb6kf4sxqvnkjKhpXzfEE96JucW4KHieJ33g,3
|
|
303
314
|
toil/test/utils/ABCWorkflowDebug/B_file.txt,sha256=wM3nf6j--X1HbBCq09LVT8wvM2FA0HNlHC3Mzx43n9Y,2
|
|
304
|
-
toil/test/utils/ABCWorkflowDebug/debugWorkflow.py,sha256=
|
|
315
|
+
toil/test/utils/ABCWorkflowDebug/debugWorkflow.py,sha256=QF8tfoEVYdZbR7vyL43El4G_Q613zdGo_xF_m_zi7sk,6785
|
|
305
316
|
toil/test/utils/ABCWorkflowDebug/mkFile.py,sha256=x0DSfKGpd-39F1X1lXHzY_CpGvFvsMFDneOJRRimDXE,454
|
|
306
317
|
toil/test/utils/ABCWorkflowDebug/sleep.cwl,sha256=JWQ77oYNXXRGUdnHVORkqh0SvSXlIBWM9JHmhJOpIv8,183
|
|
307
318
|
toil/test/utils/ABCWorkflowDebug/sleep.yaml,sha256=9kNrGjaLOSTdsnC7zw36Em2YLueoHFdraKBLiQY3WEQ,13
|
|
@@ -309,13 +320,13 @@ toil/test/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
309
320
|
toil/test/wdl/lint_error.wdl,sha256=vLwgk8CrPzLNRJnMLuQV22m1E1cwG-m76ZM0XgSKfLY,86
|
|
310
321
|
toil/test/wdl/test.csv,sha256=1hPDzKegqv1H582Bx-4CaFBLE-jCSyZo3N6KhjhsXO8,18
|
|
311
322
|
toil/test/wdl/test.tsv,sha256=O4F7lQouDB33aMklmbL2KOoLNNEDx_EUiHmANZ4pKeg,18
|
|
312
|
-
toil/test/wdl/wdltoil_test.py,sha256=
|
|
313
|
-
toil/test/wdl/wdltoil_test_kubernetes.py,sha256=
|
|
323
|
+
toil/test/wdl/wdltoil_test.py,sha256=FyVZHRIp7qoSpospQUB4rt08mGcctI_l2OJY3KUnV1I,50554
|
|
324
|
+
toil/test/wdl/wdltoil_test_kubernetes.py,sha256=vJdmSuQJslvrfF6nadjORkdanED99xElG54EC7L2rR4,2996
|
|
314
325
|
toil/test/wdl/md5sum/empty_file.json,sha256=Y4Yb2dygeV8J7wowyUuTi8qOwmRR-znb70r3jsPw688,27
|
|
315
|
-
toil/test/wdl/md5sum/md5sum-gs.json,sha256=
|
|
326
|
+
toil/test/wdl/md5sum/md5sum-gs.json,sha256=PppK5H77nRcpo_n2ttZzEPkoxrLVypGlFD6Wrwe-hfk,123
|
|
316
327
|
toil/test/wdl/md5sum/md5sum.1.0.wdl,sha256=BJMdlruHIRcuBLQY738T_eyHZms-8obz4-P6VxrwW30,445
|
|
317
328
|
toil/test/wdl/md5sum/md5sum.input,sha256=Dku-ociuYkwF79yyEiesBDbi97E3AVJwfLhogDnlE-E,67
|
|
318
|
-
toil/test/wdl/md5sum/md5sum.json,sha256=
|
|
329
|
+
toil/test/wdl/md5sum/md5sum.json,sha256=Qact-pZ-Bqy2016DharLO3vFhok_RiWEKtTWSn0V6oQ,39
|
|
319
330
|
toil/test/wdl/md5sum/md5sum.wdl,sha256=rOMK3chqHY8TvJljL715ZDGokmN3z-eUtIzDXTFYw5w,447
|
|
320
331
|
toil/test/wdl/miniwdl_self_test/inputs-namespaced.json,sha256=uUaurpDKWYaPET2tEkiIZ1ciEti_4s2_j0ZsUwiDdPo,107
|
|
321
332
|
toil/test/wdl/miniwdl_self_test/inputs.json,sha256=Q_e331sBPLgqfALukm1eWxR1n5zQp2l5YRtiGpWjBW4,94
|
|
@@ -394,6 +405,7 @@ toil/test/wdl/testfiles/drop_files_subworkflow.wdl,sha256=Qrq7LPfQGmD8ALWUVyp3Al
|
|
|
394
405
|
toil/test/wdl/testfiles/empty.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
395
406
|
toil/test/wdl/testfiles/not_enough_outputs.wdl,sha256=AO3v20B5nR28MZmmKYCTiqh3hRJgg6LCENAZ2nC4IYg,438
|
|
396
407
|
toil/test/wdl/testfiles/random.wdl,sha256=74vORE5a-fcQs_z73uyjUzkRqpGLv22bWmlNuvE83nw,1017
|
|
408
|
+
toil/test/wdl/testfiles/read_file.wdl,sha256=9UkeiNK7QQJfzARfWfApL_zQ_7O3cTAF3_IyJfBhQJs,296
|
|
397
409
|
toil/test/wdl/testfiles/string_file_coercion.json,sha256=nu3kh6p0_jgKz2Mcw7NjvM10sBfF9BE627SLvThvff0,45
|
|
398
410
|
toil/test/wdl/testfiles/string_file_coercion.wdl,sha256=jAtxOuPkoZLvVDIJhrOqKFuX-0_79Fwz2W9UlF9voLs,687
|
|
399
411
|
toil/test/wdl/testfiles/test.json,sha256=XdtB9ajGigQBbXEPHSGcB6PVpWiN2rnr0gH9uc6mpXU,43
|
|
@@ -404,7 +416,7 @@ toil/test/wdl/testfiles/test_lines.txt,sha256=T8YhSilj6qZUlOMAiJP12Cg3khvJjtheRu
|
|
|
404
416
|
toil/test/wdl/testfiles/test_map.txt,sha256=QyN7s49sriiQAf9yiaOAaL6bX8RD33-cAt6Kb204lZU,24
|
|
405
417
|
toil/test/wdl/testfiles/test_string.txt,sha256=RJIcNvAtpktKTMLRM0lPdz9HOrjMpcS911oJGLeciQI,19
|
|
406
418
|
toil/test/wdl/testfiles/url_to_file.wdl,sha256=Qn3FsMMkdz3ZOY41J2x2okkyHap0WC7G1Aw4TEx7o4U,255
|
|
407
|
-
toil/test/wdl/testfiles/url_to_optional_file.wdl,sha256=
|
|
419
|
+
toil/test/wdl/testfiles/url_to_optional_file.wdl,sha256=70lDMV3_DdqkULMsglviII4vS627je7nvCS6R5d0iTw,243
|
|
408
420
|
toil/test/wdl/testfiles/vocab.json,sha256=yj0WO6sFU4GCciYUBWjzvvfqrBh869doeOC2Pp5EI1Y,3
|
|
409
421
|
toil/test/wdl/testfiles/vocab.wdl,sha256=CHKWCFX9ZxuYRnR9SLS5_T9pqei3LSo5bChSxLg9xNI,1995
|
|
410
422
|
toil/test/wdl/testfiles/wait.wdl,sha256=Nua3sRf-ciA6eVUzZG2nopYNgrrA3-4MNyKV395MvxQ,402
|
|
@@ -416,7 +428,7 @@ toil/test/wdl/wdl_specification/v1_spec_declaration.wdl,sha256=-9YcGU3YotQP3vn4-
|
|
|
416
428
|
toil/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
417
429
|
toil/utils/toilClean.py,sha256=X6Fws6LVqa-ScUITMTomV5iohXa3yz_rAIFnUfXlqZU,1850
|
|
418
430
|
toil/utils/toilConfig.py,sha256=Ki6gGV-9d21z06u-A0meE2H0MjJUCT4mQEsMmERHn8o,1502
|
|
419
|
-
toil/utils/toilDebugFile.py,sha256=
|
|
431
|
+
toil/utils/toilDebugFile.py,sha256=tRlsJgfCnPCV-1w4eS9WPIBDlywIxLgxzAXeQjjqhhk,6334
|
|
420
432
|
toil/utils/toilDebugJob.py,sha256=K3j5wqDBzLHRGwThE_PDVN0-yKFl7xETDWXrNe6EnQc,10796
|
|
421
433
|
toil/utils/toilDestroyCluster.py,sha256=OvwlKgomHiLptN8GjLouBzfFCo-SyLfrRWF4sv0kPww,1416
|
|
422
434
|
toil/utils/toilKill.py,sha256=21zOstvFb32cwQlhMsG5Q4lPT2CSnZ7OXEK1mmyLmtk,2751
|
|
@@ -424,16 +436,16 @@ toil/utils/toilLaunchCluster.py,sha256=nKoqmbAnadoZNKx7plzyZzAgMj6yn38tu2LOQqjLN
|
|
|
424
436
|
toil/utils/toilMain.py,sha256=Lz7dtkpE8urTRgimRjewKvbh4Xgh6l0OJRtxX203LyI,2790
|
|
425
437
|
toil/utils/toilRsyncCluster.py,sha256=cR-4o9KpoyBdObCwQgpAqpO30VK3gGzwHKOGyQHGQeQ,2150
|
|
426
438
|
toil/utils/toilServer.py,sha256=4XbyOHQHgMWWrCWj9Uz1M-jLQheV2Ju-DQ_fNdnBg1o,1178
|
|
427
|
-
toil/utils/toilSshCluster.py,sha256=
|
|
428
|
-
toil/utils/toilStats.py,sha256=
|
|
439
|
+
toil/utils/toilSshCluster.py,sha256=yjNOjbtC1CdvTRK1vOygamXvlUYHnbmWtsOyH5lBNkg,3580
|
|
440
|
+
toil/utils/toilStats.py,sha256=k6llhv5HOolSO4yQCoMuYVwbOpauGrPiGb5jSAWYAtM,26301
|
|
429
441
|
toil/utils/toilStatus.py,sha256=qacxW5lcguvmhUi1b4cjm1acJik0zpsP7CsUuZyX-fo,20424
|
|
430
|
-
toil/utils/toilUpdateEC2Instances.py,sha256=
|
|
442
|
+
toil/utils/toilUpdateEC2Instances.py,sha256=47972f1_oRvKOZv77EcBr3QjP2YNl8SZWhTsw6mWG-4,1318
|
|
431
443
|
toil/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
432
444
|
toil/wdl/utils.py,sha256=U0TqbVTsap0VdeZjrUf4l71A7Zns-Hkso1B1Zdp2LRk,1316
|
|
433
|
-
toil/wdl/wdltoil.py,sha256=
|
|
434
|
-
toil-
|
|
435
|
-
toil-
|
|
436
|
-
toil-
|
|
437
|
-
toil-
|
|
438
|
-
toil-
|
|
439
|
-
toil-
|
|
445
|
+
toil/wdl/wdltoil.py,sha256=bxg5QBKK404VW6MCOlNgTpFnrOvDlNkDLGVO7u70rSY,265800
|
|
446
|
+
toil-9.1.0.dist-info/licenses/LICENSE,sha256=YVxVi652J1ZDmtC3EMP5r0EbK85-hm_pzogiULmlqUA,12862
|
|
447
|
+
toil-9.1.0.dist-info/METADATA,sha256=r7k37536fUxWnVEP9c5wT-7gqeqYcl1J0gHAu942pXQ,8695
|
|
448
|
+
toil-9.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
449
|
+
toil-9.1.0.dist-info/entry_points.txt,sha256=EF2yFhV2UYuJGr-OjMkUOd3RyOCgRWQbS6XJtBJ25eM,436
|
|
450
|
+
toil-9.1.0.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
|
|
451
|
+
toil-9.1.0.dist-info/RECORD,,
|