Skip to content

Commit

Permalink
fix file not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
huzuner committed Nov 3, 2024
1 parent e2dbeca commit db38192
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions workflow/rules/assembly.smk
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,8 @@ rule order_contigs:
shadow:
"minimal"
shell:
"(mkdir -p {params.outdir}/{wildcards.sample} && cd {params.outdir}/{wildcards.sample} &&"
" ragtag.py scaffold -C -w ../../../../../{input.reference} ../../../../../{input.contigs} &&"
" cd ../../../../../ && mv {params.outdir}/{wildcards.sample}/ragtag_output/ragtag.scaffold.fasta {output})"
" > {log} 2>&1"
" ragtag.py scaffold -C -o {params.outdir}/{wildcards.sample} {input.reference} {input.contigs} &&"
" mv {params.outdir}/{wildcards.sample}/ragtag.scaffold.fasta {output} > {log} 2>&1"


rule filter_chr0:
Expand Down

0 comments on commit db38192

Please sign in to comment.