Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • BICF/Astrocyte/cellranger_count
Show changes
Commits on Source (6)
...@@ -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*
......
...@@ -152,9 +152,9 @@ workflow_parameters: ...@@ -152,9 +152,9 @@ workflow_parameters:
- id: astrocyte - id: astrocyte
type: string type: string
required: true
default: 'true' default: 'true'
regex: "true" required: true
regex: 'true'
description: | description: |
Ensure configuraton for astrocyte. Ensure configuraton for astrocyte.
......
...@@ -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'
} }
} }
......
...@@ -71,6 +71,8 @@ process checkDesignFile { ...@@ -71,6 +71,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
""" """
...@@ -104,7 +106,7 @@ chemistryParam301 = chemistryParam ...@@ -104,7 +106,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'
...@@ -129,17 +131,21 @@ process count211 { ...@@ -129,17 +131,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'
...@@ -165,17 +171,21 @@ process count301 { ...@@ -165,17 +171,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'
...@@ -201,10 +211,14 @@ process count302 { ...@@ -201,10 +211,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"
""" """
} }
......