Skip to content

Commit

Permalink
fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Dec 18, 2024
1 parent dc6c7ad commit 7e3893a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cg/meta/upload/fohm/fohm.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def link_sample_raw_data_files(
delivery_destination=DeliveryDestination.FOHM,
delivery_structure=DeliveryStructure.FLAT,
)
delivery_service.deliver_files_for_fohm_upload(
delivery_service.deliver_files_for_sample_no_rsync(
case=case, sample_id=sample.internal_id, delivery_base_path=self.daily_rawdata_path
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,11 @@ def deliver_files_for_sample(
)
self._add_trailblazer_tracking(case=case, job_id=job_id, dry_run=dry_run)

def deliver_files_for_fohm_upload(self, case: Case, sample_id: str, delivery_base_path: Path):
def deliver_files_for_sample_no_rsync(
self, case: Case, sample_id: str, delivery_base_path: Path
):
"""
Deliver the files for a sample to the FOHM upload destination. Does not perform rsync.
Deliver the files for a sample to the delivery base path. Does not perform rsync.
args:
case: The case to deliver files for
sample_id: The sample to deliver files for
Expand Down

0 comments on commit 7e3893a

Please sign in to comment.