Skip to content

Commit

Permalink
Included files-folder arg for read-lab-metadata.linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shettland committed Oct 25, 2024
1 parent bea714c commit f6e6f3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions relecov_tools/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,12 @@ def download(
type=click.Path(),
help="Path to folder where samples files are located"
)
def read_lab_metadata(metadata_file, sample_list_file, metadata_out):
def read_lab_metadata(metadata_file, sample_list_file, metadata_out, files_folder):
"""
Create the json compliant to the relecov schema from the Metadata file.
"""
new_metadata = relecov_tools.read_lab_metadata.RelecovMetadata(
metadata_file, sample_list_file, metadata_out
metadata_file, sample_list_file, metadata_out, files_folder
)
relecov_json = new_metadata.create_metadata_json()
return relecov_json
Expand Down

0 comments on commit f6e6f3b

Please sign in to comment.