Skip to content

Commit

Permalink
add docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin committed Aug 27, 2024
1 parent 93056cd commit c13ce34
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@


class SampleFileConcatenationFormatter(SampleFileFormatter):
"""
Format the sample files to deliver, concatenate fastq files and return the formatted files.
Used for workflows: Microsalt and Mutant.
"""

def __init__(self, concatenation_service: FastqConcatenationService):
self.concatenation_service = concatenation_service

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@


class SampleFileFormatter:
"""
Format the sample files to deliver.
Used for all workflows except Microsalt and Mutant.
"""

def format_files(
self, moved_files: list[SampleFile], ticket_dir_path: Path
Expand Down

0 comments on commit c13ce34

Please sign in to comment.