forked from nf-core/multiplesequencealign
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.config
More file actions
40 lines (34 loc) · 1.3 KB
/
test.config
File metadata and controls
40 lines (34 loc) · 1.3 KB
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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Nextflow config file for running minimal tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Defines input files and everything required to run a fast and simple pipeline test.
Use as follows:
nextflow run nf-core/multiplesequencealign -profile test,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '1.h'
]
}
params {
config_profile_name = 'Test profile'
config_profile_description = 'Minimal test dataset to check pipeline function'
skip_stats = false
calc_sim = true
calc_seq_stats = true
extract_plddt = true
skip_eval = false
calc_sp = true
calc_tc = true
calc_irmsd = true
calc_gaps = true
calc_tcs = true
build_consensus = true
// Input data
input = params.pipelines_testdata_base_path + 'multiplesequencealign/samplesheet/v1.1/samplesheet_test_af2.csv'
tools = params.pipelines_testdata_base_path + 'multiplesequencealign/toolsheet/v1.1/toolsheet_full.csv'
}