-
-
Notifications
You must be signed in to change notification settings - Fork 67
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
Add an option to skip the mate cigar in EstimateRnaSeqInsertSize #871
base: main
Are you sure you want to change the base?
Conversation
(includeDuplicates || !rec.duplicate) && // no duplicates, unless specified | ||
rec.mapped && rec.mateMapped && // both ends of a pair are mapped | ||
rec.refIndex == rec.mateRefIndex && // both ends of a pair map to the same contig | ||
(!skipMissingMateCigar || rec.mateCigar.isDefined) // skip records with missing mate cigars if specified |
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.
moved filters out of the old "htsjdk" filter style, so this could use a double-check
Codecov Report
@@ Coverage Diff @@
## main #871 +/- ##
==========================================
+ Coverage 95.66% 95.68% +0.02%
==========================================
Files 125 125
Lines 7239 7229 -10
Branches 507 481 -26
==========================================
- Hits 6925 6917 -8
+ Misses 314 312 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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.
LGTM, thanks @nh13
src/main/scala/com/fulcrumgenomics/rnaseq/EstimateRnaSeqInsertSize.scala
Outdated
Show resolved
Hide resolved
…Size.scala Co-authored-by: Nathan Roach <[email protected]>
No description provided.