Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cellranger_count
Manage
Activity
Members
Labels
Plan
Issues
11
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
BICF
Astrocyte
cellranger_count
Commits
e4f3197b
There was a problem fetching the latest pipeline status.
Commit
e4f3197b
authored
6 years ago
by
Gervaise Henry
🤠
Browse files
Options
Downloads
Patches
Plain Diff
Fix module loads in main.nfto address
#13
parent
7106c0a3
3 merge requests
!29
Develop
,
!28
Develop
,
!26
Develop
Pipeline
#3316
passed with stages
in 10 minutes and 41 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
astrocyte_pkg.yml
+1
-2
1 addition, 2 deletions
astrocyte_pkg.yml
workflow/main.nf
+37
-44
37 additions, 44 deletions
workflow/main.nf
with
38 additions
and
46 deletions
astrocyte_pkg.yml
+
1
−
2
View file @
e4f3197b
...
@@ -177,5 +177,4 @@ vizapp_cran_packages:
...
@@ -177,5 +177,4 @@ vizapp_cran_packages:
# List of any Bioconductor packages, not provided by the modules,
# List of any Bioconductor packages, not provided by the modules,
# that must be made available to the vizapp
# that must be made available to the vizapp
vizapp_bioc_packages
:
vizapp_bioc_packages
:
[]
-
chipseq
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
37
−
44
View file @
e4f3197b
...
@@ -7,12 +7,9 @@
...
@@ -7,12 +7,9 @@
params.fastq = "$baseDir/../test_data/*.fastq.gz"
params.fastq = "$baseDir/../test_data/*.fastq.gz"
params.designFile = "$baseDir/../test_data/design.csv"
params.designFile = "$baseDir/../test_data/design.csv"
params.genome = 'GRCh38-3.0.0'
params.genome = 'GRCh38-3.0.0'
params.expectCells = 10000
params.expectCells = 10000
params.forceCells = 0
params.forceCells = 0
params.kitVersion = 'three'
params.kitVersion = 'three'
params.version = '3.0.2'
params.version = '3.0.2'
params.astrocyte = false
params.astrocyte = false
params.outDir = "$baseDir/output"
params.outDir = "$baseDir/output"
...
@@ -35,7 +32,6 @@ if (params.astrocyte) {
...
@@ -35,7 +32,6 @@ if (params.astrocyte) {
params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: false : false
params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: false : false
params.chemistry = []
params.chemistry = []
params.chemistryParam = params.kitVersion ? params.chemistry[ params.kitVersion ].param ?: false : false
params.chemistryParam = params.kitVersion ? params.chemistry[ params.kitVersion ].param ?: false : false
}
}
params.genomeLocationFull = params.genomeLocation+params.genome
params.genomeLocationFull = params.genomeLocation+params.genome
...
@@ -128,21 +124,20 @@ process count211 {
...
@@ -128,21 +124,20 @@ process count211 {
version == '2.1.1'
version == '2.1.1'
script:
script:
"""
module load cellranger/2.1.1
"""
if (forceCells211 == 0){
if (forceCells211 == 0){
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
module load cellranger/2.1.1
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells211
"""
} else {
} else {
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211
module load cellranger/2.1.1
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells211
"""
}
}
}
}
...
@@ -168,21 +163,20 @@ process count301 {
...
@@ -168,21 +163,20 @@ process count301 {
version == '3.0.1'
version == '3.0.1'
script:
script:
"""
module load cellranger/3.0.1
"""
if (forceCells301 == 0){
if (forceCells301 == 0){
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
module load cellranger/3.0.1
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells301 --chemistry="$chemistryParam301"
"""
} else {
} else {
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301"
module load cellranger/3.0.1
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells301 --chemistry="$chemistryParam301"
"""
}
}
}
}
...
@@ -208,20 +202,19 @@ process count302 {
...
@@ -208,20 +202,19 @@ process count302 {
version == '3.0.2'
version == '3.0.2'
script:
script:
"""
module load cellranger/3.0.2
"""
if (forceCells302 == 0){
if (forceCells302 == 0){
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302"
module load cellranger/3.0.2
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --expect-cells=$expectCells302 --chemistry="$chemistryParam302"
"""
} else {
} else {
"""
"""
hostname
hostname
ulimit -a
ulimit -a
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells302 --chemistry="$chemistryParam302"
module load cellranger/3.0.2
"""
cellranger count --id="$sample" --transcriptome="./$ref" --fastqs=. --sample="$sample" --force-cells=$forceCells302 --chemistry="$chemistryParam302"
"""
}
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment