Skip to content

Commit

Permalink
Merge pull request #1416 from mskcc/hotfix/v2_nucleo_agg
Browse files Browse the repository at this point in the history
Hotfix/v2 nucleo agg
  • Loading branch information
sivkovic authored Feb 11, 2025
2 parents 608a1eb + 52ecbee commit a69883e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion beagle/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.91.5"
__version__ = "1.91.6"
1 change: 1 addition & 0 deletions runner/operator/access/v2_1_0/qc/access_nucleo_qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def get_jobs(self):
"name": "Access V2 Nucleo QC: %s, %i of %i" % (self.request_id, i + 1, len(sample_inputs)),
"app": self.get_pipeline_id(),
"inputs": job,
"output_metadata": output_metadata,
"tags": {settings.REQUEST_ID_METADATA_KEY: self.request_id, "cmoSampleId": job["sample_name"]},
}
)
Expand Down
6 changes: 5 additions & 1 deletion runner/operator/access/v2_1_0/qc/input_template.json.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,9 @@
"fragment_count": 1,
"filter_duplicate": 0,
"omaf": true,
"generic_counting": true
"generic_counting": true,
"athena_thresholds": [250,500,1000,1500,2000],
"athena_threshold": 500,
"athena_summary": true,
"athena_cores": 4
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_qc_outputs(self):
input = self.construct_sample_input(most_recent_runs_for_request)
sample_list = []
for single_run in most_recent_runs_for_request:
sample_list.append(single_run.tags["cmoSampleId"][0])
sample_list.append(single_run.output_metadata[settings.CMO_SAMPLE_NAME_METADATA_KEY])
return input, sample_list

def process_listing(self, listing, name):
Expand Down

0 comments on commit a69883e

Please sign in to comment.