Skip to content

Commit

Permalink
update workflow process
Browse files Browse the repository at this point in the history
  • Loading branch information
mbthornton-lbl committed Nov 20, 2024
1 parent 9a38244 commit e4625a7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nmdc_automation/workflow_automation/workflow_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,9 @@ def get_current_workflow_process_nodes(

records = db[wf.collection].find(q)
for rec in records:
# if rec.get("type") == "nmdc:MetagenomeSequencing" or rec["name"].startswith("Metagenome Sequencing"):
# continue
# legacy JGI sequencing records
if rec.get("type") == "nmdc:MetagenomeSequencing" or rec["name"].startswith("Metagenome Sequencing"):
continue
if wf.version and not _within_range(rec["version"], wf.version):
continue
if _is_missing_required_input_output(wf, rec, data_objects_by_id):
Expand Down

0 comments on commit e4625a7

Please sign in to comment.