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
@@ -1155,7 +1155,9 @@ pub fn nextclade_check_column_config_args(run_args: &NextcladeRunArgs) -> Result
1155
1155
} = &run_args.outputs;
1156
1156
1157
1157
if !output_columns_selection.is_empty() && [output_all, output_csv, output_tsv].iter().all(|arg| arg.is_none()){
1158
-
returnmake_error!("The `--output-columns-selection` argument configures column-based output formats and can only be used when one or more of the column-based file outputs is requested, i.e. together with one or multiple of `--output-all`, `--output-csv`, `--output-tsv`.");
1158
+
returnmake_error!(
1159
+
"The `--output-columns-selection` argument configures column-based output formats and can only be used when one or more of the column-based file outputs is requested, i.e. together with one or multiple of `--output-all`, `--output-csv`, `--output-tsv`."
let suggestions_msg = format_suggestions(dataset.tags(), tag);
80
80
make_error!(
81
-
"Dataset '{name}' is found, but requested version tag for it not found: '{tag}'.{suggestions_msg}\n\nType `nextclade dataset list --name='{name}'` to show available version tags for this dataset or use --tag='latest' or omit the --tag argument to use the latest version tag.",
82
-
)
81
+
"Dataset '{name}' is found, but requested version tag for it not found: '{tag}'.{suggestions_msg}\n\nType `nextclade dataset list --name='{name}'` to show available version tags for this dataset or use --tag='latest' or omit the --tag argument to use the latest version tag.",
make_error!("No compatible reference minimizer index data is found for this dataset sever. Cannot proceed. \n\nThis version of Nextclade supports index versions up to '{}', but the server has {}.\n\nTry to to upgrade Nextclade to the latest version and/or contact dataset server maintainers.",MINIMIZER_INDEX_ALGO_VERSION, server_versions)
77
+
make_error!(
78
+
"No compatible reference minimizer index data is found for this dataset sever. Cannot proceed. \n\nThis version of Nextclade supports index versions up to '{}', but the server has {}.\n\nTry to to upgrade Nextclade to the latest version and/or contact dataset server maintainers.",
Copy file name to clipboardExpand all lines: packages/nextclade-cli/src/cli/print_help_markdown.rs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,11 @@ If you have Nextclade CLI installed, you can type `nextclade --help` to read the
18
18
"#,
19
19
)?;
20
20
21
-
let help = replace(&help,"Nextclade is a part of Nextstrain: https://nextstrain.org\n\nDocumentation: https://docs.nextstrain.org/projects/nextclade\nNextclade Web: https://clades.nextstrain.org\nPublication: https://doi.org/10.21105/joss.03773","Nextclade is a part of Nextstrain: [https://nextstrain.org](https://nextstrain.org)\n\nDocumentation: [https://docs.nextstrain.org/projects/nextclade](https://docs.nextstrain.org/projects/nextclade)\n\nNextclade Web: [https://clades.nextstrain.org](https://clades.nextstrain.org)\n\nPublication: [https://doi.org/10.21105/joss.03773](https://doi.org/10.21105/joss.03773)")?;
21
+
let help = replace(
22
+
&help,
23
+
"Nextclade is a part of Nextstrain: https://nextstrain.org\n\nDocumentation: https://docs.nextstrain.org/projects/nextclade\nNextclade Web: https://clades.nextstrain.org\nPublication: https://doi.org/10.21105/joss.03773",
24
+
"Nextclade is a part of Nextstrain: [https://nextstrain.org](https://nextstrain.org)\n\nDocumentation: [https://docs.nextstrain.org/projects/nextclade](https://docs.nextstrain.org/projects/nextclade)\n\nNextclade Web: [https://clades.nextstrain.org](https://clades.nextstrain.org)\n\nPublication: [https://doi.org/10.21105/joss.03773](https://doi.org/10.21105/joss.03773)",
25
+
)?;
22
26
23
27
let help = replace(&help,"(.*)— REMOVED(.*)","")?;
24
28
let help = replace(&help,"(.*)— RENAMED(.*)","")?;
warn!("When reading dataset: {}\nThis is not an error. Nextclade ignores unknown file declarations and undeclared files. But this could be a mistake by the dataset author. For example, there could be a typo in pathogen.json file declaration, or a file could have been added to the dataset, but not declared in the pathogen.json. In this case, Nextclade analysis could be missing some of the features intended by the author. Contact the author to resolve this. It could also be that the dataset contains files for a newer version of Nextclade, and that the currently used version does not recognize these files. In which case try to upgrade Nextclade.", warnings.join("\n"));
220
+
warn!(
221
+
"When reading dataset: {}\nThis is not an error. Nextclade ignores unknown file declarations and undeclared files. But this could be a mistake by the dataset author. For example, there could be a typo in pathogen.json file declaration, or a file could have been added to the dataset, but not declared in the pathogen.json. In this case, Nextclade analysis could be missing some of the features intended by the author. Contact the author to resolve this. It could also be that the dataset contains files for a newer version of Nextclade, and that the currently used version does not recognize these files. In which case try to upgrade Nextclade.",
0 commit comments