From 09f0f1121d7121c04df3992541a964c9574adf35 Mon Sep 17 00:00:00 2001 From: Paula Ruiz Rodriguez <50167687+Paururo@users.noreply.github.com> Date: Sat, 16 Nov 2024 09:39:42 +0100 Subject: [PATCH] fix warnings --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 6882858..a03dbb4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -134,13 +134,13 @@ struct VariablePositionInfo { /// Step 1: Identify variable positions and extract individual genotypes fn identify_variable_positions( input_filename: &str, - system: &Arc>, + _system: &Arc>, include_gaps: bool, ) -> io::Result<(Vec, usize, Vec)> { // 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();