-
Notifications
You must be signed in to change notification settings - Fork 0
/
nextflow.config
47 lines (39 loc) · 1.53 KB
/
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
38
39
40
41
42
43
44
45
46
47
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sdsc-ordes/nds-lucid-graphdb-loader Nextflow config file
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Default config options for all compute environments
----------------------------------------------------------------------------------------
*/
// Global default params, used in configs
params {
// Workflow flags
// params can be overriden using CLI flags (e.g. --backup_dir 'ext/backup')
input_dir = '/data/out-ingest'
backup_dir = '/data/backup/'
graphdb_dir = '/data/graphdb-import'
graphdb_url = 'lucid-db:7000'
graphdb_repo = 'lucid'
watch = true
log_dir = "logs"
max_backups = 1
}
// Load base.config by default for all pipelines
includeConfig 'conf/base.config'
includeConfig 'conf/log.config'
profiles {
local { includeConfig 'conf/local.config' }
test { includeConfig 'conf/test.config' }
}
// Capture exit codes from upstream processes when piping
process.shell = ['/bin/bash', '-euo', 'pipefail']
manifest {
name = 'sdsc-ordes/nds-lucid-graphdb-loader'
author = """Stefan Milosavljevic and Cyril Matthey-Doret"""
homePage = 'https://github.com/sdsc-ordes/nds-lucid-graphdb-loader'
description = """Load RDF data into a GraphDB instance, handling backups and failures."""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '1.0dev'
doi = ''
}