Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
nextflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
nextflow
Commits
7fa6b2d4
Unverified
Commit
7fa6b2d4
authored
6 years ago
by
Laurent Modolo
Browse files
Options
Downloads
Patches
Plain Diff
fix training_dataset pipeline
parent
466efb3e
No related branches found
No related tags found
No related merge requests found
Pipeline
#45
canceled
6 years ago
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/nf_modules/bedtools/fasta_from_bed.config
+1
-0
1 addition, 0 deletions
src/nf_modules/bedtools/fasta_from_bed.config
src/training_dataset.config
+157
-55
157 additions, 55 deletions
src/training_dataset.config
with
158 additions
and
55 deletions
src/nf_modules/bedtools/fasta_from_bed.config
+
1
−
0
View file @
7fa6b2d4
...
...
@@ -25,6 +25,7 @@ profiles {
module
=
"bedtools/2.25.0"
executor
=
"sge"
clusterOptions
=
"-m e -cwd -V"
cpus
=
1
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
...
...
This diff is collapsed.
Click to expand it.
src/training_dataset.config
+
157
−
55
View file @
7fa6b2d4
...
...
@@ -3,135 +3,237 @@ profiles {
docker
.
temp
=
'auto'
docker
.
enabled
=
true
process
{
with
n
ame
:
build_synthetic_bed
{
with
N
ame
:
build_synthetic_bed
{
container
=
"bedtools:2.25.0"
cpus
=
1
}
with
n
ame
:
fasta_from_bed
{
with
N
ame
:
fasta_from_bed
{
container
=
"bedtools:2.25.0"
cpus
=
1
}
with
n
ame
:
index_fasta
{
with
N
ame
:
index_fasta
{
container
=
"bowtie2:2.3.4.1"
cpus
=
4
}
with
n
ame
:
mapping_fastq_paired
{
with
N
ame
:
mapping_fastq_paired
{
container
=
"bowtie2:2.3.4.1"
cpus
=
4
}
with
n
ame
:
bam_2_fastq_paired
{
with
N
ame
:
bam_2_fastq_paired
{
container
=
"samtools:1.7"
cpus
=
4
}
with
n
ame
:
sort
_bam_paired
{
with
N
ame
:
filter
_bam_paired
{
container
=
"samtools:1.7"
cpus
=
4
}
with
n
ame
:
index
_bam_paired
{
with
N
ame
:
sort
_bam_paired
{
container
=
"samtools:1.7"
cpus
=
4
}
withname
:
mapping_fastq_single
{
withName
:
index_bam_paired
{
container
=
"samtools:1.7"
cpus
=
4
}
withName
:
mapping_fastq_single
{
container
=
"bowtie2:2.3.4.1"
cpus
=
4
}
with
n
ame
:
bam_2_fastq_single
{
with
N
ame
:
bam_2_fastq_single
{
container
=
"samtools:1.7"
cpus
=
4
}
with
n
ame
:
sort
_bam_single
{
with
N
ame
:
filter
_bam_single
{
container
=
"samtools:1.7"
cpus
=
4
}
with
n
ame
:
index
_bam_single
{
with
N
ame
:
sort
_bam_single
{
container
=
"samtools:1.7"
cpus
=
4
}
withName
:
index_bam_single
{
container
=
"samtools:1.7"
cpus
=
4
}
}
}
singularity
{
singularity
.
enabled
=
true
process
{
withName
:
build_synthetic_bed
{
container
=
"file://bin/bedtools:2.25.0.sif"
cpus
=
1
}
withName
:
fasta_from_bed
{
container
=
"file://bin/bedtools:2.25.0.sif"
cpus
=
1
}
withName
:
index_fasta
{
container
=
"file://bin/bowtie2:2.3.4.1.sif"
cpus
=
4
}
withName
:
mapping_fastq_single
{
container
=
"file://bin/bowtie2:2.3.4.1.sif"
cpus
=
4
}
withName
:
mapping_fastq_paired
{
container
=
"file://bin/bowtie2:2.3.4.1.sif"
cpus
=
4
}
withName
:
bam_2_fastq_paired
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
filter_bam_paired
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
sort_bam_paired
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
index_bam_paired
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
bam_2_fastq_single
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
filter_bam_single
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
sort_bam_single
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
withName
:
index_bam_single
{
container
=
"file://bin/samtools:1.7.sif"
cpus
=
4
}
}
}
psmn
{
process
{
with
n
ame
:
build_synthetic_bed
{
with
N
ame
:
build_synthetic_bed
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
BED
tools/2.25.0"
module
=
"
bed
tools/2.25.0"
executor
=
"sge"
clusterOptions
=
"-m be -cwd -V"
clusterOptions
=
"-m e -cwd -V"
cpus
=
1
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
}
with
n
ame
:
fasta_from_bed
{
with
N
ame
:
fasta_from_bed
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
BED
tools/2.25.0"
module
=
"
bed
tools/2.25.0"
executor
=
"sge"
clusterOptions
=
"-m be -cwd -V"
clusterOptions
=
"-m e -cwd -V"
cpus
=
1
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
}
with
n
ame
:
index_fasta
{
with
N
ame
:
index_fasta
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
B
owtie2/2.3.4.1"
module
=
"
b
owtie2/2.3.4.1"
executor
=
"sge"
memory
=
"30GB"
time
=
"24h"
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"20GB"
time
=
"12h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
mapping_fastq_paired
{
with
N
ame
:
mapping_fastq_paired
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
B
owtie2/2.3.4.1:
SAM
tools/1.7"
module
=
"
b
owtie2/2.3.4.1:
sam
tools/1.7"
executor
=
"sge"
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
bam_2_fastq_paired
{
with
N
ame
:
bam_2_fastq_paired
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
sort_bam_paired
{
with
N
ame
:
sort_bam_paired
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
index_bam_paired
{
with
N
ame
:
index_bam_paired
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
mapping_fastq_single
{
with
N
ame
:
mapping_fastq_single
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
B
owtie2/2.3.4.1:
SAM
tools/1.7"
module
=
"
b
owtie2/2.3.4.1:
sam
tools/1.7"
executor
=
"sge"
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
bam_2_fastq_single
{
with
N
ame
:
bam_2_fastq_single
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
sort_bam_single
{
with
N
ame
:
sort_bam_single
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
with
n
ame
:
index_bam_single
{
with
N
ame
:
index_bam_single
{
beforeScript
=
"source /usr/share/lmod/lmod/init/bash; module use ~/privatemodules"
module
=
"
SAM
tools/1.7"
module
=
"
sam
tools/1.7"
executor
=
"sge"
memory
=
"20GB"
time
=
"12h"
queue
=
'monointeldeb128'
clusterOptions
=
"-m e -cwd -V"
cpus
=
16
memory
=
"30GB"
time
=
"24h"
queue
=
'E5-2670deb128A,E5-2670deb128B,E5-2670deb128C,E5-2670deb128D,E5-2670deb128E,E5-2670deb128F'
penv
=
'openmp16'
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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