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
rnaseq
Commits
a1c370ff
Commit
a1c370ff
authored
Feb 12, 2019
by
Brandi Cantarel
Browse files
update skip dea
parent
bb6e7948
Pipeline
#3575
canceled with stage
Changes
2
Pipelines
4
Show whitespace changes
Inline
Side-by-side
astrocyte_pkg.yml
View file @
a1c370ff
...
@@ -158,9 +158,9 @@ workflow_parameters:
...
@@ -158,9 +158,9 @@ workflow_parameters:
-
id
:
genome
-
id
:
genome
type
:
select
type
:
select
choices
:
choices
:
-
[
'
/project/shared/bicf_workflow_ref/GRCh38'
,
'
Human
GRCh38'
]
-
[
'
/project/shared/bicf_workflow_ref/
human/
GRCh38'
,
'
Human
GRCh38'
]
-
[
'
/project/shared/bicf_workflow_ref/GRCh37'
,
'
Human
GRCh37'
]
-
[
'
/project/shared/bicf_workflow_ref/
human/
GRCh37'
,
'
Human
GRCh37'
]
-
[
'
/project/shared/bicf_workflow_ref/GRCm38'
,
'
Mouse
GRCm38'
]
-
[
'
/project/shared/bicf_workflow_ref/
mouse/
GRCm38'
,
'
Mouse
GRCm38'
]
required
:
true
required
:
true
description
:
|
description
:
|
Reference genome for alignment
Reference genome for alignment
...
...
workflow/main.nf
View file @
a1c370ff
...
@@ -6,7 +6,7 @@ params.output= "$baseDir/output"
...
@@ -6,7 +6,7 @@ params.output= "$baseDir/output"
params.fastqs="$params.input/*.fastq.gz"
params.fastqs="$params.input/*.fastq.gz"
params.design="$params.input/design.txt"
params.design="$params.input/design.txt"
params.genome="/project/shared/bicf_workflow_ref/GRCh38/"
params.genome="/project/shared/bicf_workflow_ref/
human/
GRCh38/"
params.markdups="picard"
params.markdups="picard"
params.stranded="0"
params.stranded="0"
params.pairs="pe"
params.pairs="pe"
...
@@ -20,7 +20,8 @@ fastqs=file(params.fastqs)
...
@@ -20,7 +20,8 @@ fastqs=file(params.fastqs)
design_file = file(params.design)
design_file = file(params.design)
gtf_file = file("$params.genome/gencode.gtf")
gtf_file = file("$params.genome/gencode.gtf")
genenames = file("$params.genome/genenames.txt")
genenames = file("$params.genome/genenames.txt")
geneset = file("$params.genome/gsea_gmt/$params.geneset")
geneset = file("$params.genome/../gsea_gmt/$params.geneset")
dbsnp="$params.genome/dbSnp.vcf.gz"
dbsnp="$params.genome/dbSnp.vcf.gz"
indel="$params.genome/GoldIndels.vcf.gz"
indel="$params.genome/GoldIndels.vcf.gz"
knownindel=file(indel)
knownindel=file(indel)
...
...
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