Re-enabling parallelism in the BaseRecalibrator now that the release is out.
This commit is contained in:
parent
5b1781fdac
commit
286b658fab
|
|
@ -75,11 +75,10 @@ public class BQSRIntegrationTest extends WalkerTest {
|
||||||
Arrays.asList(params.md5));
|
Arrays.asList(params.md5));
|
||||||
executeTest("testBQSR-"+params.args, spec).getFirst();
|
executeTest("testBQSR-"+params.args, spec).getFirst();
|
||||||
|
|
||||||
// TODO -- re-enable once parallelization is fixed in BaseRecalibrator
|
WalkerTestSpec specNT2 = new WalkerTestSpec(
|
||||||
//WalkerTestSpec specNT2 = new WalkerTestSpec(
|
params.getCommandLine() + " -nt 2",
|
||||||
// params.getCommandLine() + " -nt 2",
|
Arrays.asList(params.md5));
|
||||||
// Arrays.asList(params.md5));
|
executeTest("testBQSR-nt2-"+params.args, specNT2).getFirst();
|
||||||
//executeTest("testBQSR-nt2-"+params.args, specNT2).getFirst();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
|
|
@ -136,10 +136,6 @@ public class BaseRecalibrator extends LocusWalker<Long, Long> implements TreeRed
|
||||||
*/
|
*/
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
|
|
||||||
// TODO -- remove me after the 2.1 release
|
|
||||||
if ( getToolkit().getArguments().numberOfThreads > 1 )
|
|
||||||
throw new UserException("We have temporarily disabled the ability to run BaseRecalibrator multi-threaded for performance reasons. We hope to have this fixed for the next GATK release (2.2) and apologize for the inconvenience.");
|
|
||||||
|
|
||||||
// check for unsupported access
|
// check for unsupported access
|
||||||
if (getToolkit().isGATKLite() && !getToolkit().getArguments().disableIndelQuals)
|
if (getToolkit().isGATKLite() && !getToolkit().getArguments().disableIndelQuals)
|
||||||
throw new UserException.NotSupportedInGATKLite("base insertion/deletion recalibration is not supported, please use the --disable_indel_quals argument");
|
throw new UserException.NotSupportedInGATKLite("base insertion/deletion recalibration is not supported, please use the --disable_indel_quals argument");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue