Skip to content

Commit

Permalink
make tags more specific
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Dec 13, 2024
1 parent 11ef822 commit 6ad7cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cg/services/deliver_files/tag_fetcher/fohm_upload_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def fetch_tags(self, workflow: Workflow) -> DeliveryFileTags:
"""Fetch the tags for the bam files to deliver."""
self._validate_workflow(workflow=workflow)
return DeliveryFileTags(
case_tags=[{"fohm-delivery"}],
sample_tags=[{SequencingFileTag.FASTQ}],
case_tags=None,
sample_tags=[{SequencingFileTag.FASTQ, "consensus-sample", "vcf-report"}],
)

@staticmethod
Expand Down

0 comments on commit 6ad7cd8

Please sign in to comment.