Skip to content

Commit

Permalink
changed split directory path
Browse files Browse the repository at this point in the history
  • Loading branch information
farchaab committed Apr 26, 2024
1 parent 357e786 commit c06ebd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mess/workflow/rules/processing/fastas.smk
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ if FASTA and not ASM_SUMMARY:
checkpoint split_contigs:
input:
fa=list_fastas,
cov=os.path.join(dir.out.processing, "cov.tsv"),
cov=os.path.join(dir.out.base, "cov.tsv"),
output:
tsv=os.path.join(dir.out.processing, "split.tsv"),
dir=temp(directory(os.path.join(dir.out.base, "split"))),
dir=directory(os.path.join(dir.out.processing, "split")),
resources:
mem_mb=config.resources.sml.mem,
mem=str(config.resources.sml.mem) + "MB",
Expand Down

0 comments on commit c06ebd7

Please sign in to comment.