Skip to content

Commit

Permalink
print link directory to terminal after using looper link
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Nov 16, 2023
1 parent e41927c commit 422d62b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,8 @@ def __call__(self, args):
if project_level:
psms = self.prj.get_pipestat_managers(project_level=True)
for name, psm in psms.items():
psm.link(link_dir=link_dir)
linked_results_path = psm.link(link_dir=link_dir)
print(f"Linked directory: {linked_results_path}")
else:
for piface_source_samples in self.prj._samples_by_piface(
self.prj.piface_key
Expand All @@ -593,7 +594,8 @@ def __call__(self, args):
sample_name=first_sample_name, project_level=False
)
for name, psm in psms.items():
psm.link(link_dir=link_dir)
linked_results_path = psm.link(link_dir=link_dir)
print(f"Linked directory: {linked_results_path}")


class Tabulator(Executor):
Expand Down

0 comments on commit 422d62b

Please sign in to comment.