Skip to content

Commit

Permalink
fix: remove misleading kmer size parameter for kallisto index (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Jul 19, 2022
1 parent 6a6d28a commit 309b376
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions bio/kallisto/index/test/Snakefile
@@ -1,12 +1,12 @@
rule kallisto_index:
input:
fasta = "{transcriptome}.fasta"
fasta="{transcriptome}.fasta",
output:
index = "{transcriptome}.idx"
index="{transcriptome}.idx",
params:
extra = "--kmer-size=5"
extra="", # optional parameters
log:
"logs/kallisto_index_{transcriptome}.log"
"logs/kallisto_index_{transcriptome}.log",
threads: 1
wrapper:
"master/bio/kallisto/index"
10 changes: 5 additions & 5 deletions bio/kallisto/quant/test/Snakefile
@@ -1,13 +1,13 @@
rule kallisto_quant:
input:
fastq = ["reads/{exp}_R1.fastq", "reads/{exp}_R2.fastq"],
index = "index/transcriptome.idx"
fastq=["reads/{exp}_R1.fastq", "reads/{exp}_R2.fastq"],
index="index/transcriptome.idx",
output:
directory('quant_results_{exp}')
directory("quant_results_{exp}"),
params:
extra = ""
extra="",
log:
"logs/kallisto_quant_{exp}.log"
"logs/kallisto_quant_{exp}.log",
threads: 1
wrapper:
"master/bio/kallisto/quant"

0 comments on commit 309b376

Please sign in to comment.