Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
a-frantz committed Dec 15, 2023
1 parent cb1d2f5 commit 9b45316
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/derive/command/endedness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ pub fn derive(args: DeriveEndednessArgs) -> anyhow::Result<()> {
}

// (1.5) Validate the read group information.
let rgs_in_header_not_records = validate_read_group_info(&found_rgs, &header.parsed)
let rgs_in_header_not_records = validate_read_group_info(&found_rgs, &header.parsed);
for rg_id in rgs_in_header_not_records {
ordering_flags.insert(&rg_id, OrderingFlagsCounts::new());
}
Expand All @@ -218,8 +218,7 @@ pub fn derive(args: DeriveEndednessArgs) -> anyhow::Result<()> {
&read_names,
args.paired_deviance.unwrap(),
args.round_rpt,
)
.unwrap();
);

// (3) Print the output to stdout as JSON (more support for different output
// types may be added in the future, but for now, only JSON).
Expand Down

0 comments on commit 9b45316

Please sign in to comment.