Skip to content

Commit

Permalink
chore: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed Dec 28, 2023
1 parent ee77abd commit 65c4935
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/derive/junction_annotation/compute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ mod tests {
assert_eq!(results.records.low_mapq, 0);
assert_eq!(results.records.missing_mapq, 0);

// Test partial novel junction (again for more read supprt)
// Test partial novel junction (again for more read support)
let mut record = Record::default();
let r3_name: ReadName = "partial2".parse().unwrap();
*record.read_name_mut() = Some(r3_name);
Expand Down Expand Up @@ -651,7 +651,7 @@ mod tests {
assert_eq!(results.records.low_mapq, 0);
assert_eq!(results.records.missing_mapq, 0);

// Test complete novel junction (again for more read supprt)
// Test complete novel junction (again for more read support)
let mut record = Record::default();
let r6_name: ReadName = "novel2".parse().unwrap();
*record.read_name_mut() = Some(r6_name);
Expand Down Expand Up @@ -795,7 +795,7 @@ mod tests {
assert_eq!(results.records.low_mapq, 1);
assert_eq!(results.records.missing_mapq, 1);

// Test unannoted reference (again for more read supprt)
// Test unannoted reference (again for more read support)
let mut record = Record::default();
let r11_name: ReadName = "unannotated2".parse().unwrap();
*record.read_name_mut() = Some(r11_name);
Expand Down

0 comments on commit 65c4935

Please sign in to comment.