toil 5.12.0__py3-none-any.whl → 6.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/__init__.py +18 -13
- toil/batchSystems/abstractBatchSystem.py +39 -13
- toil/batchSystems/abstractGridEngineBatchSystem.py +24 -24
- toil/batchSystems/awsBatch.py +14 -14
- toil/batchSystems/cleanup_support.py +7 -3
- toil/batchSystems/contained_executor.py +3 -3
- toil/batchSystems/htcondor.py +0 -1
- toil/batchSystems/kubernetes.py +34 -31
- toil/batchSystems/local_support.py +3 -1
- toil/batchSystems/lsf.py +7 -7
- toil/batchSystems/mesos/batchSystem.py +7 -7
- toil/batchSystems/options.py +32 -83
- toil/batchSystems/registry.py +104 -23
- toil/batchSystems/singleMachine.py +16 -13
- toil/batchSystems/slurm.py +87 -16
- toil/batchSystems/torque.py +0 -1
- toil/bus.py +44 -8
- toil/common.py +544 -753
- toil/cwl/__init__.py +28 -32
- toil/cwl/cwltoil.py +595 -574
- toil/cwl/utils.py +55 -10
- toil/exceptions.py +1 -1
- toil/fileStores/__init__.py +2 -2
- toil/fileStores/abstractFileStore.py +88 -14
- toil/fileStores/cachingFileStore.py +610 -549
- toil/fileStores/nonCachingFileStore.py +46 -22
- toil/job.py +182 -101
- toil/jobStores/abstractJobStore.py +161 -95
- toil/jobStores/aws/jobStore.py +23 -9
- toil/jobStores/aws/utils.py +6 -6
- toil/jobStores/fileJobStore.py +116 -18
- toil/jobStores/googleJobStore.py +16 -7
- toil/jobStores/utils.py +5 -6
- toil/leader.py +87 -56
- toil/lib/accelerators.py +10 -5
- toil/lib/aws/__init__.py +3 -14
- toil/lib/aws/ami.py +22 -9
- toil/lib/aws/iam.py +21 -13
- toil/lib/aws/session.py +2 -16
- toil/lib/aws/utils.py +4 -5
- toil/lib/compatibility.py +1 -1
- toil/lib/conversions.py +26 -3
- toil/lib/docker.py +22 -23
- toil/lib/ec2.py +10 -6
- toil/lib/ec2nodes.py +106 -100
- toil/lib/encryption/_nacl.py +2 -1
- toil/lib/generatedEC2Lists.py +325 -18
- toil/lib/io.py +49 -2
- toil/lib/misc.py +1 -1
- toil/lib/resources.py +9 -2
- toil/lib/threading.py +101 -38
- toil/options/common.py +736 -0
- toil/options/cwl.py +336 -0
- toil/options/wdl.py +37 -0
- toil/provisioners/abstractProvisioner.py +9 -4
- toil/provisioners/aws/__init__.py +3 -6
- toil/provisioners/aws/awsProvisioner.py +6 -0
- toil/provisioners/clusterScaler.py +3 -2
- toil/provisioners/gceProvisioner.py +2 -2
- toil/realtimeLogger.py +2 -1
- toil/resource.py +24 -18
- toil/server/app.py +2 -3
- toil/server/cli/wes_cwl_runner.py +4 -4
- toil/server/utils.py +1 -1
- toil/server/wes/abstract_backend.py +3 -2
- toil/server/wes/amazon_wes_utils.py +5 -4
- toil/server/wes/tasks.py +2 -3
- toil/server/wes/toil_backend.py +2 -10
- toil/server/wsgi_app.py +2 -0
- toil/serviceManager.py +12 -10
- toil/statsAndLogging.py +41 -9
- toil/test/__init__.py +29 -54
- toil/test/batchSystems/batchSystemTest.py +11 -111
- toil/test/batchSystems/test_slurm.py +24 -8
- toil/test/cactus/__init__.py +0 -0
- toil/test/cactus/test_cactus_integration.py +58 -0
- toil/test/cwl/cwlTest.py +438 -223
- toil/test/cwl/glob_dir.cwl +15 -0
- toil/test/cwl/preemptible.cwl +21 -0
- toil/test/cwl/preemptible_expression.cwl +28 -0
- toil/test/cwl/revsort.cwl +1 -1
- toil/test/cwl/revsort2.cwl +1 -1
- toil/test/docs/scriptsTest.py +2 -3
- toil/test/jobStores/jobStoreTest.py +34 -21
- toil/test/lib/aws/test_iam.py +4 -14
- toil/test/lib/aws/test_utils.py +0 -3
- toil/test/lib/dockerTest.py +4 -4
- toil/test/lib/test_ec2.py +12 -17
- toil/test/mesos/helloWorld.py +4 -5
- toil/test/mesos/stress.py +1 -1
- toil/test/{wdl/conftest.py → options/__init__.py} +0 -10
- toil/test/options/options.py +37 -0
- toil/test/provisioners/aws/awsProvisionerTest.py +9 -5
- toil/test/provisioners/clusterScalerTest.py +6 -4
- toil/test/provisioners/clusterTest.py +23 -11
- toil/test/provisioners/gceProvisionerTest.py +0 -6
- toil/test/provisioners/restartScript.py +3 -2
- toil/test/server/serverTest.py +1 -1
- toil/test/sort/restart_sort.py +2 -1
- toil/test/sort/sort.py +2 -1
- toil/test/sort/sortTest.py +2 -13
- toil/test/src/autoDeploymentTest.py +45 -45
- toil/test/src/busTest.py +5 -5
- toil/test/src/checkpointTest.py +2 -2
- toil/test/src/deferredFunctionTest.py +1 -1
- toil/test/src/fileStoreTest.py +32 -16
- toil/test/src/helloWorldTest.py +1 -1
- toil/test/src/importExportFileTest.py +1 -1
- toil/test/src/jobDescriptionTest.py +2 -1
- toil/test/src/jobServiceTest.py +1 -1
- toil/test/src/jobTest.py +18 -18
- toil/test/src/miscTests.py +5 -3
- toil/test/src/promisedRequirementTest.py +3 -3
- toil/test/src/realtimeLoggerTest.py +1 -1
- toil/test/src/resourceTest.py +2 -2
- toil/test/src/restartDAGTest.py +1 -1
- toil/test/src/resumabilityTest.py +36 -2
- toil/test/src/retainTempDirTest.py +1 -1
- toil/test/src/systemTest.py +2 -2
- toil/test/src/toilContextManagerTest.py +2 -2
- toil/test/src/userDefinedJobArgTypeTest.py +1 -1
- toil/test/utils/toilDebugTest.py +98 -32
- toil/test/utils/toilKillTest.py +2 -2
- toil/test/utils/utilsTest.py +23 -3
- toil/test/wdl/wdltoil_test.py +223 -45
- toil/toilState.py +7 -6
- toil/utils/toilClean.py +1 -1
- toil/utils/toilConfig.py +36 -0
- toil/utils/toilDebugFile.py +60 -33
- toil/utils/toilDebugJob.py +39 -12
- toil/utils/toilDestroyCluster.py +1 -1
- toil/utils/toilKill.py +1 -1
- toil/utils/toilLaunchCluster.py +13 -2
- toil/utils/toilMain.py +3 -2
- toil/utils/toilRsyncCluster.py +1 -1
- toil/utils/toilSshCluster.py +1 -1
- toil/utils/toilStats.py +445 -305
- toil/utils/toilStatus.py +2 -5
- toil/version.py +10 -10
- toil/wdl/utils.py +2 -122
- toil/wdl/wdltoil.py +1257 -492
- toil/worker.py +55 -46
- toil-6.1.0.dist-info/METADATA +124 -0
- toil-6.1.0.dist-info/RECORD +241 -0
- {toil-5.12.0.dist-info → toil-6.1.0.dist-info}/WHEEL +1 -1
- {toil-5.12.0.dist-info → toil-6.1.0.dist-info}/entry_points.txt +0 -1
- toil/batchSystems/parasol.py +0 -379
- toil/batchSystems/tes.py +0 -459
- toil/test/batchSystems/parasolTestSupport.py +0 -117
- toil/test/wdl/builtinTest.py +0 -506
- toil/test/wdl/toilwdlTest.py +0 -522
- toil/wdl/toilwdl.py +0 -141
- toil/wdl/versions/dev.py +0 -107
- toil/wdl/versions/draft2.py +0 -980
- toil/wdl/versions/v1.py +0 -794
- toil/wdl/wdl_analysis.py +0 -116
- toil/wdl/wdl_functions.py +0 -997
- toil/wdl/wdl_synthesis.py +0 -1011
- toil/wdl/wdl_types.py +0 -243
- toil-5.12.0.dist-info/METADATA +0 -118
- toil-5.12.0.dist-info/RECORD +0 -244
- /toil/{wdl/versions → options}/__init__.py +0 -0
- {toil-5.12.0.dist-info → toil-6.1.0.dist-info}/LICENSE +0 -0
- {toil-5.12.0.dist-info → toil-6.1.0.dist-info}/top_level.txt +0 -0
toil/wdl/wdl_types.py
DELETED
|
@@ -1,243 +0,0 @@
|
|
|
1
|
-
from abc import ABC
|
|
2
|
-
from typing import Any, Dict, Optional
|
|
3
|
-
|
|
4
|
-
from toil.job import Promise
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
class WDLRuntimeError(RuntimeError):
|
|
8
|
-
pass
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
class WDLType:
|
|
12
|
-
"""
|
|
13
|
-
Represents a primitive or compound WDL type:
|
|
14
|
-
|
|
15
|
-
https://github.com/openwdl/wdl/blob/main/versions/development/SPEC.md#types
|
|
16
|
-
"""
|
|
17
|
-
|
|
18
|
-
def __init__(self, optional: bool = False):
|
|
19
|
-
self.optional = optional
|
|
20
|
-
|
|
21
|
-
@property
|
|
22
|
-
def name(self) -> str:
|
|
23
|
-
"""
|
|
24
|
-
Type name as string. Used in display messages / 'mappings.out' if dev
|
|
25
|
-
mode is enabled.
|
|
26
|
-
"""
|
|
27
|
-
raise NotImplementedError
|
|
28
|
-
|
|
29
|
-
@property
|
|
30
|
-
def default_value(self) -> Optional[str]:
|
|
31
|
-
"""
|
|
32
|
-
Default value if optional.
|
|
33
|
-
"""
|
|
34
|
-
return None
|
|
35
|
-
|
|
36
|
-
def create(self, value: Any, output: bool = False) -> Any:
|
|
37
|
-
"""
|
|
38
|
-
Calls at runtime. Returns an instance of the current type. An error may
|
|
39
|
-
be raised if the value is not in the correct format.
|
|
40
|
-
|
|
41
|
-
:param value: a Python object
|
|
42
|
-
"""
|
|
43
|
-
if value is None:
|
|
44
|
-
# check if input is in fact an optional.
|
|
45
|
-
if self.optional:
|
|
46
|
-
return self.default_value
|
|
47
|
-
else:
|
|
48
|
-
raise WDLRuntimeError(f"Required input for '{self.name}' type not specified.")
|
|
49
|
-
|
|
50
|
-
if isinstance(value, Promise):
|
|
51
|
-
return value
|
|
52
|
-
|
|
53
|
-
return self._create(value)
|
|
54
|
-
|
|
55
|
-
def _create(self, value: Any) -> Any:
|
|
56
|
-
raise NotImplementedError
|
|
57
|
-
|
|
58
|
-
def __eq__(self, other: Any) -> bool:
|
|
59
|
-
return self.name.__eq__(other)
|
|
60
|
-
|
|
61
|
-
def __str__(self) -> str:
|
|
62
|
-
return self.name.__str__()
|
|
63
|
-
|
|
64
|
-
def __repr__(self) -> str:
|
|
65
|
-
return self.name.__repr__()
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
class WDLCompoundType(WDLType, ABC):
|
|
69
|
-
"""
|
|
70
|
-
Represents a WDL compound type.
|
|
71
|
-
"""
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
class WDLStringType(WDLType):
|
|
75
|
-
""" Represents a WDL String primitive type."""
|
|
76
|
-
|
|
77
|
-
@property
|
|
78
|
-
def name(self) -> str:
|
|
79
|
-
return 'String'
|
|
80
|
-
|
|
81
|
-
@property
|
|
82
|
-
def default_value(self) -> str:
|
|
83
|
-
return ''
|
|
84
|
-
|
|
85
|
-
def _create(self, value: Any) -> Any:
|
|
86
|
-
return str(value)
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
class WDLIntType(WDLType):
|
|
90
|
-
""" Represents a WDL Int primitive type."""
|
|
91
|
-
|
|
92
|
-
@property
|
|
93
|
-
def name(self) -> str:
|
|
94
|
-
return 'Int'
|
|
95
|
-
|
|
96
|
-
def _create(self, value: Any) -> Any:
|
|
97
|
-
return int(value)
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
class WDLFloatType(WDLType):
|
|
101
|
-
""" Represents a WDL Float primitive type."""
|
|
102
|
-
|
|
103
|
-
@property
|
|
104
|
-
def name(self) -> str:
|
|
105
|
-
return 'Float'
|
|
106
|
-
|
|
107
|
-
def _create(self, value: Any) -> Any:
|
|
108
|
-
return float(value)
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
class WDLBooleanType(WDLType):
|
|
112
|
-
""" Represents a WDL Boolean primitive type."""
|
|
113
|
-
|
|
114
|
-
@property
|
|
115
|
-
def name(self) -> str:
|
|
116
|
-
return 'Boolean'
|
|
117
|
-
|
|
118
|
-
def _create(self, value: Any) -> Any:
|
|
119
|
-
return True if value else False
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
class WDLFileType(WDLType):
|
|
123
|
-
""" Represents a WDL File primitive type."""
|
|
124
|
-
|
|
125
|
-
@property
|
|
126
|
-
def name(self) -> str:
|
|
127
|
-
return 'File'
|
|
128
|
-
|
|
129
|
-
@property
|
|
130
|
-
def default_value(self) -> str:
|
|
131
|
-
return ''
|
|
132
|
-
|
|
133
|
-
def _create(self, value: Any) -> Any:
|
|
134
|
-
if isinstance(value, (WDLFile, Promise)):
|
|
135
|
-
# return the original file if it's passed from task to task.
|
|
136
|
-
return value
|
|
137
|
-
|
|
138
|
-
return WDLFile(file_path=value, imported=False)
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
class WDLArrayType(WDLCompoundType):
|
|
142
|
-
""" Represents a WDL Array compound type."""
|
|
143
|
-
|
|
144
|
-
def __init__(self, element: WDLType, optional: bool = False):
|
|
145
|
-
super().__init__(optional)
|
|
146
|
-
self.element = element
|
|
147
|
-
|
|
148
|
-
@property
|
|
149
|
-
def name(self) -> str:
|
|
150
|
-
return f'Array[{self.element.name}]'
|
|
151
|
-
|
|
152
|
-
def _create(self, value: Any) -> Any:
|
|
153
|
-
if not isinstance(value, list):
|
|
154
|
-
raise WDLRuntimeError(f"Expected an array input for Array, but got '{type(value)}'")
|
|
155
|
-
|
|
156
|
-
return [self.element.create(val) for val in value]
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
class WDLPairType(WDLCompoundType):
|
|
160
|
-
""" Represents a WDL Pair compound type."""
|
|
161
|
-
|
|
162
|
-
def __init__(self, left: WDLType, right: WDLType, optional: bool = False):
|
|
163
|
-
super().__init__(optional)
|
|
164
|
-
self.left = left
|
|
165
|
-
self.right = right
|
|
166
|
-
|
|
167
|
-
@property
|
|
168
|
-
def name(self) -> str:
|
|
169
|
-
return f'Pair[{self.left.name}, {self.right.name}]'
|
|
170
|
-
|
|
171
|
-
def _create(self, value: Any) -> Any:
|
|
172
|
-
if isinstance(value, WDLPair):
|
|
173
|
-
return value
|
|
174
|
-
elif isinstance(value, tuple):
|
|
175
|
-
if len(value) != 2:
|
|
176
|
-
raise WDLRuntimeError('Only support Pair len == 2')
|
|
177
|
-
left, right = value
|
|
178
|
-
elif isinstance(value, dict):
|
|
179
|
-
if 'left' not in value or 'right' not in value:
|
|
180
|
-
raise WDLRuntimeError('Pair needs \'left\' and \'right\' keys')
|
|
181
|
-
left = value.get('left')
|
|
182
|
-
right = value.get('right')
|
|
183
|
-
else:
|
|
184
|
-
raise WDLRuntimeError(f"Expected a pair input for Pair, but got '{type(value)}'")
|
|
185
|
-
|
|
186
|
-
return WDLPair(self.left.create(left), self.right.create(right))
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
class WDLMapType(WDLCompoundType):
|
|
190
|
-
""" Represents a WDL Map compound type."""
|
|
191
|
-
|
|
192
|
-
def __init__(self, key: WDLType, value: WDLType, optional: bool = False):
|
|
193
|
-
super().__init__(optional)
|
|
194
|
-
self.key = key
|
|
195
|
-
self.value = value
|
|
196
|
-
|
|
197
|
-
@property
|
|
198
|
-
def name(self) -> str:
|
|
199
|
-
return f'Map[{self.key.name}, {self.value.name}]'
|
|
200
|
-
|
|
201
|
-
def _create(self, value: Any) -> Any:
|
|
202
|
-
if not isinstance(value, dict):
|
|
203
|
-
raise WDLRuntimeError(f"Expected a map input for Map, but got '{type(value)}'")
|
|
204
|
-
|
|
205
|
-
return {self.key.create(k): self.value.create(v) for k, v in value.items()}
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
class WDLFile:
|
|
209
|
-
"""
|
|
210
|
-
Represents a WDL File.
|
|
211
|
-
"""
|
|
212
|
-
def __init__(self, file_path: str, file_name: Optional[str] = None, imported: bool = False):
|
|
213
|
-
"""
|
|
214
|
-
:param file_path: Path to file.
|
|
215
|
-
:param file_name: Optional. Preserved file name.
|
|
216
|
-
:param imported: If True, this file has been imported to the fileStore
|
|
217
|
-
via fileStore.importFile().
|
|
218
|
-
"""
|
|
219
|
-
self.file_path = file_path
|
|
220
|
-
self.file_name = file_name
|
|
221
|
-
self.imported = imported
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
class WDLPair:
|
|
225
|
-
"""
|
|
226
|
-
Represents a WDL Pair literal defined at
|
|
227
|
-
https://github.com/openwdl/wdl/blob/main/versions/development/SPEC.md#pair-literals
|
|
228
|
-
"""
|
|
229
|
-
|
|
230
|
-
def __init__(self, left: Any, right: Any):
|
|
231
|
-
self.left = left
|
|
232
|
-
self.right = right
|
|
233
|
-
|
|
234
|
-
def to_dict(self) -> Dict[str, Any]:
|
|
235
|
-
return {'left': self.left, 'right': self.right}
|
|
236
|
-
|
|
237
|
-
def __eq__(self, other: Any) -> Any:
|
|
238
|
-
if not isinstance(other, WDLPair):
|
|
239
|
-
return False
|
|
240
|
-
return self.left == other.left and self.right == other.right
|
|
241
|
-
|
|
242
|
-
def __repr__(self) -> str:
|
|
243
|
-
return str(self.to_dict())
|
toil-5.12.0.dist-info/METADATA
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: toil
|
|
3
|
-
Version: 5.12.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.7
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
22
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
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.7
|
|
32
|
-
License-File: LICENSE
|
|
33
|
-
Requires-Dist: dill (<0.4,>=0.3.2)
|
|
34
|
-
Requires-Dist: requests (<3,>=2)
|
|
35
|
-
Requires-Dist: docker (<6,>=3.7.2)
|
|
36
|
-
Requires-Dist: urllib3 (<2.0.0,>=1.26.0)
|
|
37
|
-
Requires-Dist: python-dateutil
|
|
38
|
-
Requires-Dist: psutil (<6,>=3.0.1)
|
|
39
|
-
Requires-Dist: py-tes (<1,>=0.4.2)
|
|
40
|
-
Requires-Dist: PyPubSub (<5,>=4.0.3)
|
|
41
|
-
Requires-Dist: addict (<2.5,>=2.2.1)
|
|
42
|
-
Requires-Dist: pytz (>=2012)
|
|
43
|
-
Requires-Dist: enlighten (<2,>=1.5.2)
|
|
44
|
-
Requires-Dist: typing-extensions
|
|
45
|
-
Provides-Extra: all
|
|
46
|
-
Requires-Dist: boto (<3,>=2.48.0) ; extra == 'all'
|
|
47
|
-
Requires-Dist: boto3-stubs[boto3,iam,s3,sdb,sts] (<2,>=1.28.3.post2) ; extra == 'all'
|
|
48
|
-
Requires-Dist: mypy-boto3-iam (<2,>=1.28.3.post2) ; extra == 'all'
|
|
49
|
-
Requires-Dist: moto (<5,>=4.1.11) ; extra == 'all'
|
|
50
|
-
Requires-Dist: cwltool (==3.1.20230601100705) ; extra == 'all'
|
|
51
|
-
Requires-Dist: schema-salad (<9,>=8.4.20230128170514) ; extra == 'all'
|
|
52
|
-
Requires-Dist: galaxy-tool-util ; extra == 'all'
|
|
53
|
-
Requires-Dist: ruamel.yaml (<=0.17.21,>=0.15) ; extra == 'all'
|
|
54
|
-
Requires-Dist: ruamel.yaml.clib (>=0.2.6) ; extra == 'all'
|
|
55
|
-
Requires-Dist: networkx (<2.8.9,>=2) ; extra == 'all'
|
|
56
|
-
Requires-Dist: CacheControl[filecache] ; extra == 'all'
|
|
57
|
-
Requires-Dist: pynacl (<2,>=1.4.0) ; extra == 'all'
|
|
58
|
-
Requires-Dist: apache-libcloud (<3,>=2.2.1) ; extra == 'all'
|
|
59
|
-
Requires-Dist: google-cloud-storage (<=2.8.0,>=2) ; extra == 'all'
|
|
60
|
-
Requires-Dist: google-auth (<3,>=2.18.1) ; extra == 'all'
|
|
61
|
-
Requires-Dist: kubernetes (<22,>=12.0.1) ; extra == 'all'
|
|
62
|
-
Requires-Dist: kubernetes-stubs (==v22.6.0post1) ; extra == 'all'
|
|
63
|
-
Requires-Dist: types-urllib3 ; extra == 'all'
|
|
64
|
-
Requires-Dist: types-PyYAML ; extra == 'all'
|
|
65
|
-
Requires-Dist: idna (>=2) ; extra == 'all'
|
|
66
|
-
Requires-Dist: pymesos (<0.4,>=0.3.15) ; extra == 'all'
|
|
67
|
-
Requires-Dist: miniwdl (==1.10.0) ; extra == 'all'
|
|
68
|
-
Requires-Dist: wdlparse (==0.1.0) ; extra == 'all'
|
|
69
|
-
Requires-Dist: connexion[swagger-ui] (<3,>=2.10.0) ; extra == 'all'
|
|
70
|
-
Requires-Dist: flask (<3,>=2.0) ; extra == 'all'
|
|
71
|
-
Requires-Dist: werkzeug (<3,>=2.0) ; extra == 'all'
|
|
72
|
-
Requires-Dist: flask-cors (==3.0.10) ; extra == 'all'
|
|
73
|
-
Requires-Dist: gunicorn (==20.1.0) ; extra == 'all'
|
|
74
|
-
Requires-Dist: celery (<6,>=5.1.0) ; extra == 'all'
|
|
75
|
-
Requires-Dist: wes-service (<5,>=4.0.0) ; extra == 'all'
|
|
76
|
-
Requires-Dist: ruamel.yaml (<0.17.22,>=0.15) ; extra == 'all'
|
|
77
|
-
Provides-Extra: aws
|
|
78
|
-
Requires-Dist: boto (<3,>=2.48.0) ; extra == 'aws'
|
|
79
|
-
Requires-Dist: boto3-stubs[boto3,iam,s3,sdb,sts] (<2,>=1.28.3.post2) ; extra == 'aws'
|
|
80
|
-
Requires-Dist: mypy-boto3-iam (<2,>=1.28.3.post2) ; extra == 'aws'
|
|
81
|
-
Requires-Dist: moto (<5,>=4.1.11) ; extra == 'aws'
|
|
82
|
-
Provides-Extra: cwl
|
|
83
|
-
Requires-Dist: cwltool (==3.1.20230601100705) ; extra == 'cwl'
|
|
84
|
-
Requires-Dist: schema-salad (<9,>=8.4.20230128170514) ; extra == 'cwl'
|
|
85
|
-
Requires-Dist: galaxy-tool-util ; extra == 'cwl'
|
|
86
|
-
Requires-Dist: ruamel.yaml (<=0.17.21,>=0.15) ; extra == 'cwl'
|
|
87
|
-
Requires-Dist: ruamel.yaml.clib (>=0.2.6) ; extra == 'cwl'
|
|
88
|
-
Requires-Dist: networkx (<2.8.9,>=2) ; extra == 'cwl'
|
|
89
|
-
Requires-Dist: CacheControl[filecache] ; extra == 'cwl'
|
|
90
|
-
Provides-Extra: encryption
|
|
91
|
-
Requires-Dist: pynacl (<2,>=1.4.0) ; extra == 'encryption'
|
|
92
|
-
Provides-Extra: google
|
|
93
|
-
Requires-Dist: apache-libcloud (<3,>=2.2.1) ; extra == 'google'
|
|
94
|
-
Requires-Dist: google-cloud-storage (<=2.8.0,>=2) ; extra == 'google'
|
|
95
|
-
Requires-Dist: google-auth (<3,>=2.18.1) ; extra == 'google'
|
|
96
|
-
Provides-Extra: htcondor
|
|
97
|
-
Requires-Dist: htcondor (<11,>=10.2.0.post1) ; (sys_platform!="darwin") and extra == 'htcondor'
|
|
98
|
-
Provides-Extra: kubernetes
|
|
99
|
-
Requires-Dist: kubernetes (<22,>=12.0.1) ; extra == 'kubernetes'
|
|
100
|
-
Requires-Dist: kubernetes-stubs (==v22.6.0post1) ; extra == 'kubernetes'
|
|
101
|
-
Requires-Dist: types-urllib3 ; extra == 'kubernetes'
|
|
102
|
-
Requires-Dist: types-PyYAML ; extra == 'kubernetes'
|
|
103
|
-
Requires-Dist: idna (>=2) ; extra == 'kubernetes'
|
|
104
|
-
Provides-Extra: mesos
|
|
105
|
-
Requires-Dist: pymesos (<0.4,>=0.3.15) ; extra == 'mesos'
|
|
106
|
-
Provides-Extra: server
|
|
107
|
-
Requires-Dist: connexion[swagger-ui] (<3,>=2.10.0) ; extra == 'server'
|
|
108
|
-
Requires-Dist: flask (<3,>=2.0) ; extra == 'server'
|
|
109
|
-
Requires-Dist: werkzeug (<3,>=2.0) ; extra == 'server'
|
|
110
|
-
Requires-Dist: flask-cors (==3.0.10) ; extra == 'server'
|
|
111
|
-
Requires-Dist: gunicorn (==20.1.0) ; extra == 'server'
|
|
112
|
-
Requires-Dist: celery (<6,>=5.1.0) ; extra == 'server'
|
|
113
|
-
Requires-Dist: wes-service (<5,>=4.0.0) ; extra == 'server'
|
|
114
|
-
Requires-Dist: ruamel.yaml (<0.17.22,>=0.15) ; extra == 'server'
|
|
115
|
-
Provides-Extra: wdl
|
|
116
|
-
Requires-Dist: miniwdl (==1.10.0) ; extra == 'wdl'
|
|
117
|
-
Requires-Dist: wdlparse (==0.1.0) ; extra == 'wdl'
|
|
118
|
-
|
toil-5.12.0.dist-info/RECORD
DELETED
|
@@ -1,244 +0,0 @@
|
|
|
1
|
-
toil/__init__.py,sha256=4pRmmYwNWSn32vvgd71jxVKXppNbliwlVqcXxKC-69E,30977
|
|
2
|
-
toil/bus.py,sha256=brb2s46ruSCuK-XuQ30RJTVlpucMOoZ7tL4_gNCOR-4,28009
|
|
3
|
-
toil/common.py,sha256=__hwB4LICnhAEsmo3fiKE97q1c9Rsffik_R_Dmukweo,95709
|
|
4
|
-
toil/deferred.py,sha256=vGr0IrCvpTiCDR05d5wwmqs6WrifgqDRjDjS24ozJPA,13953
|
|
5
|
-
toil/exceptions.py,sha256=Ym1y-oBMB0tYgbKqDfhU8hnuiPgbQisU0bC0SVJ_iLU,1815
|
|
6
|
-
toil/job.py,sha256=lWRAb-O7x1G2UuERZ1xbxZpTfQwxyoy_DSizqAdNcc0,143700
|
|
7
|
-
toil/leader.py,sha256=WB1e13u5UN82seAtKRGoDncaD6h6tdWM7JKAH7u2nv0,75394
|
|
8
|
-
toil/realtimeLogger.py,sha256=sQc2V4hwWXmxHZdQpgf5klCU-g5rDPT7qzTP_hyZqdU,9624
|
|
9
|
-
toil/resource.py,sha256=MnjtBnjx9cG701tS9GLs-ArWcbmkTppBvjV964SA15A,24375
|
|
10
|
-
toil/serviceManager.py,sha256=czh7yDFmz4mh4SQak1OoMImkInp1YjwucvY-ct7SVbo,18663
|
|
11
|
-
toil/statsAndLogging.py,sha256=rv0iPzTJPMo9vz5GBT2CiTUJ6_Mji6bLv8v62p8HBTQ,13056
|
|
12
|
-
toil/toilState.py,sha256=IWAznJyx2Jp1wEOyoQZMAU2dci3lkOGGOI4rMSYDOuI,14595
|
|
13
|
-
toil/version.py,sha256=6QA96Pr-Rrj4GJ-9SRdGfriZKOzvIlvXRcWOXZenN9k,490
|
|
14
|
-
toil/worker.py,sha256=yFbb4vvGBcUAJbpcvYFjQ4QEQvaVFp5ebAF-yPv_jMk,31788
|
|
15
|
-
toil/batchSystems/__init__.py,sha256=UqxHmoYxHGYSnlEpmZCw1GnnpGFASzZlVG365E8_muY,1035
|
|
16
|
-
toil/batchSystems/abstractBatchSystem.py,sha256=3-Qko40y-W3f-5HG0PfMXA_QlM7AW9dw6-HzaD0tEao,32046
|
|
17
|
-
toil/batchSystems/abstractGridEngineBatchSystem.py,sha256=Ic-tZ4fXoQkT4o3mrhQXMhR7uF3kKV6d52mr80cRdxI,20891
|
|
18
|
-
toil/batchSystems/awsBatch.py,sha256=iD48WDSMkrQWfgwFtPa9Mf5pVSrXfHsFXxg7X2sGARw,25379
|
|
19
|
-
toil/batchSystems/cleanup_support.py,sha256=cPC83xxEuE0ckV7a1Z-cSBkaT68trIDMg2AZr1K5dJ4,4002
|
|
20
|
-
toil/batchSystems/contained_executor.py,sha256=V6GLxLbgwn5SW6EEjciCKXqCfx01-832HtoZgN5YT80,5166
|
|
21
|
-
toil/batchSystems/gridengine.py,sha256=Njkh4FJDvz3nqnLTaPgExSBGbOadhM7ua-ofQyFhhyc,7752
|
|
22
|
-
toil/batchSystems/htcondor.py,sha256=uZV1i7v2vREofGOG_SI37KqpzgTc-bYEAUizRiOrWwI,17294
|
|
23
|
-
toil/batchSystems/kubernetes.py,sha256=X6DNZ40JC8_PCu8usyWBCncOibN32R9IMRSVqK-jUkQ,84377
|
|
24
|
-
toil/batchSystems/local_support.py,sha256=y9tWQSzPW2szrQcS9ueR3jBcBU4lQU-sGslK2bAUmVQ,3768
|
|
25
|
-
toil/batchSystems/lsf.py,sha256=-OQDDwD4myH-6MsJMzauS4dZStu42x_9V1dUJ8gb8bk,17044
|
|
26
|
-
toil/batchSystems/lsfHelper.py,sha256=JJE3OHoye-V55TGMN03s-t56Lf2ijrhAjZqInLccF7Q,7205
|
|
27
|
-
toil/batchSystems/options.py,sha256=Q78WXNwLOUKW9gj9HiXb1LS60jkmM-Yvrax7PAEiWk8,9833
|
|
28
|
-
toil/batchSystems/parasol.py,sha256=r6lfqUdzHrmYck3OfvbUeCWXspfCv3Cg0q-_wHIJbXQ,17595
|
|
29
|
-
toil/batchSystems/registry.py,sha256=CD5dx9xgAYbFD9mp74og78heC3gYKkX3R1cleTHtcxQ,4532
|
|
30
|
-
toil/batchSystems/singleMachine.py,sha256=ZkfYohA37kjYSsei_bQRfxfpqMCvTjqqd02n4DW9C0s,37825
|
|
31
|
-
toil/batchSystems/slurm.py,sha256=NfqIGLcsXsGKiQVDx45nolSqGTcVvnbW58fFh2WVOfk,19134
|
|
32
|
-
toil/batchSystems/tes.py,sha256=uggX-aEDCcWdodqDdmOjE2cq563_AEJp0FfPSHcQW5g,19945
|
|
33
|
-
toil/batchSystems/torque.py,sha256=W9UcyyAIvWgU5jRcf4Vm4R0z5WlbyEz_gUjv9Jok7PU,11637
|
|
34
|
-
toil/batchSystems/mesos/__init__.py,sha256=_klpvdKQWxDTeL1fbPdItd-Lx3KJnNMAzHJtUqsbykU,3354
|
|
35
|
-
toil/batchSystems/mesos/batchSystem.py,sha256=i230SikzNXQ2cfz8jC6VDWifZl25qdm7KxyYM3EV3zo,38829
|
|
36
|
-
toil/batchSystems/mesos/conftest.py,sha256=n1ZIXzZP0msJlZL_ZIG84trKifxFLRLr2uIr-EjDucQ,836
|
|
37
|
-
toil/batchSystems/mesos/executor.py,sha256=KfreVYrjMaRRzpQGhxbi2zbBQj6fUQ0EniiS6sbKPOE,12376
|
|
38
|
-
toil/batchSystems/mesos/test/__init__.py,sha256=IZoexyiZcAPdv_L39v7mMO7xVHcMuEn7f_M4gyeh-Fk,4670
|
|
39
|
-
toil/cwl/__init__.py,sha256=tvPnBPcDEn1REiA9V5IOfRDFLvTQKO7k5icS1k8LRDw,2205
|
|
40
|
-
toil/cwl/conftest.py,sha256=R6Jw5-PeTCK0rapfHmV_VJwVcqlVbO5w3cFUbaIWUnk,848
|
|
41
|
-
toil/cwl/cwltoil.py,sha256=jRxI1IIQ7T1KCyL-czIijo7CfR67VcNeu6-xDz5x5J8,153666
|
|
42
|
-
toil/cwl/utils.py,sha256=BnFxP7ulgTs0exRpqBFxrejSyUZanOi_BaqzmcvcnPE,6146
|
|
43
|
-
toil/fileStores/__init__.py,sha256=oE5fWPYXZmavaec2TP97jaFHpUW9ULwCXw1LNg5BTVU,2376
|
|
44
|
-
toil/fileStores/abstractFileStore.py,sha256=ESr_Cos5KaKkuzDjfS8P7oN-g7nQEyxSAp9X3JPGDYw,27215
|
|
45
|
-
toil/fileStores/cachingFileStore.py,sha256=Cjc3R7NwrYa1iniiqE86jxWpGGSeWNL0V6e5wbVDILw,88712
|
|
46
|
-
toil/fileStores/nonCachingFileStore.py,sha256=gRyI5S_xINTVbCUS0j_6Vq1wUX6Bj366CyuDe1NihOE,14778
|
|
47
|
-
toil/jobStores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
-
toil/jobStores/abstractJobStore.py,sha256=XyyVN9ZV_hH7iA5-z4AVRE3caS_wvjaQVcGoBKHHARo,74571
|
|
49
|
-
toil/jobStores/conftest.py,sha256=n4dffd8QPoA_kenbHE_XzA2bf1ZTNlXux8ffukB1qCk,834
|
|
50
|
-
toil/jobStores/fileJobStore.py,sha256=uSSa8Qox-t-LEMz_e8gk3CJLWS6kCPeL03aCLH23-cw,43944
|
|
51
|
-
toil/jobStores/googleJobStore.py,sha256=QUUPvcDFz5wHy3OaEu-I5d7PCT_S5pf36A962GTBFKM,23773
|
|
52
|
-
toil/jobStores/utils.py,sha256=GnQnoYhP_PpG3UNC0HYNGzswa2zx26ATrlMjo1ORrps,15224
|
|
53
|
-
toil/jobStores/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
|
-
toil/jobStores/aws/jobStore.py,sha256=Hu42pZ62kMoKznUVbiB8AxF1P2Lm37Ndec2CB0icyac,77761
|
|
55
|
-
toil/jobStores/aws/utils.py,sha256=Ltva_BJJiR-sbdICn7dZkBYJkbI4W9-XKkiEkhSzgHY,19342
|
|
56
|
-
toil/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
toil/lib/accelerators.py,sha256=CEqmWE2gpyXpJpCUh5msK2Ou6hCUbRuBjdLGd2wbfoI,5545
|
|
58
|
-
toil/lib/bioio.py,sha256=c6B22vMF9w4VjOdZDug07ksJJ0SrqmV8NVJGDdNbLnc,2328
|
|
59
|
-
toil/lib/compatibility.py,sha256=Wm9rMO0bysB_jliBcMvRWxOBYOLPz3gp1kP8CIf_Rfo,1540
|
|
60
|
-
toil/lib/conversions.py,sha256=wi8JIkAm3Nvj5jV4e8IoBgAaF02knL2HS16XIDLvdM4,4093
|
|
61
|
-
toil/lib/docker.py,sha256=e7rauEn9-cAJJYR39DFWP2TIQrP3NyY1KJYc-YwZeqg,21116
|
|
62
|
-
toil/lib/ec2.py,sha256=uNhPh0HEpQcqoGU19IB97ZsTK5ZU5K6EEhCH7J0Z5c0,22000
|
|
63
|
-
toil/lib/ec2nodes.py,sha256=vowvUToAamtk06KlQrwet3dieYscKEeQphoYhIYzjlU,13204
|
|
64
|
-
toil/lib/exceptions.py,sha256=vxILY_EJUU_Tvg0uDKvtaFjOYE8cJiCtgrGLEOm3qRg,2271
|
|
65
|
-
toil/lib/expando.py,sha256=a_q6CeB7HNZRSbg0teMZN1Qz_vrwGo1lBN7onOyoLvQ,2925
|
|
66
|
-
toil/lib/generatedEC2Lists.py,sha256=ejp0RWm62rmQZIF3tuFrFmPZaRYgdLWcbZVnbcY9uuM,138076
|
|
67
|
-
toil/lib/humanize.py,sha256=gozIsspDv0LP_lZ8FN5EA9t1_SYoudeciQ0O0FRGzxM,1239
|
|
68
|
-
toil/lib/io.py,sha256=v6amab_1317k-PGSJrnYEJxAxKy8YkJm3n4h08M3mVg,7908
|
|
69
|
-
toil/lib/iterables.py,sha256=IEb68dyazYOSRVjnK0AFNCymA8M17Ux37sPQAbkdrcw,3429
|
|
70
|
-
toil/lib/memoize.py,sha256=gS58oA-XzrpGeucRA6s8mtwN9BK63w6JTIDnNovMJQI,3223
|
|
71
|
-
toil/lib/misc.py,sha256=nelRTn415hg36mNbJcuI1rfbLKkx5eeZuwKSWJ03dJI,5736
|
|
72
|
-
toil/lib/objects.py,sha256=yrprtKobB5n1_d5oMu6SBzTAp4PX7uzw9lTkBkR1ldw,5384
|
|
73
|
-
toil/lib/resources.py,sha256=2-IGLkCiYjcqIdwdXhJP_WsX_CLakRqBTIn60xUbYHM,2183
|
|
74
|
-
toil/lib/retry.py,sha256=iIASaiOh26ipVL1QtapNAdoGaA7iB6bVLqvNotaRIWo,22366
|
|
75
|
-
toil/lib/threading.py,sha256=0nWYL0kiDPOSeyfUR32wPZmKMiYMfRuVW5ZzEq_8_74,21234
|
|
76
|
-
toil/lib/throttle.py,sha256=2tofeq1rFkXyBZiew3ECUhcicOF01DupIF9HtXuFqD0,4977
|
|
77
|
-
toil/lib/aws/__init__.py,sha256=6EHJfFcwxqGamAgxvC1mHa_yUQjgEiAHR08Z4Vq15IA,7391
|
|
78
|
-
toil/lib/aws/ami.py,sha256=aK8vvyY-kTxEXH7s-2Xgj_g7Wr_m7Xi3qTLNe2wbY2M,8516
|
|
79
|
-
toil/lib/aws/iam.py,sha256=ArqH3803Nv2rPw6qQpyaFJj6PSrkjyuP9n7DqRY_S9Y,13836
|
|
80
|
-
toil/lib/aws/session.py,sha256=9Rt-g6dKhhdlamsFLrXlmBoeRb5i2kKyoZh6C9mDW6c,11110
|
|
81
|
-
toil/lib/aws/utils.py,sha256=umgKlD34Ut3vouZl5LHck9jkQOe8v3QUC2vGI1_eqMs,19934
|
|
82
|
-
toil/lib/encryption/__init__.py,sha256=HP19EUYJeIMdjZq11fLn_dXIGU98sIkpTxvMxvPaUSs,705
|
|
83
|
-
toil/lib/encryption/_dummy.py,sha256=TBmPDmt1FLUtwUtb8e1EKZ-8tYRC3lyrxAp4Rkaw1A8,1112
|
|
84
|
-
toil/lib/encryption/_nacl.py,sha256=mLTqmC1fIlV3IJT0fi3MsllPel18_oHRHtXQws47JyA,3769
|
|
85
|
-
toil/lib/encryption/conftest.py,sha256=PF4PbhiUftyUcNx2uU0RtX8-LcR0YAFFI5z4fBlzF5M,226
|
|
86
|
-
toil/provisioners/__init__.py,sha256=5_mxQo62vAcjCAk-ulYH0d9EcLAjmb3IP_MTYRL_D3k,9067
|
|
87
|
-
toil/provisioners/abstractProvisioner.py,sha256=_-rXUPp-qmlpsmQ7ttL2fTl1xkOWHBkzOOJOm2xe8QE,55397
|
|
88
|
-
toil/provisioners/clusterScaler.py,sha256=7kYpWVlTNyZl5pdV712rrXCcjCuEMFTQD7FXrVOQWTA,62079
|
|
89
|
-
toil/provisioners/gceProvisioner.py,sha256=MngXMshGB3zJX_9AIqX4Wd8c8872XXTmkklPCyHkQx8,23550
|
|
90
|
-
toil/provisioners/node.py,sha256=De_-7GOGrZiFVmHfGH-vWDOK9JT4W9IySQESy3R0D5I,13777
|
|
91
|
-
toil/provisioners/aws/__init__.py,sha256=1wSerwh0duSZLdosZVIAwcHE0xFcAcgBK82mBqHlGko,8623
|
|
92
|
-
toil/provisioners/aws/awsProvisioner.py,sha256=KZRdHec4cCpzZ6DuAY63bNdlSTiezEQY0JwHN-N94Zs,80914
|
|
93
|
-
toil/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
-
toil/server/app.py,sha256=o8nGf8kh6afuh8W_AbOcHSpxeeTx60VhdFhADLZnxyk,7176
|
|
95
|
-
toil/server/celery_app.py,sha256=1KjNaQ3QqLZoE6WkfLOgkVww6ouIGQKPqHtlWBe363U,649
|
|
96
|
-
toil/server/utils.py,sha256=Q4GXLDtvERnuv3-mGwyDKR3IBltfEqA47vegfl3BC1k,21832
|
|
97
|
-
toil/server/wsgi_app.py,sha256=XElNsNhnWV8ARJKLUGysjCrRh4_7uwdfpqRIAPw9zuY,1936
|
|
98
|
-
toil/server/api_spec/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
99
|
-
toil/server/api_spec/workflow_execution_service.swagger.yaml,sha256=zZ2QepvbpvLROIcVIHWrcQLUwXEqGfm68fmkdrx8rw8,25377
|
|
100
|
-
toil/server/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
|
-
toil/server/cli/wes_cwl_runner.py,sha256=ZB4KHMK6xKiW26sTErHi2QvR3-N2H-qtjl_709Zem6w,18372
|
|
102
|
-
toil/server/wes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
103
|
-
toil/server/wes/abstract_backend.py,sha256=7hSy3HKaluqiysAldL93rA7mv_hjQqG-nrKjHjronz8,9717
|
|
104
|
-
toil/server/wes/amazon_wes_utils.py,sha256=0JcK3iY36HnNvgL__KVcRuVwQrDmWj0BKzBM2mJKakc,10380
|
|
105
|
-
toil/server/wes/tasks.py,sha256=JTaf7SsX9q6OrMlgkc7lITbuKPatNigv3DfMyp9AAB0,24420
|
|
106
|
-
toil/server/wes/toil_backend.py,sha256=xvCWVPFaMFA04HvWmcqW_jJHXA4TmPQIlYobJWWZfa0,27850
|
|
107
|
-
toil/test/__init__.py,sha256=71J8kUHupt9HcH-PcFoEzSfTbZo5okpGcPi43GWtu_4,45299
|
|
108
|
-
toil/test/batchSystems/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
109
|
-
toil/test/batchSystems/batchSystemTest.py,sha256=eUnE_e8u6pkjfYer_I3-kaTQIhEI7sBPmBqkveRs5qY,57629
|
|
110
|
-
toil/test/batchSystems/parasolTestSupport.py,sha256=VeOihnRYU4SYD9MliQLL1yx-eDHjXrcYUuPXv4Oqluc,4051
|
|
111
|
-
toil/test/batchSystems/test_lsf_helper.py,sha256=vgWORofYN63TIUOUeMv0Zbjm8EbJiRM_-aHppERLwr4,4936
|
|
112
|
-
toil/test/batchSystems/test_slurm.py,sha256=OB0Ic1RzOCIT7ou39Yb4Cs7oVxev6SY5oW47stjoSJk,18572
|
|
113
|
-
toil/test/cwl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
-
toil/test/cwl/alwaysfails.cwl,sha256=EWDfzxMG4WqH2YQErhIHYPVc7-1eyucEUboj8r7yVbA,210
|
|
115
|
-
toil/test/cwl/colon_test_output.cwl,sha256=8evFOnHvpJEPn1lBI2zuEKueMUbh2p8oSNOKl-M4Ojw,401
|
|
116
|
-
toil/test/cwl/colon_test_output_job.yaml,sha256=BbXFRuWsRJV6JpJAutnHywJl_AbwEcwNRszArfRecxs,72
|
|
117
|
-
toil/test/cwl/conditional_wf.cwl,sha256=SAtUSmD5ta-DVG0SRHpT8EtOp8ztm-6v9Vskcl09c3s,357
|
|
118
|
-
toil/test/cwl/conditional_wf.yaml,sha256=WsS9dlpbRUll9M56KspQdOJ8h6SASTW7eRELefa274E,24
|
|
119
|
-
toil/test/cwl/conftest.py,sha256=okwzv8y-qDSIz--eauonzQXxj6DxyT-u8sXIUMmjxlE,698
|
|
120
|
-
toil/test/cwl/cwlTest.py,sha256=o41BARirOETiw5yArzsuU6_wrFSNFUek1PkgPzTOX_o,50767
|
|
121
|
-
toil/test/cwl/directory_from_directory.cwl,sha256=-hjZuUs5fMpKMnbj-FZAgcns4iWsCFJV6Qh7-fsRn1I,556
|
|
122
|
-
toil/test/cwl/download.cwl,sha256=XQvz8or_-k6pwyhgeUeJOew0_b3BeHcF08EaalbySz4,296
|
|
123
|
-
toil/test/cwl/download_directory.cwl,sha256=RdPmElFeHJqXGWVqEqR5VFMmXDiJubhTcM9hIrAhKY4,535
|
|
124
|
-
toil/test/cwl/download_subdirectory.cwl,sha256=9xhggsaDvdA0fOUGOXWt853h1ir0KCKB4NhhAnYLKZ4,784
|
|
125
|
-
toil/test/cwl/echo-stderr.cwl,sha256=M-j3robw02M6PWkhbDI3Yn1GDGRDteLGMMFvfhL56mQ,342
|
|
126
|
-
toil/test/cwl/echo-stdout-log-dir.cwl,sha256=emXc_pJKCUI7zpN4c6WMeIRvAsvmibRA1vyHhQB3y4Y,228
|
|
127
|
-
toil/test/cwl/echo.cwl,sha256=1_Pvhg7RmQq3wpYUhQT6iS0IR7MN_CY8UEdBWjWcQf4,183
|
|
128
|
-
toil/test/cwl/echo_string.cwl,sha256=uBmj7qdRV3GFHQxbXvVeRqiOnqc2L-oHYELGGiJJC9M,845
|
|
129
|
-
toil/test/cwl/echo_string_scatter_capture_stdout.cwl,sha256=5FGemb98l2SP0e3ajeHfeE9-FKrmKfDzQmFixxu_kJM,1090
|
|
130
|
-
toil/test/cwl/file_from_directory.cwl,sha256=0SQUY6rJgqW9zhgX5RN-vjn1smDQweThAwKC5vy5fNk,536
|
|
131
|
-
toil/test/cwl/load_contents.cwl,sha256=YASiGkUQPEa9dz6btNccARLI7sPppXmm5XaePIOpek8,464
|
|
132
|
-
toil/test/cwl/mpi_simple.cwl,sha256=xgsOk2yGbAHL3pwtCtxZd6_c9Lopl1xh32dO0D6-Qbc,470
|
|
133
|
-
toil/test/cwl/nvidia_smi.cwl,sha256=peKLDFC9_0zEt7CoRLCQDtAE5bjfotok8Ljmn1nBVtA,474
|
|
134
|
-
toil/test/cwl/revsort.cwl,sha256=PVoqyRh8c_kduy1m__ZbPkUE-6csrRXr5m8pyNoZCYE,2022
|
|
135
|
-
toil/test/cwl/revsort2.cwl,sha256=a9cRgTOthq1GAhhCuNFZgOxdDeKd3s7MfChxm4k0XVI,2023
|
|
136
|
-
toil/test/cwl/revtool.cwl,sha256=qzl3FHpaF41KPpxP9yhrOxUCsSm1bjsr2XXFpBZ_LkM,1301
|
|
137
|
-
toil/test/cwl/revtool2.cwl,sha256=CwJT3A6mmjBtneDzVDEfcYqoIerKm7A7A6UcyrVWrqo,767
|
|
138
|
-
toil/test/cwl/s3_secondary_file.cwl,sha256=aHxO8EwWDxJb4CzuAt3VJfbQaHPQARLs7XVJ5DtMITs,378
|
|
139
|
-
toil/test/cwl/seqtk_seq.cwl,sha256=j8jkN9IkfKe1LGb2J_UT9-mpIWWLOc4ROEnyezxhzWw,404
|
|
140
|
-
toil/test/cwl/sorttool.cwl,sha256=c1fhFZ_ekTMuEAM0nikUPd2j-etPQL8MqyuSJLNadtc,1060
|
|
141
|
-
toil/test/cwl/stream.cwl,sha256=jtyYdmSyCeI6uoOeX5Nb_LMIXhR5Sqmu8dGSr_Y2Z8g,732
|
|
142
|
-
toil/test/cwl/test_filename_conflict_detection.cwl,sha256=wVrc9EXmO74tgaEe4oE-EMpmQiHIuUFbLh0-qVisVZo,699
|
|
143
|
-
toil/test/cwl/test_filename_conflict_detection_at_root.cwl,sha256=G3clUTFeeGZt5xPi2SNs05W7I-RT0OEN2C8xKHzQ300,695
|
|
144
|
-
toil/test/cwl/test_filename_conflict_resolution.cwl,sha256=sIoXi61RzCkzD1MTCoglRYAXo8xaE1JiC6irvSANK0I,717
|
|
145
|
-
toil/test/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
-
toil/test/docs/scriptsTest.py,sha256=2LR5dCLFzqXBU88TGpgjMZ9t0GlZCzGz1svbtkvzLtI,6132
|
|
147
|
-
toil/test/jobStores/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
148
|
-
toil/test/jobStores/jobStoreTest.py,sha256=oxiKL6HwXilZIBV4JQ0QGO7ZTsjx8EYFHJfTZ8P6NwA,67029
|
|
149
|
-
toil/test/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
150
|
-
toil/test/lib/dockerTest.py,sha256=QHjo7Dqp-rNXADptmAZXYPAbR-rqwQpW-tV-NvKtU5g,17099
|
|
151
|
-
toil/test/lib/test_conversions.py,sha256=uXd9_sqqUAeXRcqfTEnQKyKofIMBJAPjWf43VK4vyVw,7317
|
|
152
|
-
toil/test/lib/test_ec2.py,sha256=MHGijHtOuLPOfYqhI8_vRVQCHMo4INi8DYImmpVULLY,4566
|
|
153
|
-
toil/test/lib/test_misc.py,sha256=OD4VBFgNOHt6krjyjxvvS9TqPmKorMz6MsGDlG4nAY8,2759
|
|
154
|
-
toil/test/lib/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
-
toil/test/lib/aws/test_iam.py,sha256=Oh7v6YGcuqdrR8b62fg93EhDBVCEGHyhigYnpp_LQWQ,5267
|
|
156
|
-
toil/test/lib/aws/test_s3.py,sha256=SsOPIK96fN9I3xYePjlIZbP6xXudMAvZJ1xqkpqDWpU,2952
|
|
157
|
-
toil/test/lib/aws/test_utils.py,sha256=X4lW9IrtTskclTNS_fJjasKEJEUiy3qm33Y7TU-H4Jg,2308
|
|
158
|
-
toil/test/mesos/MesosDataStructuresTest.py,sha256=EJ0kFy5rRHvNOJ_1bn-4nqldXNtlZCQA6niY28nyG_c,3124
|
|
159
|
-
toil/test/mesos/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
160
|
-
toil/test/mesos/helloWorld.py,sha256=Xj6ERV9lygc-lZKx-k-uCgRah0xbAIZsWJ5vO7P4Vns,2183
|
|
161
|
-
toil/test/mesos/stress.py,sha256=tMxOPgVmPmXNfgiZQ8WfZfEIxfXTqs8j0GKCm4X-MB0,2123
|
|
162
|
-
toil/test/provisioners/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
163
|
-
toil/test/provisioners/clusterScalerTest.py,sha256=UX-sGLSVqY8eMaku6LHVBPLR9YqY6n44bRdlKHF9ijQ,44188
|
|
164
|
-
toil/test/provisioners/clusterTest.py,sha256=ecVFcGLWu3yBc50-vLJV5udoRA2V0H-Y9b59wVqY__Y,5754
|
|
165
|
-
toil/test/provisioners/gceProvisionerTest.py,sha256=g_ycOwjTuz2n9QZRWYa0XOQk-B3owdj1zUac7mk1NM0,13226
|
|
166
|
-
toil/test/provisioners/provisionerTest.py,sha256=M6JXn57yYsMuU33QkZ92Q9wMS-OZB4KygyMum9zvyqk,2040
|
|
167
|
-
toil/test/provisioners/restartScript.py,sha256=oCwBKSWE0yHhLHJ1k3OxY9YLxuBxF2hxM0v9aCKjtGI,397
|
|
168
|
-
toil/test/provisioners/aws/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
169
|
-
toil/test/provisioners/aws/awsProvisionerTest.py,sha256=-wewAxR7j5Ht0Mv3bVQr1FbQ0B3QjSWX4hN4Jty3xdM,20743
|
|
170
|
-
toil/test/server/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
171
|
-
toil/test/server/serverTest.py,sha256=HPtuEQhkMxnPSz0KPTvKvSQy5cL8HzsyvklFi6NOGws,27213
|
|
172
|
-
toil/test/sort/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
173
|
-
toil/test/sort/restart_sort.py,sha256=rLwzMPh_3klblwtp4gmF6E3z7go--noWnh_6mWhsk_k,11098
|
|
174
|
-
toil/test/sort/sort.py,sha256=a6Powwpr08AdbCD2qYrlt0i6nK-QTFWkn7dYp0gVhNM,10929
|
|
175
|
-
toil/test/sort/sortTest.py,sha256=j1akegXMlpygbiKup5ZlQe6fQ93XDdD0gfF6Aa_ubC8,12625
|
|
176
|
-
toil/test/src/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
177
|
-
toil/test/src/autoDeploymentTest.py,sha256=O0-V9Wjt71ZZjY3GlmcAIJ9CiU_-qB_VXU34s8q0N78,23989
|
|
178
|
-
toil/test/src/busTest.py,sha256=TDIDL32uaES2CHNToON6jGl1kXiRn2sB282Ksi8XyZc,5410
|
|
179
|
-
toil/test/src/checkpointTest.py,sha256=HUezRrZA0F9HHAqau0ys8Q48GkNQ_KAKS3Df03keYMY,4456
|
|
180
|
-
toil/test/src/deferredFunctionTest.py,sha256=f_BpWHhVPwhrKThlyLdlgU1r0C8SrDZb4IpbhXbQBiI,13327
|
|
181
|
-
toil/test/src/dockerCheckTest.py,sha256=vw-Rgid51Wyw_3g9bwNYnE0hoZzldKZRBYVr_vZ1MGU,4334
|
|
182
|
-
toil/test/src/fileStoreTest.py,sha256=F7DT9n-gCbIgeMLcdCj51WQ_HbpN7_S2zsciYFDTzJ0,67206
|
|
183
|
-
toil/test/src/helloWorldTest.py,sha256=_boqrkQi9sAo8Yujac_l7Z65eTUhlEyq8VpyiHFwdqc,1721
|
|
184
|
-
toil/test/src/importExportFileTest.py,sha256=T6jx7lNFQmYJtL46cYUaXBfdUqnJtk9C56_gG8ACINg,7087
|
|
185
|
-
toil/test/src/jobDescriptionTest.py,sha256=asFMVo8qkiyTB1pPitNQNj0A-d2ePpgQlMlggblMgdg,3741
|
|
186
|
-
toil/test/src/jobEncapsulationTest.py,sha256=yb6dZiKiodEQDua7nL4SKHKWVMCoGpIxbquabuxlexM,2461
|
|
187
|
-
toil/test/src/jobFileStoreTest.py,sha256=E7YCrxdZhv2Jxy1rCT8RXL0sKqY-QIgRBYNqgiyRtKs,8740
|
|
188
|
-
toil/test/src/jobServiceTest.py,sha256=cn3A9tL6s1RVmp2knaCmUtbuZaqZJP_0qzmZ1doa1vk,15279
|
|
189
|
-
toil/test/src/jobTest.py,sha256=7uBBOr8Ie5hstv1MF5WaPPA51SxdAIiDxcyIPjss_YQ,27586
|
|
190
|
-
toil/test/src/miscTests.py,sha256=gPAHOLU1Rdj2fYIl2NjVYn_dB3ZLu0bu0LXk9Xo9ZjU,7818
|
|
191
|
-
toil/test/src/promisedRequirementTest.py,sha256=PL80rCAl8QLcZFiKE6c2LC8XYb3qgNVisJ1K3r0eNuY,8991
|
|
192
|
-
toil/test/src/promisesTest.py,sha256=UY-9crkMTirWerbp8OtzbIAZPOpB5_3JoXHrYucfFhw,2317
|
|
193
|
-
toil/test/src/realtimeLoggerTest.py,sha256=dK1B9nj07z2ifKQrl6bSz3X-3DnGkFwS_XeOIQ4nRYE,2153
|
|
194
|
-
toil/test/src/regularLogTest.py,sha256=BohWsMQnPgH51DvYkGHx6PuBWmCojn2fRFACtMuSvZs,4372
|
|
195
|
-
toil/test/src/resourceTest.py,sha256=75d34-MQiwoc50hyXxWAFuRJG9rq1S2rsUtVMkPv5uw,11133
|
|
196
|
-
toil/test/src/restartDAGTest.py,sha256=am0oYXhtZo1n2CUn96eHMXv4Y1rHxZDzJECOFX21ACw,6070
|
|
197
|
-
toil/test/src/resumabilityTest.py,sha256=V_hQrj9947-fenNEuzRU8XC3dV-FRAny9kgVcn_SaC0,2983
|
|
198
|
-
toil/test/src/retainTempDirTest.py,sha256=34MMmX1VowrwHkyiAMMpT337gCmz7tc4IiUFafEWBsU,4479
|
|
199
|
-
toil/test/src/systemTest.py,sha256=ceNX2DNzxwHK9A8ZRXRFsbAsdEAi7LJxUuRRNVBKneQ,2199
|
|
200
|
-
toil/test/src/threadingTest.py,sha256=dMyDDJCXJ_d7fIxW8_gZ5x4wr57hmH0OTPwG1F65VTc,4942
|
|
201
|
-
toil/test/src/toilContextManagerTest.py,sha256=J4mUl8bDGPdAcai4LMbfTvSBKZN9xbhbE-lggZzLwyo,3093
|
|
202
|
-
toil/test/src/userDefinedJobArgTypeTest.py,sha256=xqjMS_3K-mRZfYpx-gU3yrWqsBEZ0nI_bS-6-zuA-xI,2848
|
|
203
|
-
toil/test/src/workerTest.py,sha256=LDHYZ-Vsw1iW-HDC57h0FDdZy2KBD9ooBazxsGSITJc,4609
|
|
204
|
-
toil/test/utils/__init__.py,sha256=9h1rcqYjjnn97DpDEJf8tlNOIDx0XiXyQwh0F_81y0k,612
|
|
205
|
-
toil/test/utils/toilDebugTest.py,sha256=aaIsm_0Yc5iuPzr3FmPPBNmgCJYQug-WoO99hgN3frc,4384
|
|
206
|
-
toil/test/utils/toilKillTest.py,sha256=NslCd6MMJmefSocjMp3n1qLbhF9FGbTGpENH7rDDdSw,3515
|
|
207
|
-
toil/test/utils/utilsTest.py,sha256=TADhrwWJKo6voWNTfi4zMMYtelhmiNcpbhTb5rYls3c,15682
|
|
208
|
-
toil/test/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
-
toil/test/wdl/builtinTest.py,sha256=DRqmqN_LEp0MrXhNL83mMNQqxz6JQXk4CRULO3yozgc,22292
|
|
210
|
-
toil/test/wdl/conftest.py,sha256=gBzgdKgCHtoOI6xBE10DG12ElHxxyIs9Qw5M-Hk8nHg,846
|
|
211
|
-
toil/test/wdl/toilwdlTest.py,sha256=FepntBoSPhty98X6Wj0yqWw3D8A9UbQ04dy_KT2qea0,23855
|
|
212
|
-
toil/test/wdl/wdltoil_test.py,sha256=tEIQ-NCtmASmc8Kc9SM5TP9ashwHnfXVJ6hXdr_c_YE,10125
|
|
213
|
-
toil/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
-
toil/utils/toilClean.py,sha256=qcsQShg1bkV2PAriAOov6YMYKAzQlSaxsn12c3i_V-U,1831
|
|
215
|
-
toil/utils/toilDebugFile.py,sha256=w_tBuxmJh2pXDstVkzagaG1297VqLbMG6BKO6NiFVb4,5468
|
|
216
|
-
toil/utils/toilDebugJob.py,sha256=235B_4yp5n7GmlPwnzYmv3NhrEkz3Zf6MnZ9e2v7Fak,2173
|
|
217
|
-
toil/utils/toilDestroyCluster.py,sha256=O8tjsOhJ3Qe_l3h5Fxux57Wbg4Rk_PgZgS27d8l-FEc,1401
|
|
218
|
-
toil/utils/toilKill.py,sha256=LaL6N0IWy1sph10GpcbuU83XAFvbQrOl-7CBY45O8bg,2698
|
|
219
|
-
toil/utils/toilLaunchCluster.py,sha256=oDaICz3lLY1cPYQs0ZAAMsmnNYl3ylwNBcibZeSbAnk,12182
|
|
220
|
-
toil/utils/toilMain.py,sha256=Ze18gCyHA9F9Ylw60jvZ1y9CMpR4sWE8sqV34BGrD2U,2394
|
|
221
|
-
toil/utils/toilRsyncCluster.py,sha256=jOqA3wiBXIo8M6NW6OgmvoGQC7fd6wiASKMq9U9vtBM,2032
|
|
222
|
-
toil/utils/toilServer.py,sha256=4XbyOHQHgMWWrCWj9Uz1M-jLQheV2Ju-DQ_fNdnBg1o,1178
|
|
223
|
-
toil/utils/toilSshCluster.py,sha256=goZp13TevZQvFdB_XJgh7sPrczQy04rqJxmObv7xi_c,2653
|
|
224
|
-
toil/utils/toilStats.py,sha256=wmJYS30_4wPptAcGkU9RtMp1y-BEwhvYBRhYSvXAL7A,23311
|
|
225
|
-
toil/utils/toilStatus.py,sha256=WpD92QBfmswuAL91ZPhFsttXM7THMwlGqkBYgLaR1dA,16440
|
|
226
|
-
toil/utils/toilUpdateEC2Instances.py,sha256=e1EE60o8lu0Gqd8n1H-rTC94fraDsZnqPy4HdStnK6o,1273
|
|
227
|
-
toil/wdl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
toil/wdl/toilwdl.py,sha256=cY8pDOyNGXyRijODtkBVoGza64rObsHe0NwP_PX1R5I,6213
|
|
229
|
-
toil/wdl/utils.py,sha256=MnL1swc_hzvGMvmms3JVcOrc8RC3iR16G3nQRYdkiC0,5724
|
|
230
|
-
toil/wdl/wdl_analysis.py,sha256=1AbocRKOfPeUctpK5a5Z1IB5SuYtqIiPWcWd9tQc5ZI,3762
|
|
231
|
-
toil/wdl/wdl_functions.py,sha256=dyWjQ0GWhhf--dn6v73fkbxtWD4jT61F0Sdh-A-u3Bo,35267
|
|
232
|
-
toil/wdl/wdl_synthesis.py,sha256=govgKcgN67IPA6L_13cmP4e5nqtlRHyvLaHNgJiy1uc,45505
|
|
233
|
-
toil/wdl/wdl_types.py,sha256=4_Bg2svtadgjsureLIqZ-JGWLSrbJateC6RsQF-k4lU,6503
|
|
234
|
-
toil/wdl/wdltoil.py,sha256=Ysy4uqkn9XnsqkMsLsqKtdYLjjzKDnVmuB-I35jVVqE,103685
|
|
235
|
-
toil/wdl/versions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
|
-
toil/wdl/versions/dev.py,sha256=WMXT2XAf-Sz474aBkClDUNsqUr2TLrdPWgzeC_IIRKM,4098
|
|
237
|
-
toil/wdl/versions/draft2.py,sha256=f0ap6pryCxYqxbAXUeXPxuj7bAlpVq3vCqAIPzA6M0Y,39731
|
|
238
|
-
toil/wdl/versions/v1.py,sha256=E7bPjUzx9GP0L0TxuwnMoNFYgdmHjjQ_8r_7Qld_d8k,27957
|
|
239
|
-
toil-5.12.0.dist-info/LICENSE,sha256=FPaTNB9xyeCT60XXXq2Bn4FGN9392OxN5jixnV_XXyo,11516
|
|
240
|
-
toil-5.12.0.dist-info/METADATA,sha256=l21YMlmchIOzEd7J0S9wx0B5_YwxibROAFEQ0tKjKnc,5804
|
|
241
|
-
toil-5.12.0.dist-info/WHEEL,sha256=AtBG6SXL3KF_v0NxLf0ehyVOh0cold-JbJYXNGorC6Q,92
|
|
242
|
-
toil-5.12.0.dist-info/entry_points.txt,sha256=ZkzM01dCbRcmHoZ33VOz35BqAtlSq5sN8FdnVEW5ec8,486
|
|
243
|
-
toil-5.12.0.dist-info/top_level.txt,sha256=1ydj7IXvHS9tMT5OVTSSpub6ZOaQeIn3KGCgJqaikF0,5
|
|
244
|
-
toil-5.12.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|