Skip to content

Commit

Permalink
Fixing warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardkw committed Jun 25, 2015
1 parent 102e10f commit 4690240
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,9 @@
* PCollectionTuple.of(BaseRecalibratorDataflowUtils.readTag, reads)
* .and(BaseRecalibratorDataflowUtils.intervalTag, intervals);
*/
<<<<<<< HEAD
public final class BQSRTransform extends PTransform<PCollectionTuple, PCollection<BaseRecalOutput>> {
private static final long serialVersionUID = 1L;

=======
public final class BQSRTransform extends PTransform<PCollectionTuple, PCollection<RecalibrationTables>> {
private static final long serialVersionUID = 1L;
>>>>>>> c9c78223b4de3d84e8bf75111ed6805fac1557bc

private final SAMFileHeader header;
// local or GCS
private final String referencePath;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@
import java.util.*;

public final class GatherVcfsUnitTest {
<<<<<<< HEAD
//tests for GatherVcfs, specifically areAllBlockCompressed
=======
//tests for GatherVcfs, specifically areAllBlockCompressed()
>>>>>>> c9c78223b4de3d84e8bf75111ed6805fac1557bc


@DataProvider(name = "files")
public Object[][] files(){
Expand All @@ -35,11 +32,7 @@ public Object[][] files(){
}

@Test(dataProvider = "files")
<<<<<<< HEAD
public void testareAllBlockCompressed(List<File> files, boolean expected) throws IOException {
=======
public void testaABC(List<File> files, boolean expected) throws IOException {
>>>>>>> c9c78223b4de3d84e8bf75111ed6805fac1557bc
Assert.assertEquals(GatherVcfs.areAllBlockCompressed(files), expected);
}

Expand Down

0 comments on commit 4690240

Please sign in to comment.