Skip to content

Commit f8ab824

Browse files
committed
fix clippy
1 parent 23920a5 commit f8ab824

File tree

8 files changed

+7
-10
lines changed

8 files changed

+7
-10
lines changed

fg-stitch-lib/src/align/aligners/constants.rs

-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ pub const DEFAULT_ALIGNER_CAPACITY: usize = 200;
1616
/// value associated with the clipping operations are the lengths clipped. In case
1717
/// of standard modes like Global, Semi-Global and Local alignment, the clip operations
1818
/// are filtered out.
19-
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
2019
#[derive(Eq, PartialEq, Debug, Copy, Clone, Hash)]
2120
pub enum AlignmentOperation {
2221
Match, // Consumes one x and one y base
@@ -93,7 +92,6 @@ impl AlignmentOperation {
9392
/// appropriately set.
9493
///
9594
/// The default alignment mode is Global.
96-
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
9795
#[derive(Default, Debug, PartialEq, Eq, Copy, Clone)]
9896
pub enum AlignmentMode {
9997
/// Aligns a sub-sequence of the read versus a sub-sequence of the reference

fg-stitch-lib/src/align/aligners/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ fn header_to_name(header: &[u8]) -> Result<String> {
618618
.context("empty read name")
619619
}
620620

621-
impl<'a, F: MatchFunc> SamRecordFormatter<'a, F> {
621+
impl<F: MatchFunc> SamRecordFormatter<'_, F> {
622622
pub fn format(
623623
&self,
624624
fastq: &FastxOwnedRecord,

fg-stitch-lib/src/align/aligners/single_contig_aligner.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// This file may not be copied, modified, or distributed
66
// except according to those terms.
77

8-
use std::{cmp::max, i32, iter::repeat};
8+
use std::{cmp::max, iter::repeat};
99

1010
use crate::align::{aligners::constants::AlignmentMode, scoring::Scoring, traceback::TB_XJUMP};
1111
use bio::{

fg-stitch-lib/src/align/alignment.rs

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use crate::align::aligners::constants::{
1212
/// lengths of sequences x and y, and the alignment edit operations. The start position
1313
/// and end position of the alignment does not include the clipped regions. The length
1414
/// of clipped regions are already encapsulated in the Alignment Operation.
15-
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
1615
#[derive(Debug, Eq, PartialEq, Clone, Default)]
1716
pub struct Alignment {
1817
// FIXME: rename to Alignment

fg-stitch-lib/src/align/io.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub struct InputMessage {
106106
/// The output result of a single pairwise alignment as a triple:
107107
/// 1. the FASTQ record that was aligned
108108
/// 2. None if no alignment was found, otherwise some tuple of pairwise alignment and the target
109-
/// strand to which the alignment was made.
109+
/// strand to which the alignment was made.
110110
/// 3. The alignment score, if aligned.
111111
pub type OutputResult = (FastxOwnedRecord, Vec<Alignment>, Option<i32>);
112112

fg-stitch-lib/src/align/traceback/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ pub mod packed_length_cell;
6060
pub mod simple_cell;
6161

6262
cfg_if::cfg_if! {
63-
if #[cfg(low_mem)] {
63+
if #[cfg(feature = "low_mem")] {
6464
pub type Cell = simple_cell::SimpleCell;
6565
} else {
6666
pub type Cell = packed_length_cell::PackedLengthCell;

fg-stitch-lib/src/align/traceback/packed_length_cell.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ use super::{SValue, TracebackCell};
1515
/// - bits 0-3 are reserved for *_POS
1616
/// - bits 4-31 are reserved for alignment length (27 bits each)
1717
/// - bit 31 for each of s/i/d is reserved for the upper 3-bits of the jump contig index (i.e. which contig did we jump from)
18-
/// The `aux` field is packed as follows:
18+
/// The `aux` field is packed as follows:
1919
/// - bits 0-4 are for the lower 5-bits of the jump contig index (i.e. which contig did we jump from)
2020
/// - bits 5-31 are for the "from" jump index in the contig (i.e. where in the given contig did we jump from)
21-
/// Also contains s_from (u32), so we have a totoal of u32 * 4 = 128 bits
21+
/// Also contains s_from (u32), so we have a totoal of u32 * 4 = 128 bits
2222
#[derive(
2323
Default, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Serialize, Deserialize,
2424
)]

fg-stitch-lib/src/align/traceback/simple_cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use serde::{Deserialize, Serialize};
1515
/// - bits 4-7 are for deletion traceback (D_POS)
1616
/// - bits 8-11 are for S matrix traceback (S_POS)
1717
/// - bit 12-15 are for the upper 4-bits of the jump contig index (i.e. which contig did we jump from)
18-
/// The `aux` field is packed as follows:
18+
/// The `aux` field is packed as follows:
1919
/// - bits 0-3 are for the lower 4-bits of the jump contig index (i.e. which contig did we jump from)
2020
/// - bits 4-31 are for the "from" jump index in the contig (i.e. where in the given contig did we jump from)
2121
#[derive(

0 commit comments

Comments
 (0)