Skip to content
Snippets Groups Projects
Commit 5fb31dbb authored by John Lafin's avatar John Lafin
Browse files

Add task_id to output dir

parent b82a03d9
Branches
Tags
No related merge requests found
......@@ -29,7 +29,7 @@ process cr_count {
path(fastq)
output:
tuple val(sample), path("${sample}/outs/**")
tuple val(sample), path("${task.index}_${sample}/outs/**")
script:
// Check reference
......@@ -66,7 +66,7 @@ process cr_count {
// Run Cell Ranger count
"""
cellranger count --id=$sample \
cellranger count --id=${task.index}_${sample} \
--transcriptome=$ref \
--fastqs=. \
--sample=$sample \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment