Skip to content

Commit

Permalink
fix: drep input into bbmap rna to mags rule
Browse files Browse the repository at this point in the history
  • Loading branch information
rroutsong committed Jul 30, 2024
1 parent 5e54c2d commit 61481f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def get_paired_dna(config, rna_sid):
top_refine_dir = join(config["project"]["workpath"], config['project']['id'], "metawrap_bin_refine")
top_mags_dir = join(config["project"]["workpath"], config['project']['id'], "mags")
# construct necessary linked dna artifacts
derep_reqs = join(top_refine_dir, dna_sid, "dRep", "dereplicated_genomes")
mag_index = join(top_mags_dir, dna_sid, "index")
derep_reqs = join(top_refine_dir, "dRep", "dereplicated_genomes")
mag_index = join(top_mags_dir, "index")
return [derep_reqs, mag_index]


Expand Down

0 comments on commit 61481f3

Please sign in to comment.