|
36 | 36 | DISTRIBUTIONMAKER_SOURCE_STR = (
|
37 | 37 | 'DistributionMaker instantiated from multiple pipeline config files'
|
38 | 38 | )
|
39 |
| -PIPELINE_SOURCE_STR = 'Pipeline instantiated from a pipelinen config file' |
| 39 | +PIPELINE_SOURCE_STR = 'Pipeline instantiated from a pipeline config file' |
40 | 40 | MAP_SOURCE_STR = 'Map stored on disk'
|
41 | 41 | MAPSET_SOURCE_STR = 'MapSet stored on disk'
|
42 | 42 |
|
@@ -195,26 +195,43 @@ def compare(outdir, ref, ref_label, test, test_label, asymm_max=None,
|
195 | 195 | # Get the reference distribution(s) into the form of a test MapSet
|
196 | 196 | p_ref = None
|
197 | 197 | ref_source = None
|
198 |
| - if len(ref) == 1: |
199 |
| - try: |
200 |
| - ref_pipeline = Pipeline(config=ref[0]) |
201 |
| - except: |
202 |
| - pass |
203 |
| - else: |
204 |
| - ref_source = PIPELINE_SOURCE_STR |
205 |
| - if ref_param_selections is not None: |
206 |
| - ref_pipeline.select_params(ref_param_selections) |
207 |
| - p_ref = ref_pipeline.get_outputs() |
| 198 | + if isinstance(ref, Map): |
| 199 | + p_ref = MapSet(ref) |
| 200 | + ref_source = MAP_SOURCE_STR |
| 201 | + elif isinstance(ref, MapSet): |
| 202 | + p_ref = ref |
| 203 | + ref_source = MAPSET_SOURCE_STR |
| 204 | + elif isinstance(ref, Pipeline): |
| 205 | + if ref_param_selections is not None: |
| 206 | + ref.select_params(ref_param_selections) |
| 207 | + p_ref = ref.get_outputs() |
| 208 | + ref_source = PIPELINE_SOURCE_STR |
| 209 | + elif isinstance(ref, DistributionMaker): |
| 210 | + if ref_param_selections is not None: |
| 211 | + ref.select_params(ref_param_selections) |
| 212 | + p_ref = ref.get_outputs() |
| 213 | + ref_source = DISTRIBUTIONMAKER_SOURCE_STR |
208 | 214 | else:
|
209 |
| - try: |
210 |
| - ref_dmaker = DistributionMaker(pipelines=ref) |
211 |
| - except: |
212 |
| - pass |
| 215 | + if len(ref) == 1: |
| 216 | + try: |
| 217 | + ref_pipeline = Pipeline(config=ref[0]) |
| 218 | + except: |
| 219 | + pass |
| 220 | + else: |
| 221 | + ref_source = PIPELINE_SOURCE_STR |
| 222 | + if ref_param_selections is not None: |
| 223 | + ref_pipeline.select_params(ref_param_selections) |
| 224 | + p_ref = ref_pipeline.get_outputs() |
213 | 225 | else:
|
214 |
| - ref_source = DISTRIBUTIONMAKER_SOURCE_STR |
215 |
| - if ref_param_selections is not None: |
216 |
| - ref_dmaker.select_params(ref_param_selections) |
217 |
| - p_ref = ref_dmaker.get_outputs() |
| 226 | + try: |
| 227 | + ref_dmaker = DistributionMaker(pipelines=ref) |
| 228 | + except: |
| 229 | + pass |
| 230 | + else: |
| 231 | + ref_source = DISTRIBUTIONMAKER_SOURCE_STR |
| 232 | + if ref_param_selections is not None: |
| 233 | + ref_dmaker.select_params(ref_param_selections) |
| 234 | + p_ref = ref_dmaker.get_outputs() |
218 | 235 |
|
219 | 236 | if p_ref is None:
|
220 | 237 | try:
|
@@ -247,26 +264,43 @@ def compare(outdir, ref, ref_label, test, test_label, asymm_max=None,
|
247 | 264 | # Get the test distribution(s) into the form of a test MapSet
|
248 | 265 | p_test = None
|
249 | 266 | test_source = None
|
250 |
| - if len(test) == 1: |
251 |
| - try: |
252 |
| - test_pipeline = Pipeline(config=test[0]) |
253 |
| - except: |
254 |
| - pass |
255 |
| - else: |
256 |
| - test_source = PIPELINE_SOURCE_STR |
257 |
| - if test_param_selections is not None: |
258 |
| - test_pipeline.select_params(test_param_selections) |
259 |
| - p_test = test_pipeline.get_outputs() |
| 267 | + if isinstance(test, Map): |
| 268 | + p_test = MapSet(test) |
| 269 | + test_source = MAP_SOURCE_STR |
| 270 | + elif isinstance(test, MapSet): |
| 271 | + p_test = test |
| 272 | + test_source = MAPSET_SOURCE_STR |
| 273 | + elif isinstance(test, Pipeline): |
| 274 | + if test_param_selections is not None: |
| 275 | + test.select_params(test_param_selections) |
| 276 | + p_test = test.get_outputs() |
| 277 | + test_source = PIPELINE_SOURCE_STR |
| 278 | + elif isinstance(test, DistributionMaker): |
| 279 | + if test_param_selections is not None: |
| 280 | + test.select_params(test_param_selections) |
| 281 | + p_test = test.get_outputs() |
| 282 | + test_source = DISTRIBUTIONMAKER_SOURCE_STR |
260 | 283 | else:
|
261 |
| - try: |
262 |
| - test_dmaker = DistributionMaker(pipelines=test) |
263 |
| - except: |
264 |
| - pass |
| 284 | + if len(test) == 1: |
| 285 | + try: |
| 286 | + test_pipeline = Pipeline(config=test[0]) |
| 287 | + except: |
| 288 | + pass |
| 289 | + else: |
| 290 | + test_source = PIPELINE_SOURCE_STR |
| 291 | + if test_param_selections is not None: |
| 292 | + test_pipeline.select_params(test_param_selections) |
| 293 | + p_test = test_pipeline.get_outputs() |
265 | 294 | else:
|
266 |
| - test_source = DISTRIBUTIONMAKER_SOURCE_STR |
267 |
| - if test_param_selections is not None: |
268 |
| - test_dmaker.select_params(test_param_selections) |
269 |
| - p_test = test_dmaker.get_outputs() |
| 295 | + try: |
| 296 | + test_dmaker = DistributionMaker(pipelines=test) |
| 297 | + except: |
| 298 | + pass |
| 299 | + else: |
| 300 | + test_source = DISTRIBUTIONMAKER_SOURCE_STR |
| 301 | + if test_param_selections is not None: |
| 302 | + test_dmaker.select_params(test_param_selections) |
| 303 | + p_test = test_dmaker.get_outputs() |
270 | 304 |
|
271 | 305 | if p_test is None:
|
272 | 306 | try:
|
|
0 commit comments