Skip to content
Snippets Groups Projects
Verified Commit 5aaa2669 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

kallisto: add verbose to indexing.nf

parent 5fca29e5
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ Channel
process index_fasta {
tag "$fasta.baseName"
publishDir "results/mapping/index/", mode: 'copy'
echo true
input:
file fasta from fasta_file
......@@ -20,6 +21,7 @@ process index_fasta {
script:
"""
pwd
kallisto index -k 31 --make-unique -i ${fasta.baseName}.index ${fasta} \
2> ${fasta.baseName}_kallisto_report.txt
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment