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

Add hostname and ulimit -a to all processes for diagnosis

parent c2785043
Branches
Tags
2 merge requests!29Develop,!26Develop
Pipeline #3301 passed with stages
in 12 minutes and 35 seconds
......@@ -71,6 +71,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
"""
......@@ -129,10 +131,14 @@ 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
"""
}
......@@ -165,10 +171,14 @@ 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"
"""
}
......@@ -201,10 +211,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