Home
last modified time | relevance | path

Searched refs:isSecondOfPair (Results 1 – 13 of 13) sorted by relevance

/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/spark/sv/evidence/
H A DTemplateFragmentOrdinal.java57 return read.isSecondOfPair() ? PAIRED_INTERIOR : PAIRED_FIRST; in forRead()
59 return read.isSecondOfPair() ? PAIRED_SECOND : PAIRED_UNKNOWN; in forRead()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/read/
H A DReadQueryNameComparator.java29 else if (read1.isFirstOfPair() && read2.isSecondOfPair()) return -1; in compare()
30 else if (read1.isSecondOfPair() && read2.isFirstOfPair()) return 1; in compare()
H A DGATKRead.java662 boolean isSecondOfPair();
H A DSAMRecordToGATKReadAdapter.java543 public boolean isSecondOfPair() { in isSecondOfPair() method in SAMRecordToGATKReadAdapter
H A DReadUtils.java481 if ( read.isSecondOfPair() ) { in getSAMFlagsForRead()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/utils/recalibration/covariates/
H A DCycleCovariate.java67 final boolean isSecondInPair = read.isPaired() && read.isSecondOfPair(); in cycleKey()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/
H A DFlagStat.java133 if ( read.isSecondOfPair() ) { in add()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/spark/pipelines/metrics/
H A DCollectBaseDistributionByCycleSpark.java162 if (rec.isPaired() && rec.isSecondOfPair()) { in addRead()
H A DMeanQualityByCycleSpark.java100 if (read.isPaired() && read.isSecondOfPair()) { in addRead()
/dports/biology/gatk/gatk-4.2.0.0/src/test/java/org/broadinstitute/hellbender/utils/read/
H A DGATKReadAdaptersUnitTest.java738 …Assert.assertEquals(read.isSecondOfPair(), expectedIsSecondOfPair, "Read second of pair setting in… in testReadNumber()
742 …Assert.assertFalse(read.isSecondOfPair(), "Read should not be marked second of pair after setIsFir… in testReadNumber()
746 …Assert.assertTrue(read.isSecondOfPair(), "Read should be marked second of pair after setIsSecondOf… in testReadNumber()
770 …Assert.assertFalse(unpairedRead.isSecondOfPair(), "Unpaired read should not be marked as second of… in testGetReadNumberOfUnpairedRead()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/engine/filters/
H A DReadFilterLibrary.java231 return read.isSecondOfPair();}} in test()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/spark/pathseq/
H A DPSFilter.java92 } else if (read.isSecondOfPair()) { in clearReadAlignment()
/dports/biology/gatk/gatk-4.2.0.0/src/main/java/org/broadinstitute/hellbender/tools/spark/
H A DRevertSamSpark.java395 if (rec.isSecondOfPair()) { in sanitize()