-
Notifications
You must be signed in to change notification settings - Fork 311
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix BAM/SAM header setting when writing on cluster #691
Conversation
test failure should be fixed. Jenkins, retest this please? |
Jenkins, retest this please |
@@ -68,7 +68,7 @@ class IlluminaOptics(val tile: Long, val x: Long, val y: Long) {} | |||
|
|||
class RichAlignmentRecord(val record: AlignmentRecord) { | |||
|
|||
lazy val referenceLength: Int = RichAlignmentRecord.referenceLengthFromCigar(record.getCigar.toString) | |||
lazy val referenceLength: Int = RichAlignmentRecord.referenceLengthFromCigar(record.getCigar) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for getting these; we've got several redundant toString
s hanging around from the pre-bdg-formats/36 merged.
fixes bigdatagenomics#676 - formatting / unnecessary `.toString` nits - one more header fix - whitespace nits
2fd9af3
to
57447f8
Compare
rebased and squashed |
Jenkins, retest this please. |
|
Jenkins, retest this please. @ryan-williams that's a known issue in the Jenkins Github Pull Request Builder plugin. It occasionally fails to check out the PR after a force push to the branch. |
ah, good to know! I'll try to hold off the force-push-squash until after I've gotten a green build in the future. |
Jenkins, retest this please. |
fix BAM/SAM header setting when writing on cluster
Merged! Thanks @ryan-williams! |
nice! thank you, @fnothaft! |
fixes #676