forked from nf-core/bacass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_dfast.config
32 lines (26 loc) · 1.08 KB
/
test_dfast.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
/*
========================================================================================
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/bacass -profile test_dfast,<docker/singularity>
----------------------------------------------------------------------------------------
*/
params {
config_profile_name = 'Test_dfast profile'
config_profile_description = 'Minimal test dataset to check pipeline function'
// Limit resources so that this can run on GitHub Actions
max_cpus = 2
max_memory = 6.GB
max_time = 6.h
// Input data
input = params.pipelines_testdata_base_path + 'bacass/bacass_short.tsv'
// some extra args to speed tests up
unicycler_args = "--no_correct --no_pilon"
annotation_tool = 'dfast'
assembly_type = 'short'
skip_pycoqc = true
skip_kraken2 = true
skip_kmerfinder = true
}