@@ -77,40 +77,52 @@ python syntracker.py -out SynTracker_output/ -mode continue
77
77
### A description of all SynTracker's possible command line arguments:
78
78
79
79
```
80
- python syntracker.py [-h] [-target target_directory_path] [-ref ref_directory_path] [-out output_directory_path]
81
- [-metadata metadata_file] [-mode 'new'/'continue'] [-cores number_of_cores]
82
- [-length region_length][--identity blast_identity] [--coverage blast_coverage]
83
- [--save_intermediate] [--set_seed integer_for_seed]
80
+ python syntracker.py [-h] [-target target_directory_path] [-ref ref_directory_path]
81
+ [-out output_directory_path] [-metadata metadata_file]
82
+ [-mode 'new'/'continue'] [-cores number_of_cores] [-length region_length]
83
+ [--identity blast_identity] [--coverage blast_coverage]
84
+ [--save_intermediate] [--no_seed]
84
85
85
86
options:
86
87
-h, --help show this help message and exit
88
+
87
89
-target [target_directory_path]
88
90
Path of the target directory which contains metagenome assemblies or genomes
91
+
89
92
-ref [ref_directory_path]
90
93
Path of the references folder containing the reference genomes
94
+
91
95
-out [output_directory_path]
92
96
The path to the output directory . When running in 'new' mode (the default), this argument is optional. By
93
97
default a folder named 'Syntracker_output/' will be created under the current directory (if the given path
94
98
already exists, it will be written over). When running in 'continue' mode, it is mandatory to provide the
95
99
path to the output directory of the run that is requested to be continued.
100
+
96
101
-metadata [metadata_file]
97
102
Path to a metadata file (optional). The file should be in CSV format and must include the sample ID.
103
+
98
104
-mode ['new'/'continue']
99
105
The running mode: 'new' or 'continue' (default='new') (Start a new run or continue a previous run that has been terminated).
106
+
100
107
-cores [number_of_cores]
101
108
The number of cores to use for the multi-processed stages of the calculation.
102
109
(Optional, by default SynTracker uses the maximal number of available cores).
110
+
103
111
-length [region_length]
104
112
The length of the compared region. (Optional, default=5000)
113
+
105
114
--identity [blast_identity]
106
115
Minimal blast identity (optional, default=97)
116
+
107
117
--coverage [blast_coverage]
108
118
Minimal blast coverage (optional, default=70)
119
+
109
120
--save_intermediate
110
121
Saves R intermediate data structures for debugging purposes (by default, they are not saved).
111
- --set_seed [integer_for_seed]
112
- An integer number to set the seed for subsampling of n regions per pairwise (by default, the seed is 1).
113
- --no_seed Set no seed for the subsampling of n regions per pairwise (by default, seed=1 is set).
122
+
123
+ --no_seed Set no seed for the subsampling of n regions per pairwise (optional).
124
+ This means that the average synteny scores may change between SynTracker runs due to the subsampling.
125
+ By default, a seed=1 is set to enable reproducibility between different runs.
114
126
```
115
127
116
128
## Output
0 commit comments