Merge pull request #184 from broadinstitute/rp_revert_sw_params
After debate reverting SW parameter changes temporarily while we explore...
This commit is contained in:
commit
90fc249c8d
|
|
@ -86,7 +86,7 @@ public class Path<T extends BaseVertex> {
|
|||
|
||||
// used in the bubble state machine to apply Smith-Waterman to the bubble sequence
|
||||
// these values were chosen via optimization against the NA12878 knowledge base
|
||||
public static final Parameters NEW_SW_PARAMETERS = new Parameters(10, -20.0, -26.0, -0.1);
|
||||
public static final Parameters NEW_SW_PARAMETERS = new Parameters(20.0, -15.0, -26.0, -1.1);
|
||||
|
||||
private static final byte[] STARTING_SW_ANCHOR_BYTES = "XXXXXXXXX".getBytes();
|
||||
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ public class HaplotypeCallerIntegrationTest extends WalkerTest {
|
|||
@Test
|
||||
public void HCTestStructuralIndels() {
|
||||
final String base = String.format("-T HaplotypeCaller -R %s -I %s", REF, privateTestDir + "AFR.structural.indels.bam") + " --no_cmdline_in_header -o %s -minPruning 6 -L 20:8187565-8187800 -L 20:18670537-18670730";
|
||||
final WalkerTestSpec spec = new WalkerTestSpec(base, Arrays.asList("cac0d88fa4471c7a0ac96533a9a6354b"));
|
||||
final WalkerTestSpec spec = new WalkerTestSpec(base, Arrays.asList("eb5772b825120a0b8710e5add485d73a"));
|
||||
executeTest("HCTestStructuralIndels: ", spec);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -425,7 +425,7 @@ public class KBestPathsUnitTest extends BaseTest {
|
|||
logger.warn("AltPath : " + altPath + " cigar " + altPath.calculateCigar());
|
||||
|
||||
Assert.assertEquals(refPath.calculateCigar().toString(), "51M");
|
||||
Assert.assertEquals(altPath.calculateCigar().toString(), "3M14D2M20I32M");
|
||||
Assert.assertEquals(altPath.calculateCigar().toString(), "3M6I48M");
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------
|
||||
|
|
@ -443,7 +443,7 @@ public class KBestPathsUnitTest extends BaseTest {
|
|||
Arrays.asList("G", "C", "1M"),
|
||||
Arrays.asList("G", "", "1D"),
|
||||
Arrays.asList("", "C", "1I"),
|
||||
Arrays.asList("AAA", "CGT", "3D3I"),
|
||||
Arrays.asList("AAA", "CGT", "3M"),
|
||||
Arrays.asList("TAT", "CAC", "3M"),
|
||||
Arrays.asList("GCTG", "GTCG", "4M"),
|
||||
Arrays.asList("AAAAA", "", "5D"),
|
||||
|
|
|
|||
Loading…
Reference in New Issue