Skip to content

Commit

Permalink
feat: clean up reads
Browse files Browse the repository at this point in the history
  • Loading branch information
jlanga committed Apr 17, 2024
1 parent 9acfcc0 commit 4fe9e6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/rules/reads/__main__.smk
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ rule reads__link__:
"__environment__.yml"
shell:
"""
ln --symbolic $(readlink --canonicalize {input.forward_}) {output.forward_}
ln --symbolic $(readlink --canonicalize {input.reverse_}) {output.reverse_}
ln --symbolic $(readlink --canonicalize {input.forward_}) {output.forward_} 2> {log}
ln --symbolic $(readlink --canonicalize {input.reverse_}) {output.reverse_} 2>> {log}
"""


Expand Down

0 comments on commit 4fe9e6d

Please sign in to comment.