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

Add module loads to processes in main.nf until custom configs fixed in astrocyte

parent 1e4dc79c
Branches
Tags
3 merge requests!29Develop,!26Develop,!22Develop
Pipeline #3224 canceled with stage
in 25 seconds
......@@ -71,6 +71,7 @@ process checkDesignFile {
script:
"""
module load python/3.6.1-2-anaconda
python3 $baseDir/scripts/check_design.py -d $designLocation -f $fastqList
"""
}
......@@ -123,6 +124,9 @@ process count211 {
version == '2.1.1'
script:
"""
module load cellranger/2.1.1
"""
if (forceCells211 == 0){
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
......@@ -156,6 +160,9 @@ process count301 {
version == '3.0.1'
script:
"""
module load cellranger/3.0.1
"""
if (forceCells301 == 0){
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
......@@ -189,6 +196,9 @@ process count302 {
version == '3.0.2'
script:
"""
module load cellranger/3.0.2
"""
if (forceCells302 == 0){
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --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