forked from junglee0713/16S_QIIME2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqiime2_config.yml
46 lines (38 loc) · 1.85 KB
/
qiime2_config.yml
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
all:
project_dir: "/scr1/users/path/to/project"
mux_dir: "multiplexed_fastq"
mapping: "mapping_table.tsv"
#try revcomp if you are getting 0 reads when demultiplexing
demux:
mismatch: 0
revcomp: true
#~240 for V1V2, ~280 for V3V4
denoise:
trim_left_f: 0
trunc_len_f: 240
trim_left_r: 0
trunc_len_r: 240
filter_taxa: "" # e.g. g__Cutibacterium, g__Anoxybacillus, f__Comamonadaceae, g__Acidovorax, g__Ralstonia
#threads are now specificed in config.yaml
taxonomy:
classifier_fp: "/mnt/isilon/microbiome/analysis/biodata/silva/silva_138/silva-138-99-nb-classifier.qza"
diversity:
sampling_depth: 1000
#100 is just for testing, recommend change to 1000
unassign:
unassigner_species_fp: "/mnt/isilon/microbiome/analysis/biodata/unassigner/unassigner_species.fasta"
dada2:
rscript: "/mnt/isilon/microbiome/analysis/biodata/dada2/dada2.R"
species_training_set: "/mnt/isilon/microbiome/analysis/biodata/dada2/rdp_species_assignment_18.fa.gz"
#if you want to use SILVA:
#species_training_set: "/mnt/isilon/microbiome/analysis/biodata/dada2/silva_species_assignment_v138.1.fa.gz"
vsearch:
db: "/mnt/isilon/microbiome/analysis/biodata/green_genes/current_gg16S.fasta"
min_id: 0.97 #minimum identity for query-target match
weak_id: 0.97 #set lower than min-id and you will get some weaker matches too
userfields: "query+target+id2+alnlen+mism+gaps+qilo+qihi+tilo+tihi+qs+ts+qrow+trow" #fields for results file, see vsearch documentation for details
iddef: 2 #the way "identity" is calculated, see vsearch docs for details (it's equal to (matching columns) / (alignment length) excluding terminal gaps)
fasta_width: 0 #Width of alignment lines in fasta output, set to 0 to eliminate wrapping
maxaccepts: 1 #Maximum number of hits to accept before stopping the search Default is 1
# picrust:
# threads: 8