Skip to content

Commit

Permalink
some chenges
Browse files Browse the repository at this point in the history
  • Loading branch information
bio-informatician committed Aug 1, 2023
1 parent 269face commit 4417482
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"snakemake.snakemake-lang"
]
}
17 changes: 17 additions & 0 deletions workflow/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,20 @@
# Please follow the best practices:
# https://snakemake.readthedocs.io/en/stable/snakefiles/best_practices.html,
# in particular regarding the standardized folder structure mentioned there.

FASTA_PREFIXES = [
"GCA_0090
]

rule all:
input:
expand(
[ "results/annotate/{fasta_prefix}/{fasta_prefix}_proteins.faa",
"results/annotate/{fasta_prefix}/{fasta_prefix}_mmseq2.tsv",
"results/annotate/{fasta_prefix}/{fasta_prefix}_genes.tsv",
"results/annotate/{fasta_prefix}/{fasta_prefix}_taxonomy.tsv",
directory("results/annotate/{fasta_prefix}/mmseq2"),
],
fasta_prefix = FASTA_PREFIXES
)

0 comments on commit 4417482

Please sign in to comment.