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
2ada067d
There was a problem fetching the pipeline stages.
Commit
2ada067d
authored
6 years ago
by
Gervaise Henry
Browse files
Options
Downloads
Patches
Plain Diff
Hardwire ref genome locations into astrocyte yml
parent
5f3b547d
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#2345
failed with stage
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
astrocyte_pkg.yml
+5
-5
5 additions, 5 deletions
astrocyte_pkg.yml
workflow/conf/biohpc.config
+0
-21
0 additions, 21 deletions
workflow/conf/biohpc.config
workflow/main.nf
+4
-16
4 additions, 16 deletions
workflow/main.nf
with
9 additions
and
42 deletions
astrocyte_pkg.yml
+
5
−
5
View file @
2ada067d
...
...
@@ -95,11 +95,11 @@ workflow_parameters:
-
id
:
genome
type
:
select
choices
:
-
[
'
GRCh38
'
,
'
Human
GRCh38'
]
-
[
'
hg19
'
,
'
Human
GRCh37
(hg19)'
]
-
[
'
mm1
0'
,
'
Mouse
GRCm38
(mm10)'
]
-
[
'
hg19.mm1
0'
,
'
Human
GRCh37
(hg19)
+
Mouse
GRCm38
(mm19)'
]
-
[
'
ercc92
'
,
'
ERCC.92
Spike-In'
]
-
[
'
/project/apps_database/cellranger/refdata-cellranger-GRCh38-1.2.0
'
,
'
Human
GRCh38'
]
-
[
'
/project/apps_database/cellranger/refdata-cellranger-hg19-1.2.0
'
,
'
Human
GRCh37
(hg19)'
]
-
[
'
/project/apps_database/cellranger/refdata-cellranger-mm10-1.2.
0'
,
'
Mouse
GRCm38
(mm10)'
]
-
[
'
/project/apps_database/cellranger/refdata-cellranger-hg19_and_mm10-1.2.
0'
,
'
Human
GRCh37
(hg19)
+
Mouse
GRCm38
(mm19)'
]
-
[
'
/project/apps_database/cellranger/refdata-cellranger-ercc92-1.2.0
'
,
'
ERCC.92
Spike-In'
]
required
:
true
description
:
|
Reference species and genome used for alignment and subsequent analysis.
...
...
This diff is collapsed.
Click to expand it.
workflow/conf/biohpc.config
+
0
−
21
View file @
2ada067d
...
...
@@ -12,27 +12,6 @@ process {
}
}
params
{
//
Reference
file
paths
on
BioHPC
genomes
{
'ercc92'
{
ref
=
'/project/apps_database/cellranger/refdata-cellranger-ercc92-1.2.0'
}
'GRCh38'
{
ref
=
'/project/apps_database/cellranger/refdata-cellranger-GRCh38-1.2.0'
}
'hg19'
{
ref
=
'/project/apps_database/cellranger/refdata-cellranger-hg19-1.2.0'
}
'mm10'
{
ref
=
'/project/apps_database/cellranger/refdata-cellranger-mm10-1.2.0'
}
'hg19.mm10'
{
ref
=
'/project/apps_database/cellranger/refdata-cellranger-hg19_and_mm10-1.2.0'
}
}
}
trace
{
enabled
=
true
file
=
'pipeline_trace.txt'
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
4
−
16
View file @
2ada067d
...
...
@@ -6,25 +6,10 @@
// Define Input variables
params.fastq = "$baseDir/../test_data/*.fastq.gz"
params.designFile = "$baseDir/../test_data/design.csv"
params.genome = 'GRCh38'
params.genomes = []
params.ref = params.genome ? params.genomes[ params.genome ].ref ?: false : false
params.genome = '/project/apps_database/cellranger/refdata-cellranger-GRCh38-1.2.0'
params.expectCells = 10000
params.forceCells = 0
println params.genome
println params.genomes[ params.genome ].ref
println params.ref
// Check inputs
if( params.ref ){
refLocation = Channel
.fromPath(params.ref)
.ifEmpty { exit 1, "referene not found: ${params.ref}" }
} else {
exit 1, "No reference genome specified."
}
// Define List of Files
fastqList = Channel
.fromPath(params.fastq)
...
...
@@ -33,6 +18,9 @@ fastqList = Channel
.collectFile(name: 'fileList.tsv', newLine: true)
// Define regular variables
refLocation = Channel
.fromPath(params.genome)
.ifEmpty { exit 1, "referene not found: ${params.genome}" }
expectCells = params.expectCells
forceCells = params.forceCells
...
...
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