Merge pull request #1609 from broadinstitute/yf_make_readutils_test_public

making a test within readutils-test public
This commit is contained in:
Geraldine Van der Auwera 2017-07-23 23:18:10 +02:00 committed by GitHub
commit 6de68d556e
2 changed files with 3 additions and 3 deletions

View File

@ -395,7 +395,7 @@ public class ReadClipper {
/**
* Checks if a read contains adaptor sequences. If it does, hard clips them out.
*
* Note: To see how a read is checked for adaptor sequence see ReadUtils.getAdaptorBoundary()
* Note: To see how a read is checked for adaptor sequence see {@link ReadUtils::getAdaptorBoundary}
*
* @return a new read without adaptor sequence
*/

View File

@ -25,8 +25,8 @@
package org.broadinstitute.gatk.utils.sam;
import htsjdk.samtools.SAMReadGroupRecord;
import htsjdk.samtools.SAMFileHeader;
import htsjdk.samtools.SAMReadGroupRecord;
import htsjdk.samtools.reference.ReferenceSequenceFile;
import org.broadinstitute.gatk.utils.BaseTest;
import org.broadinstitute.gatk.utils.BaseUtils;
@ -335,7 +335,7 @@ public class ReadUtilsUnitTest extends BaseTest {
}
@Test(dataProvider = "HasWellDefinedFragmentSizeData")
private void testHasWellDefinedFragmentSize(final String name, final GATKSAMRecord read, final boolean expected) {
public void testHasWellDefinedFragmentSize(final String name, final GATKSAMRecord read, final boolean expected) {
Assert.assertEquals(ReadUtils.hasWellDefinedFragmentSize(read), expected);
}