Skip to content

Commit cd7f0b8

Browse files
ShiveshMjllanfranchi
ShiveshM
authored andcommitted
Make compare script works with MapSets and return the path in the fileio mkdir function (#342)
* Add hash property to Pipeline and implement a temporary fix to issue #329 * Make compare script works with MapSets and return the path in the fileio mkdir function * Repond to PR comments, add ability to input Map, Pipeline and DistributionMaker objects as input to the compare function
1 parent 91c7a3a commit cd7f0b8

File tree

1 file changed

+71
-37
lines changed

1 file changed

+71
-37
lines changed

pisa/scripts/compare.py

+71-37
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
DISTRIBUTIONMAKER_SOURCE_STR = (
3737
'DistributionMaker instantiated from multiple pipeline config files'
3838
)
39-
PIPELINE_SOURCE_STR = 'Pipeline instantiated from a pipelinen config file'
39+
PIPELINE_SOURCE_STR = 'Pipeline instantiated from a pipeline config file'
4040
MAP_SOURCE_STR = 'Map stored on disk'
4141
MAPSET_SOURCE_STR = 'MapSet stored on disk'
4242

@@ -195,26 +195,43 @@ def compare(outdir, ref, ref_label, test, test_label, asymm_max=None,
195195
# Get the reference distribution(s) into the form of a test MapSet
196196
p_ref = None
197197
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
208214
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()
213225
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()
218235

219236
if p_ref is None:
220237
try:
@@ -247,26 +264,43 @@ def compare(outdir, ref, ref_label, test, test_label, asymm_max=None,
247264
# Get the test distribution(s) into the form of a test MapSet
248265
p_test = None
249266
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
260283
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()
265294
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()
270304

271305
if p_test is None:
272306
try:

0 commit comments

Comments
 (0)