Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rnaseq
Manage
Activity
Members
Labels
Plan
Issues
8
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
rnaseq
Commits
9131c8e0
Commit
9131c8e0
authored
4 years ago
by
Brandi Cantarel
Browse files
Options
Downloads
Patches
Plain Diff
update with singularity
parent
5288e775
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#8178
failed with stage
in 2 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nextflow.config
+12
-9
12 additions, 9 deletions
nextflow.config
workflow/main.nf
+3
-7
3 additions, 7 deletions
workflow/main.nf
workflow/process_scripts
+1
-1
1 addition, 1 deletion
workflow/process_scripts
with
16 additions
and
17 deletions
nextflow.config
+
12
−
9
View file @
9131c8e0
...
...
@@ -6,22 +6,25 @@ process {
clusterOptions
=
'--hold --no-kill'
queue
=
'128GB,256GB,256GBv1'
withLabel
:
trim
{
container
=
'
goalconsortium/
trim_galore
:1.0.4
'
container
=
'trim_galore
.sif
'
}
withLabel
:
dnaalign
{
container
=
'
goalconsortium/
dna_alignment
:1.0.4
'
container
=
'dna_alignment
.sif
'
}
withLabel
:
profiling_qc
{
container
=
'
goalconsortium/
profiling_qc
:1.0.4
'
container
=
'profiling_qc
.sif
'
}
with
Name
:
starfusion
{
container
=
'
goalconsortium/
starfusion
:1.0.4
'
with
Label
:
starfusion
{
container
=
'starfusion
.sif
'
}
with
Name
:
ralign
{
container
=
'
goalconsortium/
rna_alignment
:1.0.4
'
with
Label
:
ralign
{
container
=
'rna_alignment
.sif
'
}
withName
:
geneabund
{
container
=
'goalconsortium/rna_gene_abundance:1.0.4'
withLabel
:
geneabund
{
container
=
'rna_gene_abundance.sif'
}
withLabel
:
rnaseqstat
{
container
=
'rnaseq_dea.sif'
}
}
...
...
This diff is collapsed.
Click to expand it.
workflow/main.nf
+
3
−
7
View file @
9131c8e0
...
...
@@ -34,23 +34,18 @@ index_path = file(params.genome)
process checkdesignfile {
queue 'super'
module 'parallel/20150122:pigz/2.4
'
label 'trim
'
publishDir "$params.output", mode: 'copy'
input:
file design_file name 'design.ori.txt'
file ("*") from fqs.collect()
output:
file("design.valid.txt") into newdesign
file("*.fastq.gz") into fastqs mode flatten
stdout spltnames
script:
"""
bash $baseDir/scripts/check_inputfiles.sh
perl -p -e 's/\\r\\n*/\\n/g' design.ori.txt > design.fix.txt
perl $baseDir/scripts/check_designfile.pl ${params.pairs} design.fix.txt
bash $repoDir/process_scripts/design_file/checkdesignfile.sh ${params.pairs} design.ori.txt
"""
}
...
...
@@ -159,6 +154,7 @@ process geneabund {
process statanal {
errorStrategy 'ignore'
publishDir "$params.output", mode: 'copy'
label 'rnaseqstat'
input:
file count_file from counts.toList()
file count_sum from ctsum.toList()
...
...
This diff is collapsed.
Click to expand it.
process_scripts
@
8706de70
Compare
96bcf788
...
8706de70
Subproject commit
96bcf78802267e8bb1834c06ffb98c5d700273e3
Subproject commit
8706de703b8b5933f89651e5be0312af96cddb7c
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