-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextflow.config
37 lines (28 loc) · 983 Bytes
/
nextflow.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
manifest {
name = 'EOSC-Pilot'
description = 'Proof of concept reproducible pipeline for EOSC project'
author = 'Nino Spataro'
}
profiles {
legacy {
process.container = 'cbcrg/eosc-pilot:1.2'
docker.enabled = true
env.TMPDIR='${TMPDIR:=$(mktemp -d)}'
env._JAVA_OPTIONS='-Djava.io.tmpdir=$TMPDIR'
params.test = true
docker.runOptions = "-v $baseDir:$baseDir"
}
standard {
params.gatk = "$PWD/GenomeAnalysisTK.jar"
params.picard='/opt/conda/share/picard-2.9.2-2'
env.TMPDIR='${TMPDIR:=$(mktemp -d)}'
env._JAVA_OPTIONS='-Djava.io.tmpdir=$TMPDIR'
process.container = 'biocontainers/eosc-pilot:v1.0-remastering_cv1.0'
docker.enabled = true
docker.runOptions="-u \$(id -u):\$(id -g) -v $baseDir:$baseDir -v ${params.gatk}:${params.gatk}"
}
travis {
params.gatk = '/opt/gatk3.7/GenomeAnalysisTK.jar'
process.container = '885800555707.dkr.ecr.eu-west-1.amazonaws.com/cbcrg/eosc_with_gatk3.7'
}
}