Skip to content

Commit

Permalink
ditto
Browse files Browse the repository at this point in the history
  • Loading branch information
jrobinso committed Oct 2, 2023
1 parent dcee1f1 commit df59d5a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,4 @@ public int getChromosomeLength(String chrname) {
throw new RuntimeException("getBase is not implementd for TwoBitSequence");
}

@Override
public boolean isRemote() {
return false;
}
}
4 changes: 0 additions & 4 deletions src/test/java/org/broad/igv/feature/genome/GenomeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,6 @@ public int getChromosomeLength(String chrname) {
return index.getSequenceSize(chrname);
}

@Override
public boolean isRemote() {
return false;
}
}

public static void generateJunkIndex() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ public void readSequenceRemote() throws IOException {
seqbytes = reader.readSequence("chr1", 120565294, 120565335);
seq = new String(seqbytes);
assertEquals(expectedSeq, seq);

// Unrecongized sequence name
expectedSeq = null;
seqbytes = reader.readSequence("noSuchSequence", 0, 10);
assertEquals(expectedSeq, seqbytes);

}

}

0 comments on commit df59d5a

Please sign in to comment.