Skip to content

Commit

Permalink
prep for 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Aug 5, 2024
1 parent 35242b3 commit 2beca33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oarfish"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = [
"Zahra Zare Jousheghani <[email protected]>",
Expand Down
9 changes: 4 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ use std::num::NonZeroUsize;
use anyhow::Context;
use arrow2::{array::Float64Array, chunk::Chunk, datatypes::Field};

use std::{
fs::File,
io::{self, BufReader},
path::PathBuf,
};
use std::{fs::File, io, path::PathBuf};

use num_format::{Locale, ToFormattedString};
use serde::Serialize;
Expand Down Expand Up @@ -301,6 +297,9 @@ fn main() -> anyhow::Result<()> {
// print discard table information in which the user might be interested.
info!("\ndiscard_table: \n{}\n", store.discard_table.to_table());

// no longer need the reader
drop(reader);

// if we are using the KDE, create that here.
let kde_opt: Option<kders::kde::KDEModel> = if args.use_kde {
Some(kde_utils::get_kde_model(&txps, &store)?)
Expand Down

0 comments on commit 2beca33

Please sign in to comment.