-
Notifications
You must be signed in to change notification settings - Fork 13
/
nextflow.config
85 lines (77 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// import profiles and workflow SHA from core
includeConfig "base.config"
// define workflow params
params {
help = false
version = false
aws_image_prefix = null
aws_queue = null
disable_ping = false
monochrome_logs = false
validate_params = true
show_hidden_params = false
schema_ignore_params = 'show_hidden_params,validate_params,monochrome_logs,aws_queue,aws_image_prefix,wf'
// I/O
input = null
ref = null
out_dir = "output"
sample_name = "SAMPLE"
// basecalling
experimental = false
/// common
basecaller_chunk_size = 25
basecaller_cfg = null
basecaller_args = null
basecaller_basemod_threads = 2
duplex = false
cuda_device = "cuda:all"
ubam_map_threads = 8
ubam_sort_threads = 3
ubam_bam2fq_threads = 1
merge_threads = 4
stats_threads = 4
basecaller_model_path = null
remora_model_path = null
qscore_filter = 10
/// dorado
remora_cfg = null
dorado_ext = "pod5"
poly_a_config = null
/// bonito
use_bonito = false
bonito_cfg = 'dna_r10.4.1_e8.2_400bps_trns@v5.0.alpha'
/// wf-basecalling
output_fmt = "cram"
output_pod5 = false
// demuxing
barcode_kit = null
demux_args = null
/// Stream input
watch_path = false
read_limit = null
// Create IGV configuration
igv = false
wf {
example_cmd = [
"--basecaller_cfg 'dna_r10.4.1_e8.2_400bps_hac@v4.1.0'",
"--dorado_ext 'pod5'",
"--input 'wf-basecalling-demo/input'",
"--ref 'wf-basecalling-demo/GCA_000001405.15_GRCh38_no_alt_analysis_set.fasta'",
"--remora_cfg 'dna_r10.4.1_e8.2_400bps_hac@v4.1.0_5mCG_5hmCG@v2'",
]
agent = null
}
}
manifest {
name = 'epi2me-labs/wf-basecalling'
author = 'Oxford Nanopore Technologies'
homePage = 'https://github.com/epi2me-labs/wf-basecalling'
description = 'Helper workflow for basecalling ONT reads.'
mainScript = 'main.nf'
nextflowVersion = '>=23.04.2'
version = '1.4.2'
}
epi2melabs {
tags = "basecalling,utility"
icon = "faTty"
}