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
b965b5d4
There was a problem fetching the pipeline stages.
Commit
b965b5d4
authored
6 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Add module loads to processes in main.nf until custom configs fixed in astrocyte
parent
1e4dc79c
Branches
Branches containing commit
Tags
Tags containing commit
3 merge requests
!29
Develop
,
!26
Develop
,
!22
Develop
Pipeline
#3224
canceled with stage
in 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
workflow/main.nf
+10
-0
10 additions, 0 deletions
workflow/main.nf
with
10 additions
and
0 deletions
workflow/main.nf
+
10
−
0
View file @
b965b5d4
...
...
@@ -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"
...
...
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