Skip to content

Commit

Permalink
feat: add logs to refgenie rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin-s-h committed Mar 28, 2023
1 parent ee3bad5 commit fce4bb0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions bio/refgenie/test/Snakefile
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
rule obtain_asset:
output:
# the name refers to the refgenie seek key (see attributes on http://refgenomes.databio.org)
fai="refs/genome.fasta"
fai="refs/genome.fasta",
# Multiple outputs/seek keys are possible here.
params:
genome="human_alu",
asset="fasta",
tag="default"
tag="default",
log:
"logs/refgenie/obtain_large_asset.log",
wrapper:
"master/bio/refgenie"

rule obtain_large_asset:
output:
star_index=directory("refs/star_index/hg38/star_index")
star_index=directory("refs/star_index/hg38/star_index"),
params:
genome="hg38",
asset="star_index",
tag="default"
tag="default",
log:
"logs/refgenie/obtain_large_asset.log",
wrapper:
"master/bio/refgenie"

0 comments on commit fce4bb0

Please sign in to comment.