Skip to content
Snippets Groups Projects
Commit 7106c0a3 authored by Gervaise Henry's avatar Gervaise Henry 🤠
Browse files

Merge branch 'master' into 'develop'

# Conflicts:
#   astrocyte_pkg.yml
parents cd3e193e b9723a49
4 merge requests!29Develop,!26Develop,!25Develop,!24Develop
Pipeline #3315 passed with stages
in 10 minutes and 37 seconds
This commit is part of merge request !24. Comments created here will be created in the context of that merge request.
......@@ -301,6 +301,7 @@ $RECYCLE.BIN/
/workflow/work/*
/workflow/output/*
/.nextflow/*
/data/*
/work/*
/output/*
pipeline_trace*.txt*
......
......@@ -9,15 +9,15 @@ process {
}
$count211 {
module = ['cellranger/2.1.1']
memory = '120GB'
queue = '128GB,256GB,256GBv1,384GB'
}
$count301 {
module = ['cellranger/3.0.1']
memory = '120GB'
queue = '128GB,256GB,256GBv1,384GB'
}
$count302 {
module = ['cellranger/3.0.2']
memory = '120GB'
queue = '128GB,256GB,256GBv1,384GB'
}
}
......
......@@ -73,6 +73,8 @@ process checkDesignFile {
script:
"""
hostname
ulimit -a
module load python/3.6.1-2-anaconda
python3 $baseDir/scripts/check_design.py -d $designLocation -f $fastqList
"""
......@@ -106,7 +108,7 @@ chemistryParam301 = chemistryParam
chemistryParam302 = chemistryParam
process count211 {
memory '120 GB'
queue '128GB,256GB,256GBv1,384GB'
tag "count211-$sample"
publishDir "$outDir/${task.process}", mode: 'copy'
......@@ -131,17 +133,21 @@ process count211 {
"""
if (forceCells211 == 0){
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
"""
} else {
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211
"""
}
}
process count301 {
memory '120 GB'
queue '128GB,256GB,256GBv1,384GB'
tag "count301-$sample"
publishDir "$outDir/${task.process}", mode: 'copy'
......@@ -167,17 +173,21 @@ process count301 {
"""
if (forceCells301 == 0){
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
"""
} else {
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301"
"""
}
}
process count302 {
memory '120 GB'
queue '128GB,256GB,256GBv1,384GB'
tag "count302-$sample"
publishDir "$outDir/${task.process}", mode: 'copy'
......@@ -203,10 +213,14 @@ process count302 {
"""
if (forceCells302 == 0){
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302"
"""
} else {
"""
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells302 --chemistry="$chemistryParam302"
"""
}
......
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