Skip to content

Commit

Permalink
Temp files
Browse files Browse the repository at this point in the history
  • Loading branch information
jmtsuji committed Apr 7, 2022
1 parent 2b51f1f commit e636236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules/toyako.smk
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ rule prepare_medaka_polish_input:
input:
"assembly/assembly.fasta"
output:
"polish/medaka_input/input.fasta"
temp("polish/medaka_input/input.fasta")
run:
source_relpath = os.path.relpath(str(input),os.path.dirname(str(output)))
os.symlink(source_relpath,str(output))
Expand Down Expand Up @@ -820,7 +820,7 @@ rule prepare_medaka_circularize_input:
input:
"circularize/circlator/rotated.fasta"
output:
"circularize/medaka_input/input.fasta"
temp("circularize/medaka_input/input.fasta")
run:
source_relpath = os.path.relpath(str(input),os.path.dirname(str(output)))
os.symlink(source_relpath,str(output))
Expand Down

0 comments on commit e636236

Please sign in to comment.