forked from WarrenLab/hic-scaffolding-nf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
38 lines (33 loc) · 1.06 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
process {
memory = '100 GB'
time = '1d'
withName: 'CHROMAP_ALIGN' {
cpus = 44
publishDir = [ path: 'out/chromap', mode: 'copy' ]
}
withName: 'YAHS_SCAFFOLD' { publishDir = [ path: 'out/scaffolds', mode: 'copy' ] }
withName: 'JUICER_PRE' { publishDir = [ path: 'out/juicebox_input', mode: 'copy' ] }
withName: 'PRINT_VERSIONS' { publishDir = [ path: 'out/', mode: 'copy' ] }
withName: 'ASSEMBLY_STATS' { publishDir = [ path: 'out/scaffolds', mode: 'copy' ] }
}
profiles {
uoh {
process {
executor = 'slurm'
queue = 'uohhm'
conda = '/mnt/beegfs/home/adigenova/micromamba/envs/hic-scaffolding-nf/'
}
params {
juicerToolsJar = '/mnt/beegfs/labs/DiGenomaLab/Silene/assembly/female/HiC/juicer_tools_1.11.09_jcuda.0.8.jar'
}
}
conda {
process.conda = '$baseDir/conda.yml'
}
}
manifest {
defaultBranch = 'main'
homePage = 'https://github.com/WarrenLab/hic-scaffolding-nf'
author = 'Edward S. Rice'
version = '0.0.1'
}