Skip to content

Commit

Permalink
2024/09/28-11:22:34 (Linux cray unknown)
Browse files Browse the repository at this point in the history
  • Loading branch information
pbenner committed Sep 28, 2024
1 parent f8a3689 commit 6bc008c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bam_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package gonetics

/* -------------------------------------------------------------------------- */

//import "fmt"
import "fmt"
import "testing"

/* -------------------------------------------------------------------------- */
Expand Down
2 changes: 1 addition & 1 deletion granges_bam.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func (granges *GRanges) ReadBamSingleEnd(r io.Reader, args... interface{}) error
cigar = append(cigar, block.Cigar.String())
}
if options.ReadQual {
qual = append(qual, string(block.Qual))
qual = append(qual, block.Qual.String())
}
}
*granges = NewGRanges(seqnames, from, to, strand)
Expand Down

0 comments on commit 6bc008c

Please sign in to comment.