Skip to content

Commit

Permalink
chore: fixes a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
claymcleod committed Mar 24, 2023
1 parent 334ceed commit 7ee66b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/convert/bam.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub async fn to_cram_async(
let mut counter = RecordCounter::new();
let mut record = Record::default();

// (6) Write each record in the BAM file to the SAM file.
// (6) Write each record in the BAM file to the CRAM file.
info!("Writing records to CRAM file.");
while reader.read_record(&mut record).await? != 0 {
let cram_record = cram::Record::try_from_alignment_record(&header.parsed, &record)?;
Expand Down

0 comments on commit 7ee66b4

Please sign in to comment.