forked from nf-core/funcscan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_preannotated_cazyme.config
More file actions
37 lines (29 loc) · 1.34 KB
/
test_preannotated_cazyme.config
File metadata and controls
37 lines (29 loc) · 1.34 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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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/funcscan -profile test_preannotated_cazyme,<docker/singularity> --outdir <OUTDIR>
----------------------------------------------------------------------------------------
*/
process {
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '1.h'
]
}
params {
config_profile_name = 'CAZyme test profile - preannotated input'
config_profile_description = 'Minimal test dataset to check CAZyme workflow function'
// Input data
input = params.pipelines_testdata_base_path + 'funcscan/samplesheet_preannotated.csv'
annotation_tool = 'pyrodigal'
run_arg_screening = false
run_amp_screening = false
run_bgc_screening = false
run_cazyme_screening = true
dbcan_skip_cgc = false // CGC annotation enabled as .gff is provided in samplesheet
dbcan_skip_substrate = false // Substrate annotation enabled as .gff is provided in samplesheet
}