forked from snakemake/snakemake-wrappers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee3bad5
commit fce4bb0
Showing
1 changed file
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |