Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Paururo authored Nov 16, 2024
1 parent 81a28f7 commit 09f0f11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ struct VariablePositionInfo {
/// Step 1: Identify variable positions and extract individual genotypes
fn identify_variable_positions(
input_filename: &str,
system: &Arc<Mutex<System>>,
_system: &Arc<Mutex<System>>,
include_gaps: bool,
) -> io::Result<(Vec<VariablePositionInfo>, usize, Vec<String>)> {
// Open the input FASTA file
let input_file = File::open(input_filename)?;
let reader = BufReader::with_capacity(16 * 1024 * 1024, input_file);
let mut fasta_reader = fasta::Reader::new(reader);
let fasta_reader = fasta::Reader::new(reader);

// Read all sequences and store names and sequences
let mut sequences = Vec::new();
Expand Down

0 comments on commit 09f0f11

Please sign in to comment.