Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
BICF
Astrocyte
cellranger_count
Commits
51ff8a09
Commit
51ff8a09
authored
Jul 13, 2020
by
Gervaise Henry
🤠
Browse files
Fix configs and refs
parent
abd059b2
Pipeline
#7565
passed with stages
in 9 minutes and 27 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
workflow/configs/aws.config
View file @
51ff8a09
...
...
@@ -12,27 +12,27 @@ process {
cpus
=
1
memory
=
'1 GB'
with
Label
:
checkDesignFile
{
with
Name
:
checkDesignFile
{
cpus
=
2
memory
=
'1 GB'
}
with
Label
:
count211
{
with
Name
:
count211
{
cpus
=
2
memory
=
'30 GB'
}
with
Label
:
count302
{
with
Name
:
count302
{
cpus
=
2
memory
=
'30 GB'
}
with
Label
:
count310
{
with
Name
:
count310
{
cpus
=
2
memory
=
'30 GB'
}
with
Label
:
versions
{
with
Name
:
versions
{
cpus
=
3
memory
=
'1 GB'
}
with
Label
:
multiqc
{
with
Name
:
multiqc
{
cpus
=
1
memory
=
'1 GB'
}
...
...
workflow/configs/cluster.config
View file @
51ff8a09
...
...
@@ -9,25 +9,25 @@ process {
withLabel
:
checkDesignFile
{
executor
=
'local'
}
with
Label
:
count211
{
with
Name
:
count211
{
queue
=
'128GB,256GB,256GBv1,384GB'
}
with
Label
:
count220
{
with
Name
:
count220
{
queue
=
'128GB,256GB,256GBv1,384GB'
}
with
Label
:
count302
{
with
Name
:
count302
{
queue
=
'128GB,256GB,256GBv1,384GB'
}
with
Label
:
count310
{
with
Name
:
count310
{
queue
=
'128GB,256GB,256GBv1,384GB'
}
with
Label
:
count400
{
with
Name
:
count400
{
queue
=
'128GB,256GB,256GBv1,384GB'
}
with
Label
:
versions
{
with
Name
:
versions
{
executor
=
'local'
}
with
Label
:
multiqc
{
with
Name
:
multiqc
{
executor
=
'local'
}
}
workflow/main.nf
View file @
51ff8a09
...
...
@@ -22,7 +22,6 @@ params.name = "run"
params.fastq = "test_data/mu.v3s1r500/*.fastq.gz"
params.designFile = "test_data/mu.v3s1r500/design.csv"
params.genome = 'mm10-2020-A'
params.genomeLocation = '/project/apps_database/cellranger/refdata-gex-'
params.expectCells = 10000
params.forceCells = 0
params.kitVersion = '3GEXv3'
...
...
@@ -39,7 +38,11 @@ if (params.kitVersion == "3GEXv3" && params.version == '2.1.1') {
// Define variables if astrocyte (or from config)
if (params.astrocyte) {
print("Running under astrocyte")
params.genomeLocation = '/project/apps_database/cellranger/refdata-cellranger-'
if (params.version == "4.0.0") {
params.genomeLocation = '/project/apps_database/cellranger/refdata-gex-'
} else {
params.genomeLocation = '/project/apps_database/cellranger/refdata-cellranger-'
}
if (params.kitVersion == "3GEXv1") {
params.chemistryParam ='SC3Pv1'
} else if (params.kitVersion == "3GEXv2") {
...
...
workflow/nextflow.config
View file @
51ff8a09
profiles
{
standard
{
includeConfig
'configs/biohpc.config'
includeConfig
'configs/cluster.config'
}
biohpc
{
includeConfig
'configs/biohpc.config'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment