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

Kallisto.nf: update report format

parent 5386a286
No related branches found
No related tags found
No related merge requests found
...@@ -27,10 +27,10 @@ process mapping_fastq { ...@@ -27,10 +27,10 @@ process mapping_fastq {
script: script:
""" """
mkdir ${reads[0].baseName} mkdir ${pair_id}
kallisto quant -i ${index} -t ${task.cpus} \ kallisto quant -i ${index} -t ${task.cpus} \
--bias --bootstrap-samples 100 -o ${pair_id} \ --bias --bootstrap-samples 100 -o ${pair_id} \
${reads[0]} ${reads[1]} &> ${pair_id}_kallisto_report.txt ${reads[0]} ${reads[1]} &> ${pair_id}/kallisto_report.txt
""" """
} }
...@@ -36,7 +36,7 @@ mkdir ${file_id} ...@@ -36,7 +36,7 @@ mkdir ${file_id}
kallisto quant -i ${index} -t ${task.cpus} --single \ kallisto quant -i ${index} -t ${task.cpus} --single \
--bias --bootstrap-samples 100 -o ${file_id} \ --bias --bootstrap-samples 100 -o ${file_id} \
-l ${params.mean} -s ${params.sd} \ -l ${params.mean} -s ${params.sd} \
${reads} > ${file_id}_kallisto_report.txt ${reads} &> ${file_id}/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