-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnextflow.config
86 lines (68 loc) · 1.68 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
//process.container = 'clairemcwhite/cfmsflow:latest'
docker {
enabled = true
temp = 'auto'
fixOwnership = true
}
process {
container = 'clairemcwhite/cfmsflow:latest'
cpus = 16
memory = "10G"
//errorStrategy = { task.attempt <= 2 ? "retry" : "finish" }
//maxRetries = 1
}
params {
/// Default parameter values
params_description = "lib/params/parameters.settings.json"
entrypoint=""
exitpoint=""
using_existing_goldstandards=false
help=false
version=false
output_dir="output"
output_json=false
make_parameter_json = false
expose_docker_paths = false
tpot_template = 'Selector-Classifier'
postrain = ""
postest = ""
negtrain = ""
negtest = ""
traincomplexgroups = ""
input_elution_pattern = ""
input_elution_file = ""
input_features_pattern = ""
input_features_file = ""
existing_feature_matrix = ""
existing_labeled_feature_matrix= ""
goldstandard_complexes = ""
merge_threshold = ""
complex_size_threshold = ""
negatives_from_observed = ""
negative_limit = ""
added_poisson_reps = ""
classifiers_to_scan = ""
generations = ""
population = ""
n_jobs = ""
max_features_to_select = ""
annotation_file = ""
walktrap_steps = ""
plot_pr = ""
fdr_cutoff = ""
}
// Copied from MLST
params.info_dir = ".default_hidden"
params.pipeline_info = "${params.info_dir}/pipeline_info"
timeline {
enabled = true
file = "${params.pipeline_info}/execution_timeline.html"
}
report {
enabled = true
file = "${params.pipeline_info}/execution_report.html"
}
dag {
enabled = true
file = "${params.pipeline_info}/pipeline_dag.pdf"
}