-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend from file dist #7
base: master
Are you sure you want to change the base?
Conversation
@@ -117,6 +118,11 @@ int main(int argc, char* argv[]) { | |||
"Recommended value 900s" | |||
" [0 (off)]", | |||
{'c', "checkpoint_interval"}); | |||
args::ValueFlag<std::string> file_name( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use a bit more descriptive name, file_name
makes following code unclear as to what file its dealing with.
@@ -270,6 +276,7 @@ int main(int argc, char* argv[]) { | |||
|
|||
std::vector<unique_ptr<Dataset>> datasets; | |||
agd::Status s; | |||
std::string input_file_name_temp = args::get(input_file_list); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why the temp?
if (is_controller) { | ||
dataset_file_names.push_back(input_file_name_temp); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alright i guess give a more descriptive name without the temp
Feature: Enable clustering of a new set of sequences with pre-clustered sequences. The cluster set of pre-clustered sequences should be passed using the
-f <json_file>
option.