Skip to content

Commit ede77b4

Browse files
authored
fix add_default_workflow (#3446)
* fix add_default_workflow * fix get_merging_scheme_from_job * gp_params is not None * str(y.id)
1 parent d0647cc commit ede77b4

File tree

3 files changed

+52
-5
lines changed

3 files changed

+52
-5
lines changed

qiita_db/archive.py

+17-2
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ def get_merging_scheme_from_job(cls, job):
116116
acmd = job.command
117117
parent = job.input_artifacts[0]
118118
parent_pparameters = parent.processing_parameters
119+
phms = None
119120
if parent_pparameters is None:
120121
parent_cmd_name = None
121122
parent_parameters = None
@@ -125,12 +126,26 @@ def get_merging_scheme_from_job(cls, job):
125126
parent_cmd_name = pcmd.name
126127
parent_parameters = parent_pparameters.values
127128
parent_merging_scheme = pcmd.merging_scheme
128-
129-
return qdb.util.human_merging_scheme(
129+
if not parent_merging_scheme['ignore_parent_command']:
130+
gp = parent.parents[0]
131+
gp_params = gp.processing_parameters
132+
if gp_params is not None:
133+
gp_cmd = gp_params.command
134+
phms = qdb.util.human_merging_scheme(
135+
parent_cmd_name, parent_merging_scheme,
136+
gp_cmd.name, gp_cmd.merging_scheme,
137+
parent_parameters, [], gp_params.values)
138+
139+
hms = qdb.util.human_merging_scheme(
130140
acmd.name, acmd.merging_scheme,
131141
parent_cmd_name, parent_merging_scheme,
132142
job.parameters.values, [], parent_parameters)
133143

144+
if phms is not None:
145+
hms = qdb.util.merge_overlapping_strings(hms, phms)
146+
147+
return hms
148+
134149
@classmethod
135150
def retrieve_feature_values(cls, archive_merging_scheme=None,
136151
features=None):

qiita_db/metadata_template/prep_template.py

+13-3
Original file line numberDiff line numberDiff line change
@@ -808,14 +808,24 @@ def _get_node_info(workflow, node):
808808

809809
parent_cmd_name = None
810810
parent_merging_scheme = None
811+
phms = None
811812
if pcmd is not None:
812813
parent_cmd_name = pcmd.name
813814
parent_merging_scheme = pcmd.merging_scheme
815+
if not parent_merging_scheme['ignore_parent_command']:
816+
phms = _get_node_info(workflow, parent)
814817

815-
return qdb.util.human_merging_scheme(
818+
hms = qdb.util.human_merging_scheme(
816819
ccmd.name, ccmd.merging_scheme, parent_cmd_name,
817820
parent_merging_scheme, cparams, [], pparams)
818821

822+
# if the parent should not ignore its parent command, then we need
823+
# to merge the previous result with the new one
824+
if phms is not None:
825+
hms = qdb.util.merge_overlapping_strings(hms, phms)
826+
827+
return hms
828+
819829
def _get_predecessors(workflow, node):
820830
# recursive method to get predecessors of a given node
821831
pred = []
@@ -871,7 +881,7 @@ def _get_predecessors(workflow, node):
871881
'artifact transformation']
872882
merging_schemes = {
873883
qdb.archive.Archive.get_merging_scheme_from_job(j): {
874-
x: y.id for x, y in j.outputs.items()}
884+
x: str(y.id) for x, y in j.outputs.items()}
875885
# we are going to select only the jobs that were a 'success', that
876886
# are not 'hidden' and that have an output - jobs that are not
877887
# hidden and a successs but that do not have outputs are jobs which
@@ -989,7 +999,7 @@ def _get_predecessors(workflow, node):
989999
init_artifacts = {
9901000
wkartifact_type: f'{starting_job.id}:'}
9911001
else:
992-
init_artifacts = {wkartifact_type: self.artifact.id}
1002+
init_artifacts = {wkartifact_type: str(self.artifact.id)}
9931003

9941004
cmds_to_create.reverse()
9951005
current_job = None

qiita_db/util.py

+22
Original file line numberDiff line numberDiff line change
@@ -2955,3 +2955,25 @@ def merge_rows(rows):
29552955
row['node_model']]
29562956
qdb.sql_connection.TRN.add(sql, sql_args=to_insert)
29572957
qdb.sql_connection.TRN.execute()
2958+
2959+
2960+
def merge_overlapping_strings(str1, str2):
2961+
"""Helper function to merge 2 overlapping strings
2962+
2963+
Parameters
2964+
----------
2965+
str1: str
2966+
Initial string
2967+
str2: str
2968+
End string
2969+
2970+
Returns
2971+
----------
2972+
str
2973+
The merged strings
2974+
"""
2975+
overlap = ""
2976+
for i in range(1, min(len(str1), len(str2)) + 1):
2977+
if str1.endswith(str2[:i]):
2978+
overlap = str2[:i]
2979+
return str1 + str2[len(overlap):]

0 commit comments

Comments
 (0)