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

kallisto: config for in2p3, add /usr/bin to path

parent 5aaa2669
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ profiles {
docker.temp = 'auto'
docker.enabled = true
process {
withName: index_fasta {
withNamek index_fasta {
container = "kallisto:0.44.0"
cpus = 4
}
......@@ -36,7 +36,7 @@ profiles {
ccin2p3 {
process{
withName: index_fasta {
beforeScript = "PATH=/sps/lbmc/common/nextflow/src/singularity_modules/kallisto/0.44.0/:$PATH"
beforeScript = "PATH=/sps/lbmc/common/nextflow/src/singularity_modules/kallisto/0.44.0/:/usr/bin:$PATH"
scratch = true
stageInMode = "copy"
stageOutMode = "rsync"
......
......@@ -10,7 +10,6 @@ Channel
process index_fasta {
tag "$fasta.baseName"
publishDir "results/mapping/index/", mode: 'copy'
echo true
input:
file fasta from fasta_file
......@@ -21,7 +20,6 @@ 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