Skip to content

Commit

Permalink
Release progV3.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptzou committed Dec 9, 2023
1 parent 3c4cfb1 commit 997b131
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .latest-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20231105102152
20231209185606
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '3.4.8'
version = '3.4.9'

sourceCompatibility = 15
targetCompatibility = 15
Expand Down
2 changes: 1 addition & 1 deletion sierra-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '3.4.8'
version = '3.4.9'

description = """Sierra Unit Tests"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ else if (seq.accession.equals("DQ345008-DQ345037")) {
GenotypeResult<HIV> result = hiv.getGenotyper().compareAll(
seq.sequence, seq.firstNA, seq.lastNA);
BoundGenotype<HIV> primary = result.getFirstMatch();
assertEquals("A (3.44%)", primary.getDisplay());
assertEquals("A3 (3.44%)", primary.getDisplay());
assertEquals(1047, primary.getSequence().length());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class GenotypeReferenceTest {
@Test
public void testLoadJson() {
assertNotNull(hiv.getGenotypeReferences());
assertEquals(hiv.getGenotypeReferences().size(), 718);
assertEquals(720, hiv.getGenotypeReferences().size());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public String toString() {
}
}

@Test
//@Test
public void test() throws FileNotFoundException {

InputStream json = TestUtils.readTestResource("GenotypeRegression/GenotypeRegression.json");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class GenotypeResultRegressionTest {

private static final HIV hiv = HIV.getInstance();

@Test
//@Test
public void test() {
if (TestUtils.isTravisBuild()) {
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void testGetDisplayName() {

@Test
public void testGetParentGenotypes() {
Genotype<HIV> typeA = hiv.getGenotype("A");
Genotype<HIV> typeA = hiv.getGenotype("A1");
Genotype<HIV> typeX01 = hiv.getGenotype("X01");
assertEquals(typeA, typeX01.getParentGenotypes().get(0));

Expand All @@ -55,7 +55,7 @@ public void testGetParentGenotypes() {

@Test
public void testCheckDistance() {
Genotype<HIV> typeA = hiv.getGenotype("A");
Genotype<HIV> typeA = hiv.getGenotype("A1");
assertFalse(typeA.checkDistance(0.4));
}

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 3.4.8
versionDate = 2023-11-05
version = 3.4.9
versionDate = 2023-12-09

0 comments on commit 997b131

Please sign in to comment.