Skip to content

Commit

Permalink
Fix bugs in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobnissen committed Sep 12, 2023
1 parent fc07d4c commit ee04ad6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 59 deletions.
58 changes: 0 additions & 58 deletions src/cmd_benchmark.py

This file was deleted.

6 changes: 5 additions & 1 deletion workflow_avamb/src/write_abundances.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ def write_abundances(
mask = loadnpz["mask"]
refhash = refhash.reshape(1)[0]
(abundance, _) = vamb.parsebam.Abundance.run_pycoverm(
paths=[bampath], minid=min_identity, target_refhash=refhash, mask=mask
paths=[bampath],
minid=min_identity,
target_refhash=refhash,
target_identifiers=None,
mask=mask,
)
vamb.vambtools.write_npz(outfile, abundance.ravel())

Expand Down

0 comments on commit ee04ad6

Please sign in to comment.