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

Merge branch 'master' into 'develop'

# Conflicts:
#   astrocyte_pkg.yml
parents cd3e193e b9723a49
Branches
Tags
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/ ...@@ -301,6 +301,7 @@ $RECYCLE.BIN/
/workflow/work/* /workflow/work/*
/workflow/output/* /workflow/output/*
/.nextflow/* /.nextflow/*
/data/*
/work/* /work/*
/output/* /output/*
pipeline_trace*.txt* pipeline_trace*.txt*
......
...@@ -9,15 +9,15 @@ process { ...@@ -9,15 +9,15 @@ process {
} }
$count211 { $count211 {
module = ['cellranger/2.1.1'] module = ['cellranger/2.1.1']
memory = '120GB' queue = '128GB,256GB,256GBv1,384GB'
} }
$count301 { $count301 {
module = ['cellranger/3.0.1'] module = ['cellranger/3.0.1']
memory = '120GB' queue = '128GB,256GB,256GBv1,384GB'
} }
$count302 { $count302 {
module = ['cellranger/3.0.2'] module = ['cellranger/3.0.2']
memory = '120GB' queue = '128GB,256GB,256GBv1,384GB'
} }
} }
......
...@@ -73,6 +73,8 @@ process checkDesignFile { ...@@ -73,6 +73,8 @@ process checkDesignFile {
script: script:
""" """
hostname
ulimit -a
module load python/3.6.1-2-anaconda module load python/3.6.1-2-anaconda
python3 $baseDir/scripts/check_design.py -d $designLocation -f $fastqList python3 $baseDir/scripts/check_design.py -d $designLocation -f $fastqList
""" """
...@@ -106,7 +108,7 @@ chemistryParam301 = chemistryParam ...@@ -106,7 +108,7 @@ chemistryParam301 = chemistryParam
chemistryParam302 = chemistryParam chemistryParam302 = chemistryParam
process count211 { process count211 {
memory '120 GB' queue '128GB,256GB,256GBv1,384GB'
tag "count211-$sample" tag "count211-$sample"
publishDir "$outDir/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
...@@ -131,17 +133,21 @@ process count211 { ...@@ -131,17 +133,21 @@ process count211 {
""" """
if (forceCells211 == 0){ if (forceCells211 == 0){
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211 cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
""" """
} else { } else {
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211 cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211
""" """
} }
} }
process count301 { process count301 {
memory '120 GB' queue '128GB,256GB,256GBv1,384GB'
tag "count301-$sample" tag "count301-$sample"
publishDir "$outDir/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
...@@ -167,17 +173,21 @@ process count301 { ...@@ -167,17 +173,21 @@ process count301 {
""" """
if (forceCells301 == 0){ if (forceCells301 == 0){
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301" cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
""" """
} else { } else {
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301" cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301"
""" """
} }
} }
process count302 { process count302 {
memory '120 GB' queue '128GB,256GB,256GBv1,384GB'
tag "count302-$sample" tag "count302-$sample"
publishDir "$outDir/${task.process}", mode: 'copy' publishDir "$outDir/${task.process}", mode: 'copy'
...@@ -203,10 +213,14 @@ process count302 { ...@@ -203,10 +213,14 @@ process count302 {
""" """
if (forceCells302 == 0){ if (forceCells302 == 0){
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302" cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302"
""" """
} else { } else {
""" """
hostname
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells302 --chemistry="$chemistryParam302" 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