Skip to content

Commit

Permalink
Fix typo in filter flag name
Browse files Browse the repository at this point in the history
  • Loading branch information
kimrutherford committed Oct 31, 2024
1 parent 4cd3d65 commit 00a4d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/pombase-chado-json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
let connection_string = matches.opt_str("p").unwrap();
let maybe_uniprot_file = matches.opt_str("uniprot-data-file");
let filter_uniprot_references: Vec<_> =
matches.opt_str("filter-uniprot-referencesfilter-references")
matches.opt_str("filter-uniprot-references")
.unwrap_or_default()
.trim()
.split(",")
Expand Down

0 comments on commit 00a4d1d

Please sign in to comment.