-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathtest_falcobbduk.config
More file actions
75 lines (69 loc) · 3.05 KB
/
test_falcobbduk.config
File metadata and controls
75 lines (69 loc) · 3.05 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
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
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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/taxprofiler -profile test_falcobbduk,<docker/singularity> --outdir <OUTDIR>
---------------------------------------------------------------------------------------------------------
*/
process {
// Limit resources so that this can run on GitHub Actions
resourceLimits = [
cpus: 4,
memory: '15.GB',
time: '6.h',
]
}
params {
config_profile_name = 'Test profile for falco and bbduk'
config_profile_description = "Minimal test to falco and bbduk functionality in the short-read preprocessing steps"
// Input data
input = params.pipelines_testdata_base_path + 'taxprofiler/samplesheet_shortreadfastqpairsonly.csv'
databases = params.pipelines_testdata_base_path + 'taxprofiler/database_v1.3.csv'
preprocessing_qc_tool = 'falco'
perform_shortread_qc = true
perform_longread_qc = false
perform_shortread_complexityfilter = true
shortread_complexityfilter_tool = 'bbduk'
save_complexityfiltered_reads = true
perform_shortread_hostremoval = true
perform_longread_hostremoval = false
perform_runmerging = true
hostremoval_reference = params.pipelines_testdata_base_path + 'modules/data/genomics/homo_sapiens/genome/genome.fasta'
run_kaiju = true
run_kraken2 = true
run_bracken = false
run_malt = false
run_metaphlan = false
run_centrifuge = false
run_diamond = false
run_krakenuniq = false
run_motus = false
run_ganon = false
run_kmcp = false
run_sylph = false
run_melon = false
}
process {
withName: MALT_RUN {
tag = { "${meta.db_name}|${meta.id}" }
maxForks = 1
ext.args = { "${meta.db_params} -m ${params.malt_mode} -J-Xmx12G" }
ext.prefix = { "${meta.db_name}" }
publishDir = [
path: { "${params.outdir}/malt/${meta.db_name}/" },
mode: params.publish_dir_mode,
pattern: '*.{rma6,log,sam}',
]
}
withName: NONPAREIL_NONPAREIL {
ext.args = { "-k 5" }
ext.prefix = { "${meta.id}_${meta.run_accession}" }
publishDir = [
path: { "${params.outdir}/nonpareil/" },
mode: params.publish_dir_mode,
pattern: '*.np{a,c,l,o}',
]
}
}