You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/phage_curator.h
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,8 @@ class PhageCurator {
50
50
std::vector<std::vector<uint64_t>> BeamSearchPathsAvoiding(uint64_t start, int lower, int higher, const std::set<uint64_t>& forbidden, int beam_width, double min_mult, double max_mult, std::function<void(const std::vector<uint64_t>&)> path_callback = nullptr);
51
51
std::map<std::string,vector<string>> FindQualityPathsBeamSearchFromGroupedPaths(int min_length, int max_length, const std::string& filename, int beam_width);
Copy file name to clipboardExpand all lines: readme.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,32 @@ The tool creates the following directory structure inside the specified output f
130
130
131
131
---
132
132
133
+
### ⚙️ Settings file support
134
+
135
+
Create a simple key=value text file (one setting per line) and pass it with `--settings /path/to/file`.
136
+
137
+
The program reads values from this file unless you override them with CLI flags. If you change the file, run the program again — new values will be used.
138
+
139
+
Example of ```settings.txt``` (must include `input_files`):
-`input_files` accepts one or two paths; entries may be separated by spaces, commas, or semicolons.
155
+
- Terminal values will override the ```settings.txt```. For example for simplicity you can use the ```settings.txt``` file and change only ```-i``` parameter.
0 commit comments