Skip to content

Commit

Permalink
Copy out both AIP seqr files (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
MattWellie authored Mar 15, 2024
1 parent bdbf8f8 commit 57a8c4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpg_workflows/stages/aip.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,10 +540,11 @@ def queue_jobs(self, dataset: Dataset, inputs: StageInput) -> StageOutput:
lookup_in_batch = get_batch().read_input(seqr_lookup)
job.command(
f'python3 reanalysis/minimise_output_for_seqr.py '
f'{input_localised} {job.out_json} --external_map {lookup_in_batch}'
f'{input_localised} {job.out_json} {job.pheno_json} --external_map {lookup_in_batch}'
)

# write the results out
expected_out = self.expected_outputs(dataset)
get_batch().write_output(job.out_json, str(expected_out['seqr_file']))
get_batch().write_output(job.pheno_json, str(expected_out['seqr_pheno_file']))
return self.make_outputs(dataset, data=expected_out, jobs=job)

0 comments on commit 57a8c4f

Please sign in to comment.