Skip to content

Commit

Permalink
perf: autobump bio/kallisto/index (#1708)
Browse files Browse the repository at this point in the history
Automatic update of bio/kallisto/index.

---------

Co-authored-by: snakedeploy-bot[bot] <115615832+snakedeploy-bot[bot]@users.noreply.github.com>
Co-authored-by: Filipe G. Vieira <1151762+fgvieira@users.noreply.github.com>
  • Loading branch information
snakedeploy-bot[bot] and fgvieira committed Aug 1, 2023
1 parent 6d95e56 commit a84c0ab
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bio/kallisto/index/environment.yaml
Expand Up @@ -3,4 +3,4 @@ channels:
- bioconda
- nodefaults
dependencies:
- kallisto =0.48.0
- kallisto =0.50.0
7 changes: 7 additions & 0 deletions bio/kallisto/index/meta.yaml
@@ -1,4 +1,11 @@
name: "kallisto index"
description: Index a transcriptome using kallisto.
url: https://github.com/pachterlab/kallisto
authors:
- Joël Simoneau
input:
- fasta: FASTA file to index
output:
- index: indexed file
params:
- extra: Additional parameters
2 changes: 1 addition & 1 deletion bio/kallisto/index/test/transcriptome.fasta
@@ -1,2 +1,2 @@
>Sheila
GCTAGCTCAGAAAAAAAAAA
GCTAGCTCAGAAAAAAAAAATCGTCGCGTGCGCGT
11 changes: 6 additions & 5 deletions bio/kallisto/index/wrapper.py
Expand Up @@ -19,9 +19,10 @@
fasta = " ".join(fasta) if isinstance(fasta, list) else fasta

shell(
"kallisto index " # Tool
"{extra} " # Optional parameters
"--index={snakemake.output.index} " # Output file
"{fasta} " # Input FASTA files
"{log}" # Logging
"kallisto index" # Tool
" --threads {snakemake.threads}"
" {extra}" # Optional parameters
" --index {snakemake.output.index}" # Output file
" {fasta}" # Input FASTA files
" {log}" # Logging
)

0 comments on commit a84c0ab

Please sign in to comment.