Skip to content

Commit

Permalink
change to more telling names
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl-Svard committed Dec 9, 2024
1 parent 513b9f4 commit 49bb1d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cg_lims/EPPs/files/smrt_link/run_design.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def create_smrtlink_run_design(ctx, file: str):
try:
revio_run: RevioRun = RevioRun(process=process)
csv_string: str = revio_run.create_csv()
with open(f"{file}.csv", "w") as file:
with open(f"{file}_run_design.csv", "w") as file:
file.write(csv_string)
click.echo("The run design CSV was successfully generated.")
except LimsError as e:
Expand Down
2 changes: 1 addition & 1 deletion cg_lims/EPPs/files/smrt_link/sample_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def create_smrtlink_sample_setup(ctx, file: str):

try:
sample_setup_csv_rows: List[List[str]] = get_csv_sample_rows(process=process)
file_path: Path = Path(f"{file}.csv")
file_path: Path = Path(f"{file}_sample_setup.csv")
build_csv(rows=sample_setup_csv_rows, file=file_path, headers=SAMPLE_SETUP_CSV_HEADER)
click.echo("The sample setup CSV was successfully generated.")
except LimsError as e:
Expand Down

0 comments on commit 49bb1d5

Please sign in to comment.