-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparams.config
More file actions
88 lines (58 loc) · 1.9 KB
/
Copy pathparams.config
File metadata and controls
88 lines (58 loc) · 1.9 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
76
77
78
79
80
81
82
83
84
85
86
87
/*
* Defines default parameters
* To change any of these parameters, include the variable in your command with 2 dashes "--"
* nextflow run main_AMR++.nf -profile singularity --reads "/path/to/other/reads/*_R{1,2}.fastq.gz"
*/
params {
/* Display help message */
help = false
/* Location of forward and reverse read pairs */
reads = "${baseDir}/data/raw/*_R{1,2}.fastq.gz"
/* Optional input for bam files for use with "--pipeline bam_resistome"
bam_files = null
/* Location of reference/host genome */
reference = "${baseDir}/data/host/chr21.fasta.gz"
/* Output directory */
output = "test_results"
/* Kraken database location, default is "null" */
kraken_db = null
/* Location of amr index files */
amr_index = ""
/* Location of antimicrobial resistance (MEGARes) database */
amr = "${baseDir}/data/amr/megares_database_v3.00.fasta"
/* Location of amr annotation file */
annotation = "${baseDir}/data/amr/megares_annotations_v3.00.csv"
/* Add SNP analysis */
snp = "N"
/* Add deduplicaation analysis */
deduped = "N"
prefix = "AMR"
/* Number of threads */
threads = 4
/* Trimmomatic trimming parameters */
adapters = "${baseDir}/data/adapters/nextera.fa"
leading = 3
trailing = 3
slidingwindow = "4:15"
minlen = 36
/* Resistome threshold */
threshold = 80
/* Starting rarefaction level */
min = 5
/* Ending rarefaction level */
max = 100
/* Number of levels to skip */
skip = 5
/* Number of iterations to sample at */
samples = 1
/* multiQC */
multiqc = "$baseDir/data/multiqc"
/* Qiime2 */
/* Dada parameters */
p_trim_left_f = 25
p_trim_left_r = 26
p_trunc_len_f = 225
p_trunc_len_r = 220
/* qiime2 bayes classifier */
dada2_db = "$baseDir/data/qiime/silva-138-99-515-806-nb-classifier.qza"
}