Skip to content

Commit

Permalink
Release algV9.7 and progV3.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptzou committed Nov 10, 2024
1 parent 70c2444 commit c18e673
Show file tree
Hide file tree
Showing 9 changed files with 6,192 additions and 5,791 deletions.
2 changes: 1 addition & 1 deletion .latest-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20240921052047
20241110055209
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.5.1'
version = '3.5.2'

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.5.1'
version = '3.5.2'

description = """Sierra Unit Tests"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ public void testGetDrugSynonymMapWithException() {
@Test
public void testGetDrugResistAlgorithms() {
assertNotNull(hiv.getDrugResistAlgorithms());
// 20240309, 46 algorithms
assertEquals(46, hiv.getDrugResistAlgorithms().size());
// 20241109, 47 algorithms
assertEquals(47, hiv.getDrugResistAlgorithms().size());
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public void testGetDRGenePositions() {
new GenePosition<HIV>(hiv.getGene("HIV1PR"), 1),
new GenePosition<HIV>(hiv.getGene("HIV1IN"), 288)
);
assertEquals(90, gps1.size());
assertEquals(91, gps1.size());
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ public void testExtractMutationGenesInvaid() {

@Test
public void testGetLatestDrugResistAlgorithm() {
assertEquals("9.6", hiv.getLatestDrugResistAlgorithm("HIVDB").getVersion());
assertEquals("9.7", hiv.getLatestDrugResistAlgorithm("HIVDB").getVersion());
assertEquals("34", hiv.getLatestDrugResistAlgorithm("ANRS").getVersion());
assertEquals("10.0", hiv.getLatestDrugResistAlgorithm("Rega").getVersion());
}

@Test
public void testGetDefaultDrugResistAlgorithm() {
assertEquals("9.6", hiv.getDefaultDrugResistAlgorithm().getVersion());
assertEquals("9.7", hiv.getDefaultDrugResistAlgorithm().getVersion());
}
}
11,961 changes: 6,181 additions & 5,780 deletions sierra-tests/src/test/resources/AlgorithmComparisonTestExpecteds.json

Large diffs are not rendered by default.

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.5.1
versionDate = 2024-09-20
version = 3.5.2
versionDate = 2024-11-09

0 comments on commit c18e673

Please sign in to comment.