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
Merge requests
!17
Resolve "Add params from biohpc.config into main.nf"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add params from biohpc.config into main.nf"
13-congig.params
into
develop
Overview
0
Commits
2
Pipelines
1
Changes
2
Merged
Gervaise Henry
requested to merge
13-congig.params
into
develop
6 years ago
Overview
0
Commits
2
Pipelines
1
Changes
2
Expand
Closes
#13 (closed)
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
f236a41e
2 commits,
6 years ago
2 files
+
30
−
5
Expand all files
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
workflow/main.nf
+
24
−
5
Options
@@ -7,17 +7,36 @@
params.fastq = "$baseDir/../test_data/*.fastq.gz"
params.designFile = "$baseDir/../test_data/design.csv"
params.genome = 'GRCh38-3.0.0'
params.genomes = []
params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: false : false
params.genomeLocationFull = params.genomeLocation+params.genome
params.expectCells = 10000
params.forceCells = 0
params.kitVersion = 'three'
params.chemistry = []
params.chemistryParam = params.kitVersion ? params.chemistry[ params.kitVersion ].param ?: false : false
params.version = '3.0.2'
params.astrocyte = 'false'
params.outDir = "$baseDir/output"
// Assign variables if astrocyte
if (params.astrocyte == 'false') {
params.genomes = []
params.genomeLocation = params.genome ? params.genomes[ params.genome ].loc ?: false : false
params.chemistry = []
params.chemistryParam = params.kitVersion ? params.chemistry[ params.kitVersion ].param ?: false : false
} else if (params.astrocyte == 'true') {
params.genomeLocation = '/project/apps_database/cellranger/refdata-cellranger-'
if (params.kitVersion == "one") {
params.chemistryParam ='SC3Pv1'
} else if (params.kitVersion == "two") {
params.chemistryParam ='SC3Pv2'
} else if (params.kitVersion == "three") {
params.chemistryParam ='SC3Pv3'
} else {
params.chemistryParam = 'auto'
}
}
params.genomeLocationFull = params.genomeLocation+params.genome
// Define regular variables
designLocation = Channel
.fromPath(params.designFile)