Skip to content

Commit

Permalink
only download the brick/* outs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomlue committed Feb 25, 2024
1 parent 77ecc53 commit 214b592
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion biobricks/brick.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@ def install(self):
stages = [stage for stage in dvc_lock.get('stages', []).values()]
outs = [out for stage in stages for out in stage.get('outs', [])]

for out in outs:
brick_outs = [out for out in outs if out.get('path').startswith('brick')]
for out in brick_outs:
md5 = out.get('md5')
relpath = out.get('path')
dest_path = self.path() / relpath
Expand Down

0 comments on commit 214b592

Please sign in to comment.