generated from snakemake-workflows/snakemake-workflow-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yaml
69 lines (56 loc) · 2.45 KB
/
config.yaml
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
DEFAULT_SOURCE_FILEPATH: "reads/"
DEFAULT_DEST_FILEPATH: "results/"
RENAMED_READS_FILEPATH: "renamed_raw_reads/"
TRIMMED_READS_FILEPATH: "trimmed/"
FASTQC_FILEPATH: "allfastqc/"
SPADES_FILEPATH: "spades/"
QUAST_FILEPATH: "quast/"
PROKKA_FILEPATH: "prokka/"
BUSCO_FILEPATH: "busco/"
BARRNAP_FILEPATH: "barrnap/"
SAMPLES_TO_COMPARE_FILEPATH: ""
DREP_FILEPATH: "dRep/"
CHECKM_FILEPATH: "checkM/"
ANTISMASH_FILEPATH: "antismash/"
trim_galore:
- "--length 60" #Discard reads that became shorter than INT because of either quality or adapter trimming
- "--trim-n" #Removes Ns from either side of the read.
- "--illumina" #Illumina adapter
fastqc:
- "--quiet" #Supress all progress messages on stdout and only report errors.
spades:
- "--only-assembler" # Runs only assembling (without read error correction)
- "--careful" #Tries to reduce number of mismatches and short indels
prokka:
- "--compliant" # Force Genbank/ENA/DDJB compliance
- "--force"
# Don't use --prefix
busco:
- "-l bacteria_odb10"
- "-f" #Force
barrnap:
- "--kingdom bac" # from bac euk mito arc (default 'bac')
minumun_16s_allowed: 900
dRep:
- "-pa 0.90" #ANI threshold to form primary (MASH) clusters
# Don't use -p (threads) or '-g' (genomes or `compare`)
checkM:
- "--nt -x"
antismash:
- "--cb-general" # Compare identified clusters against a database of antiSMASH-predicted clusters.
- "--cb-knownclusters" # Compare identified clusters against known gene clusters from the MIBiG database.
- "--cb-subclusters" # Compare identified clusters against known subclusters responsible for synthesising precursors.
- "--asf" # Run active site finder analysis.
- "--pfam2go" # Run Pfam to Gene Ontology mapping module.
- "--smcog-trees" # Generate phylogenetic trees of sec. met. cluster orthologous groups.
- "--genefinding-tool none" # Not run genefinding
- "--verbose" # Print verbose status information to stderr.
# No cores and logfile
bigscape:
- "--mix" # Toggle to include an analysis mixing all classes. As BiG-SCAPE needs to calculate an all-vs-all distance network, this might use a lot of memory.
- "-v" # verbose
- "--include_singletons" # Toggle to activate. This will include BGCs that don't have a distance lower than the cutoff distance specified
# - "–mibig" # Use included BGCs from the MIBiG database versions 2.1
ANTISMASH-THREADS: 200
BIGSCAPE-SINGULARITY: "docker://ghcr.io/medema-group/big-scape:master"
ANTISMASH-DOCKER: "antismash/standalone:6.1.1"