-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
26 lines (24 loc) · 1.03 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
outputDir = 'results/'
params.fasta = "s3://ngi-igenomes/igenomes/Homo_sapiens/UCSC/hg18/Sequence/WholeGenomeFasta/genome.fa"
// HACK Could probably figure this from the reference
params.genome_name = "hg18"
// http://homer.ucsd.edu/homer/ngs/groseq/groseq.html
// This will eat up a ton of memory, which can be scaled by adjusting the first
// argument which sets the number of sequences that are analyzed in parallel.
// The program takes a while on mammalian genomes (~day). The second argument is
// the length of the reads you want to consider unique:
// `getMappableRegions 1000000000 50 *.fa > out.50nt.txt`
params.parallel_sequences_analyzed = 1000000000
params.read_length = 50
process {
errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' }
maxRetries = 1
maxErrors = '-1'
}
profiles {
utd_ganymede {
includeConfig "https://raw.githubusercontent.com/nf-core/configs/master/conf/utd_ganymede.config"
wave.enabled = false
wave.strategy = ["conda", "container"]
}
}