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();