Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonVandeVyver committed Oct 14, 2024
1 parent c09b61a commit 8d72316
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions sa-builder/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@ fn main() {
eprintln!();
eprintln!("📋 Started loading the proteins...");
let start_proteins_time = get_time_ms().unwrap();
/*let mut data = Proteins::try_from_database_file_uncompressed(&database_file)
.unwrap_or_else(|err| eprint_and_exit(err.to_string().as_str()));*/
let mut data = fs::read_to_string(database_file).expect("Data file does not exist").into_bytes();
let mut data = Proteins::try_from_database_file_uncompressed(&database_file)
.unwrap_or_else(|err| eprint_and_exit(err.to_string().as_str()));
eprintln!(
"✅ Successfully loaded the proteins in {} seconds!",
(get_time_ms().unwrap() - start_proteins_time) / 1000.0
Expand Down

0 comments on commit 8d72316

Please sign in to comment.