-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfiguration_example.yml
More file actions
62 lines (47 loc) · 1.92 KB
/
configuration_example.yml
File metadata and controls
62 lines (47 loc) · 1.92 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
# YAML Configuration Filename: configuration.yml
input_parameters:
# List of NCBI accession numbers.
accession_numbers:
- NC_055061.1
- JX869059.2
# Path to the local directory where the genome files (in FASTA or GenBank format) are stored.
genomes_path: "C:/Users/username/Project/Genomes"
# Type of execution: "parallel" to run tasks concurrently, "serial" to run tasks sequentially.
execution_type: "parallel"
output_parameters:
# Name of the output file name (without extension).
output_file_name: "phylo_results"
operational_parameters:
# Directory where temporary files and intermediate results will be stored during execution.
working_path: "C:/Users/username/Project/WorkingDirectory"
# Whether to delete the contents of the working directory after the run.
# Set to true to keep the folder clean.
erase_working_folder: True
algorithm_parameters:
# Distance formula used in the GBDP calculation.
# Common options: "d0", "d4" or "d6".
distance_formula: "d6"
# Number of bootstrap replicates to perform for tree support values.
# Set to 0 to skip bootstrapping.
bootstrap_replicates: 0
tree_parameters:
# Whether to generate a phylogenetic tree from the distance matrix.
generate_tree: True
# Whether to root the resulting phylogenetic tree.
root_tree: False
# Whether to use accession numbers as leaf names in the tree.
# If false, genome names will be used.
accession_name: False
# Whether to generate a graphical image of the tree (PNG).
generate_image: False
BLAST_parameters:
# E-value threshold for BLAST hits.
e_value: 0.001
# Word size for BLAST alignment.
# Recomendation: 3 for nucleotides.
word_size: 3
# Set to 0 to disable filtering by positives; 1 to activate.
positives: 0
entrez_parameters:
# Email address used for Entrez queries (required by NCBI).
user_email: "user@example.com"