-
Notifications
You must be signed in to change notification settings - Fork 2
/
database_creation.json
61 lines (60 loc) · 1.42 KB
/
database_creation.json
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
{
"sample": "testproject02",
"ressources": {
"threads": 28,
"megahit_memory": 0.9,
"metaspades_memory": 230
},
"preprocessing": {
"run_trimmomatic": {
"mode": "PE",
"illuminaclip": "/data/miniconda3/envs/mpies/share/trimmomatic/adapters/TruSeq3-PE.fa:2:30:10",
"leading": 3,
"trailing": 3,
"slidingwindow": "4:15",
"minlen": 36
}
},
"assembled": {
"run_assembly": true,
"assembler": "megahit",
"run_megahit": {
"klist": "21,33,55,77,99,127"
},
"run_genecalling": true,
"prodigal": {
"mode": "meta"
}
},
"unassembled": {
"run_fraggenescan": {
"train_file": "illumina_1"
}
},
"otu_table": {
"run_singlem": false,
"generate_otu_table": {
"mode": "pipe"
},
"obtain_tax_list": {
"mode": "parse_singlem",
"cutoff": 1
},
"obtain_proteome": {
"mode": "amplicon"
}
},
"functional_subset": {
"toml_file": "functional_subset.toml",
"mode": "function_subset"
},
"postprocessing": {
"remove_short_sequences": {
"min_length": 30
},
"hash_headers": {
"mode": "hashing",
"hash_type": "md5"
}
}
}